/usr/lib/lv2/schemas.lv2/rdfs.ttl is in lv2-dev 1.14.0~dfsg1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 | @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix dct: <http://purl.org/dc/terms/> .
<http://www.w3.org/2000/01/rdf-schema#>
dct:title "The RDF Schema vocabulary (RDFS)" ;
a owl:Ontology ;
rdfs:seeAlso <http://www.w3.org/2000/01/rdf-schema-more> .
rdfs:Class
a rdfs:Class ;
rdfs:comment "The class of classes." ;
rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
rdfs:label "Class" ;
rdfs:subClassOf rdfs:Resource .
rdfs:Container
a rdfs:Class ;
rdfs:comment "The class of RDF containers." ;
rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
rdfs:label "Container" ;
rdfs:subClassOf rdfs:Resource .
rdfs:ContainerMembershipProperty
a rdfs:Class ;
rdfs:comment "The class of container membership properties, rdf:_1, rdf:_2, ..., all of which are sub-properties of 'member'." ;
rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
rdfs:label "Container Membership Property" ;
rdfs:subClassOf rdf:Property .
rdfs:Datatype
a rdfs:Class ;
rdfs:comment "The class of RDF datatypes." ;
rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
rdfs:label "Datatype" ;
rdfs:subClassOf rdfs:Class .
rdfs:Literal
a rdfs:Class ;
rdfs:comment "The class of literal values, eg. textual strings and integers." ;
rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
rdfs:label "Literal" ;
rdfs:subClassOf rdfs:Resource .
rdfs:Resource
a rdfs:Class ;
rdfs:comment "The class resource, everything." ;
rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
rdfs:label "Resource" .
rdfs:comment
a rdf:Property ;
rdfs:comment "A description of the subject resource." ;
rdfs:domain rdfs:Resource ;
rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
rdfs:label "comment" ;
rdfs:range rdfs:Literal .
rdfs:domain
a rdf:Property ;
rdfs:comment "A domain of the subject property." ;
rdfs:domain rdf:Property ;
rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
rdfs:label "domain" ;
rdfs:range rdfs:Class .
rdfs:isDefinedBy
a rdf:Property ;
rdfs:comment "The defininition of the subject resource." ;
rdfs:domain rdfs:Resource ;
rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
rdfs:label "is defined by" ;
rdfs:range rdfs:Resource ;
rdfs:subPropertyOf rdfs:seeAlso .
rdfs:label
a rdf:Property ;
rdfs:comment "A human-readable name for the subject." ;
rdfs:domain rdfs:Resource ;
rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
rdfs:label "label" ;
rdfs:range rdfs:Literal .
rdfs:member
a rdf:Property ;
rdfs:comment "A member of the subject resource." ;
rdfs:domain rdfs:Resource ;
rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
rdfs:label "member" ;
rdfs:range rdfs:Resource .
rdfs:range
a rdf:Property ;
rdfs:comment "A range of the subject property." ;
rdfs:domain rdf:Property ;
rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
rdfs:label "range" ;
rdfs:range rdfs:Class .
rdfs:seeAlso
a rdf:Property ;
rdfs:comment "Further information about the subject resource." ;
rdfs:domain rdfs:Resource ;
rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
rdfs:label "see also" ;
rdfs:range rdfs:Resource .
rdfs:subClassOf
a rdf:Property ;
rdfs:comment "The subject is a subclass of a class." ;
rdfs:domain rdfs:Class ;
rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
rdfs:label "sub-class of" ;
rdfs:range rdfs:Class .
rdfs:subPropertyOf
a rdf:Property ;
rdfs:comment "The subject is a subproperty of a property." ;
rdfs:domain rdf:Property ;
rdfs:isDefinedBy <http://www.w3.org/2000/01/rdf-schema#> ;
rdfs:label "sub-property of" ;
rdfs:range rdf:Property .
|