rdf-schema.ttl 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
  2. @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
  3. @prefix owl: <http://www.w3.org/2002/07/owl#> .
  4. @prefix dc: <http://purl.org/dc/elements/1.1/> .
  5. <http://www.w3.org/2000/01/rdf-schema#> a owl:Ontology ;
  6. dc:title "The RDF Schema vocabulary (RDFS)" .
  7. rdfs:Resource a rdfs:Class ;
  8. rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
  9. rdfs:label "Resource" ;
  10. rdfs:comment "The class resource, everything." .
  11. rdfs:Class a rdfs:Class ;
  12. rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
  13. rdfs:label "Class" ;
  14. rdfs:comment "The class of classes." ;
  15. rdfs:subClassOf rdfs:Resource .
  16. rdfs:subClassOf a rdf:Property ;
  17. rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
  18. rdfs:label "subClassOf" ;
  19. rdfs:comment "The subject is a subclass of a class." ;
  20. rdfs:range rdfs:Class ;
  21. rdfs:domain rdfs:Class .
  22. rdfs:subPropertyOf a rdf:Property ;
  23. rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
  24. rdfs:label "subPropertyOf" ;
  25. rdfs:comment "The subject is a subproperty of a property." ;
  26. rdfs:range rdf:Property ;
  27. rdfs:domain rdf:Property .
  28. rdfs:comment a rdf:Property ;
  29. rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
  30. rdfs:label "comment" ;
  31. rdfs:comment "A description of the subject resource." ;
  32. rdfs:domain rdfs:Resource ;
  33. rdfs:range rdfs:Literal .
  34. rdfs:label a rdf:Property ;
  35. rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
  36. rdfs:label "label" ;
  37. rdfs:comment "A human-readable name for the subject." ;
  38. rdfs:domain rdfs:Resource ;
  39. rdfs:range rdfs:Literal .
  40. rdfs:domain a rdf:Property ;
  41. rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
  42. rdfs:label "domain" ;
  43. rdfs:comment "A domain of the subject property." ;
  44. rdfs:range rdfs:Class ;
  45. rdfs:domain rdf:Property .
  46. rdfs:range a rdf:Property ;
  47. rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
  48. rdfs:label "range" ;
  49. rdfs:comment "A range of the subject property." ;
  50. rdfs:range rdfs:Class ;
  51. rdfs:domain rdf:Property .
  52. rdfs:seeAlso a rdf:Property ;
  53. rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
  54. rdfs:label "seeAlso" ;
  55. rdfs:comment "Further information about the subject resource." ;
  56. rdfs:range rdfs:Resource ;
  57. rdfs:domain rdfs:Resource .
  58. rdfs:isDefinedBy a rdf:Property ;
  59. rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
  60. rdfs:subPropertyOf rdfs:seeAlso ;
  61. rdfs:label "isDefinedBy" ;
  62. rdfs:comment "The defininition of the subject resource." ;
  63. rdfs:range rdfs:Resource ;
  64. rdfs:domain rdfs:Resource .
  65. rdfs:Literal a rdfs:Class ;
  66. rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
  67. rdfs:label "Literal" ;
  68. rdfs:comment "The class of literal values, eg. textual strings and integers." ;
  69. rdfs:subClassOf rdfs:Resource .
  70. rdfs:Container a rdfs:Class ;
  71. rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
  72. rdfs:label "Container" ;
  73. rdfs:subClassOf rdfs:Resource ;
  74. rdfs:comment "The class of RDF containers." .
  75. rdfs:ContainerMembershipProperty a rdfs:Class ;
  76. rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
  77. rdfs:label "ContainerMembershipProperty" ;
  78. rdfs:comment """The class of container membership properties, rdf:_1, rdf:_2, ...,
  79. all of which are sub-properties of 'member'.""" ;
  80. rdfs:subClassOf rdf:Property .
  81. rdfs:member a rdf:Property ;
  82. rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
  83. rdfs:label "member" ;
  84. rdfs:comment "A member of the subject resource." ;
  85. rdfs:domain rdfs:Resource ;
  86. rdfs:range rdfs:Resource .
  87. rdfs:Datatype a rdfs:Class ;
  88. rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
  89. rdfs:label "Datatype" ;
  90. rdfs:comment "The class of RDF datatypes." ;
  91. rdfs:subClassOf rdfs:Class .
  92. <http://www.w3.org/2000/01/rdf-schema#> rdfs:seeAlso <http://www.w3.org/2000/01/rdf-schema-more> .