Skip to content

Commit

Permalink
dcam
Browse files Browse the repository at this point in the history
  • Loading branch information
aaxelb committed May 23, 2024
1 parent c0cbec8 commit 7cd14a7
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
1 change: 1 addition & 0 deletions trove/vocab/static/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
)

STATIC_TURTLES = (
'dublin_core_abstract_model.turtle',
'dublin_core_elements.turtle',
'dublin_core_terms.turtle',
'dublin_core_type.turtle',
Expand Down
43 changes: 43 additions & 0 deletions trove/vocab/static/dublin_core_abstract_model.turtle
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
@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#> .

<http://purl.org/dc/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
dcterms:issued "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> ;
a rdfs:Class ;
rdfs:comment "An enumerated set of resources."@en ;
rdfs:isDefinedBy <http://purl.org/dc/dcam/> ;
rdfs:label "Vocabulary Encoding Scheme"@en ;
rdfs:seeAlso <https://www.dublincore.org/specifications/dublin-core/2007/06/04/abstract-model/> .

dcam:domainIncludes
dcterms:issued "2020-01-20"^^<http://www.w3.org/2001/XMLSchema#date> ;
a rdf:Property ;
rdfs:comment "A suggested class for subjects of this property."@en ;
rdfs:isDefinedBy <http://purl.org/dc/dcam/> ;
rdfs:label "Domain Includes"@en .

dcam:memberOf
dcterms:issued "2008-01-14"^^<http://www.w3.org/2001/XMLSchema#date> ;
a rdf:Property ;
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 <http://purl.org/dc/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
dcterms:issued "2020-01-20"^^<http://www.w3.org/2001/XMLSchema#date> ;
a rdf:Property ;
rdfs:comment "A suggested class for values of this property."@en ;
rdfs:isDefinedBy <http://purl.org/dc/dcam/> ;
rdfs:label "Range Includes"@en .

0 comments on commit 7cd14a7

Please sign in to comment.