diff options
Diffstat (limited to 'schemas.lv2')
-rw-r--r-- | schemas.lv2/dcs.ttl | 67 | ||||
-rw-r--r-- | schemas.lv2/manifest.ttl | 4 | ||||
-rw-r--r-- | schemas.lv2/meson.build | 1 |
3 files changed, 0 insertions, 72 deletions
diff --git a/schemas.lv2/dcs.ttl b/schemas.lv2/dcs.ttl deleted file mode 100644 index 4c62ed9..0000000 --- a/schemas.lv2/dcs.ttl +++ /dev/null @@ -1,67 +0,0 @@ -@prefix dcs: <http://ontologi.es/doap-changeset#> . -@prefix dcterms: <http://purl.org/dc/terms/> . -@prefix doap: <http://usefulinc.com/ns/doap#> . -@prefix foaf: <http://xmlns.com/foaf/0.1/> . -@prefix owl: <http://www.w3.org/2002/07/owl#> . -@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . -@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . -@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . - -<> - rdfs:comment "Minimal DOAP Change Sets vocabulary used by LV2." . - -<http://tobyinkster.co.uk/#i> - a foaf:Person . - -dcs: - a owl:Ontology ; - dcterms:contributor <http://drobilla.net/drobilla#me> ; - dcterms:created "2010-01-08"^^xsd:date ; - dcterms:creator <http://tobyinkster.co.uk/#i> ; - dcterms:description "An ontology that extends DOAP to describe changesets." ; - dcterms:modified "2022-07-07"^^xsd:date ; - rdfs:label "DOAP Change Sets" . - -dcs:Change - a owl:Class ; - rdfs:comment "A change to something." ; - rdfs:label "Change" ; - rdfs:subClassOf [ - a owl:Restriction ; - rdfs:comment "A change must have a plain literal label." ; - owl:onProperty rdfs:label ; - owl:someValuesFrom rdf:PlainLiteral - ] . - -dcs:ChangeSet - a owl:Class ; - rdfs:comment "A collection of changes." ; - rdfs:label "Change Set" ; - rdfs:subClassOf rdf:Bag . - -dcs:blame - a owl:ObjectProperty ; - rdfs:label "blame" ; - rdfs:subPropertyOf dcs:thanks . - -dcs:changeset - a owl:ObjectProperty ; - rdfs:comment "The change set of a version." ; - rdfs:domain doap:Version ; - rdfs:label "change set" ; - rdfs:range dcs:ChangeSet . - -dcs:item - a owl:ObjectProperty ; - rdfs:comment "A change in a change set." ; - rdfs:domain dcs:ChangeSet ; - rdfs:label "item" ; - rdfs:range dcs:Change ; - rdfs:subPropertyOf rdfs:member . - -dcs:thanks - a owl:ObjectProperty ; - rdfs:domain dcs:Change ; - rdfs:label "thanks" ; - rdfs:range foaf:Agent . - diff --git a/schemas.lv2/manifest.ttl b/schemas.lv2/manifest.ttl index ed11c1a..dd41f58 100644 --- a/schemas.lv2/manifest.ttl +++ b/schemas.lv2/manifest.ttl @@ -1,10 +1,6 @@ @prefix owl: <http://www.w3.org/2002/07/owl#> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . -<http://ontologi.es/doap-changeset#> - a owl:Ontology ; - rdfs:seeAlso <dcs.ttl> . - <http://purl.org/dc/terms/> a owl:Ontology ; rdfs:seeAlso <dcterms.ttl> . diff --git a/schemas.lv2/meson.build b/schemas.lv2/meson.build index fb7bed5..389ee0d 100644 --- a/schemas.lv2/meson.build +++ b/schemas.lv2/meson.build @@ -2,7 +2,6 @@ # SPDX-License-Identifier: CC0-1.0 OR ISC schema_data = files( - 'dcs.ttl', 'dcterms.ttl', 'doap.ttl', 'foaf.ttl', |