aboutsummaryrefslogtreecommitdiffstats
path: root/schemas/dcam.ttl
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-05-27 15:48:25 +0200
committerDavid Robillard <d@drobilla.net>2022-01-28 21:57:29 -0500
commitf93a441065a611cc32874dde67e53a8295c87baf (patch)
tree3793e2df1c365bf93fbe700c9428b54668f08c53 /schemas/dcam.ttl
parent2c5bee49b4494e172c4fa147af91bad199ed9362 (diff)
downloadserd-f93a441065a611cc32874dde67e53a8295c87baf.tar.gz
serd-f93a441065a611cc32874dde67e53a8295c87baf.tar.bz2
serd-f93a441065a611cc32874dde67e53a8295c87baf.zip
[WIP] Add validation
Diffstat (limited to 'schemas/dcam.ttl')
-rw-r--r--schemas/dcam.ttl42
1 files changed, 42 insertions, 0 deletions
diff --git a/schemas/dcam.ttl b/schemas/dcam.ttl
new file mode 100644
index 00000000..a559f5c6
--- /dev/null
+++ b/schemas/dcam.ttl
@@ -0,0 +1,42 @@
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
+@prefix dcam: <http://purl.org/dc/dcam/> .
+@prefix dcterms: <http://purl.org/dc/terms/> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+
+dcam:
+ dcterms:modified "2012-06-14"^^<http://www.w3.org/2001/XMLSchema#date> ;
+ dcterms:publisher <http://purl.org/dc/aboutdcmi#DCMI> ;
+ dcterms:title "Metadata terms for vocabulary description"@en .
+
+dcam:VocabularyEncodingScheme
+ a rdfs:Class ;
+ dcterms:issued "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> ;
+ rdfs:comment "An enumerated set of resources."@en ;
+ rdfs:isDefinedBy dcam: ;
+ rdfs:label "Vocabulary Encoding Scheme"@en ;
+ rdfs:seeAlso <https://www.dublincore.org/specifications/dublin-core/2007/06/04/abstract-model/> .
+
+dcam:domainIncludes
+ a rdf:Property ;
+ dcterms:issued "2020-01-20"^^<http://www.w3.org/2001/XMLSchema#date> ;
+ rdfs:comment "A suggested class for subjects of this property."@en ;
+ rdfs:isDefinedBy dcam: ;
+ rdfs:label "Domain Includes"@en .
+
+dcam:memberOf
+ a rdf:Property ;
+ dcterms:issued "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> ;
+ rdfs:comment "A relationship between a resource and a vocabulary encoding scheme which indicates that the resource is a member of a set."@en ;
+ rdfs:isDefinedBy dcam: ;
+ rdfs:label "Member Of"@en ;
+ rdfs:range dcam:VocabularyEncodingScheme ;
+ rdfs:seeAlso <https://www.dublincore.org/specifications/dublin-core/2007/06/04/abstract-model/> .
+
+dcam:rangeIncludes
+ a rdf:Property ;
+ dcterms:issued "2020-01-20"^^<http://www.w3.org/2001/XMLSchema#date> ;
+ rdfs:comment "A suggested class for values of this property."@en ;
+ rdfs:isDefinedBy dcam: ;
+ rdfs:label "Range Includes"@en .