annotate magnatune/sparql-archived/SeRQL/Ontologies/Base/eor.rdfs @ 27:d95e683fbd35 tip

Enable CORS on urispace redirects as well
author Chris Cannam
date Tue, 20 Feb 2018 14:52:02 +0000
parents df9685986338
children
rev   line source
Chris@0 1 <?xml version="1.0"?>
Chris@0 2
Chris@0 3 <!--
Chris@0 4 RDF Schema declaration for the EOR Toolkit Vocabulary
Chris@0 5 2001/03/28
Chris@0 6 comments, etc. to webteam <dcmi-feedback@dublincore.org>
Chris@0 7 -->
Chris@0 8
Chris@0 9 <!DOCTYPE rdf:RDF [
Chris@0 10 <!ENTITY rdfns 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'>
Chris@0 11 <!ENTITY rdfsns 'http://www.w3.org/2000/01/rdf-schema#'>
Chris@0 12 <!ENTITY dcns 'http://purl.org/dc/elements/1.1/'>
Chris@0 13 <!ENTITY eorns 'http://dublincore.org/2000/03/13/eor#'>
Chris@0 14 ]>
Chris@0 15
Chris@0 16 <rdf:RDF xmlns:rdf="&rdfns;"
Chris@0 17 xmlns:rdfs="&rdfsns;"
Chris@0 18 xmlns:dc="&dcns;"
Chris@0 19 xmlns:eor="&eorns;">
Chris@0 20
Chris@0 21 <eor:Schema rdf:about="&eorns;">
Chris@0 22 <!-- dumb down rule... use rdf:value for a simple default name -->
Chris@0 23 <rdf:value>The EOR Vocabulary v1.0</rdf:value>
Chris@0 24 <dc:title>The EOR Vocabulary v1.0</dc:title>
Chris@0 25 <dc:creator>Eric Miller, emiller@oclc.org</dc:creator>
Chris@0 26 <dc:contributor>Tod Matola, matola@oclc.org</dc:contributor>
Chris@0 27 <dc:contributor>Harry Wagner, wagnerh@oclc.org</dc:contributor>
Chris@0 28 <dc:description>The EOR vocabulary is a simple vocabulary intended
Chris@0 29 to support the EOR Toolkit and provides an additional level of
Chris@0 30 conformance, validation and general description beyond the
Chris@0 31 base-level RDF specifications specifically defined for RDF-based,
Chris@0 32 Dublin Core metadata applications.</dc:description>
Chris@0 33 <dc:date>2000-03-13</dc:date>
Chris@0 34 </eor:Schema>
Chris@0 35
Chris@0 36 <!-- Data Type declaration -->
Chris@0 37
Chris@0 38 <rdfs:Class rdf:about = "&eorns;DataType">
Chris@0 39 <rdfs:label>Data Type</rdfs:label>
Chris@0 40 <rdfs:comment>A data type.</rdfs:comment>
Chris@0 41 <rdfs:subClassOf rdf:resource =
Chris@0 42 "http://www.w3.org/2000/01/rdf-schema#Literal" />
Chris@0 43 <rdfs:isDefinedBy rdf:resource = "&eorns;" />
Chris@0 44 </rdfs:Class>
Chris@0 45
Chris@0 46 <!-- Class declarations -->
Chris@0 47
Chris@0 48 <rdfs:Class rdf:about = "&eorns;Schema">
Chris@0 49 <rdfs:label>RDF Schema</rdfs:label>
Chris@0 50 <rdfs:comment>A RDF schema</rdfs:comment>
Chris@0 51 <rdfs:subClassOf rdf:resource =
Chris@0 52 "http://purl.org/dc/dcmitype/Text" />
Chris@0 53 <rdfs:isDefinedBy rdf:resource = "&eorns;" />
Chris@0 54 </rdfs:Class>
Chris@0 55
Chris@0 56 <rdfs:Class rdf:about = "&eorns;Profile">
Chris@0 57 <rdfs:label>Profile</rdfs:label>
Chris@0 58 <rdfs:comment>An application profile</rdfs:comment>
Chris@0 59 <rdfs:subClassOf rdf:resource = "Schema" />
Chris@0 60 <rdfs:isDefinedBy rdf:resource = "&eorns;" />
Chris@0 61 </rdfs:Class>
Chris@0 62
Chris@0 63 <rdfs:Class rdf:about = "&eorns;WebPage">
Chris@0 64 <rdfs:label>Web Page</rdfs:label>
Chris@0 65 <rdfs:comment>A web page</rdfs:comment>
Chris@0 66 <rdfs:subClassOf rdf:resource =
Chris@0 67 "http://purl.org/dc/dcmitype/Text" />
Chris@0 68 <rdfs:isDefinedBy rdf:resource = "&eorns;" />
Chris@0 69 </rdfs:Class>
Chris@0 70
Chris@0 71 <!-- Additional Class relations -->
Chris@0 72
Chris@0 73 <rdf:Property rdf:about = "&eorns;alias">
Chris@0 74 <rdfs:label>alias</rdfs:label>
Chris@0 75 <rdfs:comment>An alias.</rdfs:comment>
Chris@0 76 <rdfs:isDefinedBy rdf:resource = "&eorns;" />
Chris@0 77 </rdf:Property>
Chris@0 78
Chris@0 79
Chris@0 80 <!-- Additional Property declarations -->
Chris@0 81
Chris@0 82 <rdf:Property rdf:about = "&eorns;label">
Chris@0 83 <rdfs:label>label</rdfs:label>
Chris@0 84 <rdfs:comment>A application-specific label.</rdfs:comment>
Chris@0 85 <rdfs:isDefinedBy rdf:resource = "&eorns;" />
Chris@0 86 </rdf:Property>
Chris@0 87
Chris@0 88 <rdf:Property rdf:about = "&eorns;comment">
Chris@0 89 <rdfs:label>Comment</rdfs:label>
Chris@0 90 <rdfs:comment>A comment or note providing additional
Chris@0 91 application-specific information.</rdfs:comment>
Chris@0 92 <rdfs:isDefinedBy rdf:resource = "&eorns;" />
Chris@0 93 </rdf:Property>
Chris@0 94
Chris@0 95 </rdf:RDF>