Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions source/vocab/details.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,9 @@
:identifier a owl:DatatypeProperty ;
:category :shorthand;
rdfs:label "identifier"@en, "identifikator"@sv;
rdfs:comment "Används enbart för enkla identifikatorer på administrativa resurser."@sv;
rdfs:subPropertyOf :label;
sdo:domainIncludes :DocumentPart ;
rdfs:range :Identifier;
owl:equivalentProperty dc:identifier, bibo:identifier;
owl:propertyChainAxiom ( :identifiedBy :value ) .
Expand Down
11 changes: 9 additions & 2 deletions source/vocab/platform.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
@prefix dc: <http://purl.org/dc/terms/> .
@prefix dctype: <http://purl.org/dc/dcmitype/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix bibo: <http://purl.org/ontology/bibo/> .
@prefix sdo: <http://schema.org/> .
@prefix bf2: <http://id.loc.gov/ontologies/bibframe/> .
@prefix bflc: <http://id.loc.gov/ontologies/bflc/> .
Expand Down Expand Up @@ -47,7 +48,13 @@
:Document a owl:Class;
#:category :platform ;
rdfs:label "Document"@en, "Dokument"@sv;
owl:equivalentClass foaf:Document .
owl:equivalentClass foaf:Document, bibo:Document .

:DocumentPart a owl:Class;
#:category :platform ;
rdfs:label "Document part"@en, "Dokumentdel"@sv;
rdfs:subClassOf :Document ;
owl:equivalentClass bibo:DocumentPart .

##
# Records
Expand Down Expand Up @@ -201,7 +208,7 @@
rdfs:label "Source metadata"@en, "Metadatakälla"@sv;
rdfs:comment "Länk till metadata som var källan för resursen"@sv;
rdfs:domain :AdminMetadata;
rdfs:range :AdminMetadata;
sdo:rangeIncludes :AdminMetadata, :DocumentPart ;
owl:equivalentProperty bf2:derivedFrom .

:GenerationProcess a owl:Class;
Expand Down