aboutsummaryrefslogtreecommitdiffstats
path: root/schemas.lv2/rdfs.ttl
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-07-07 18:41:19 -0400
committerDavid Robillard <d@drobilla.net>2022-07-17 17:08:39 -0400
commitc473f47f21c84aaf03ec179dde57c7929867b1ec (patch)
treea516cbb57e837750f795af191e5a5c54cd260f0f /schemas.lv2/rdfs.ttl
parent9df8b5cfd5813e16701f637c63870a29f1164512 (diff)
downloadlv2-c473f47f21c84aaf03ec179dde57c7929867b1ec.tar.xz
Format all schemas consistently with serdi
Diffstat (limited to 'schemas.lv2/rdfs.ttl')
-rw-r--r--schemas.lv2/rdfs.ttl176
1 files changed, 88 insertions, 88 deletions
diff --git a/schemas.lv2/rdfs.ttl b/schemas.lv2/rdfs.ttl
index 5f4dcf9..5dc1bf3 100644
--- a/schemas.lv2/rdfs.ttl
+++ b/schemas.lv2/rdfs.ttl
@@ -3,122 +3,122 @@
@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:
+ a owl:Ontology ;
+ dct:title "The RDF Schema vocabulary (RDFS)" ;
+ 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 .
+ a rdfs:Class ;
+ rdfs:comment "The class of classes." ;
+ rdfs:isDefinedBy rdfs: ;
+ 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 .
+ a rdfs:Class ;
+ rdfs:comment "The class of RDF containers." ;
+ rdfs:isDefinedBy rdfs: ;
+ 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 .
+ 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 rdfs: ;
+ 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 .
+ a rdfs:Class ;
+ rdfs:comment "The class of RDF datatypes." ;
+ rdfs:isDefinedBy rdfs: ;
+ 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 .
+ a rdfs:Class ;
+ rdfs:comment "The class of literal values, eg. textual strings and integers." ;
+ rdfs:isDefinedBy rdfs: ;
+ 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" .
+ a rdfs:Class ;
+ rdfs:comment "The class resource, everything." ;
+ rdfs:isDefinedBy rdfs: ;
+ 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 .
+ a rdf:Property ;
+ rdfs:comment "A description of the subject resource." ;
+ rdfs:domain rdfs:Resource ;
+ rdfs:isDefinedBy rdfs: ;
+ 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 .
+ a rdf:Property ;
+ rdfs:comment "A domain of the subject property." ;
+ rdfs:domain rdf:Property ;
+ rdfs:isDefinedBy rdfs: ;
+ rdfs:label "domain" ;
+ rdfs:range rdfs:Class .
rdfs:isDefinedBy
- a rdf:Property ;
- rdfs:comment "The definition 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 .
+ a rdf:Property ;
+ rdfs:comment "The definition of the subject resource." ;
+ rdfs:domain rdfs:Resource ;
+ rdfs:isDefinedBy rdfs: ;
+ 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 .
+ a rdf:Property ;
+ rdfs:comment "A human-readable name for the subject." ;
+ rdfs:domain rdfs:Resource ;
+ rdfs:isDefinedBy rdfs: ;
+ 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 .
+ a rdf:Property ;
+ rdfs:comment "A member of the subject resource." ;
+ rdfs:domain rdfs:Resource ;
+ rdfs:isDefinedBy rdfs: ;
+ 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 .
+ a rdf:Property ;
+ rdfs:comment "A range of the subject property." ;
+ rdfs:domain rdf:Property ;
+ rdfs:isDefinedBy rdfs: ;
+ 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 .
+ a rdf:Property ;
+ rdfs:comment "Further information about the subject resource." ;
+ rdfs:domain rdfs:Resource ;
+ rdfs:isDefinedBy rdfs: ;
+ 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 .
+ a rdf:Property ;
+ rdfs:comment "The subject is a subclass of a class." ;
+ rdfs:domain rdfs:Class ;
+ rdfs:isDefinedBy rdfs: ;
+ 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 .
+ a rdf:Property ;
+ rdfs:comment "The subject is a subproperty of a property." ;
+ rdfs:domain rdf:Property ;
+ rdfs:isDefinedBy rdfs: ;
+ rdfs:label "sub-property of" ;
+ rdfs:range rdf:Property .