From a96acabd446a0e0941489696e78e39ab7f9d4ef2 Mon Sep 17 00:00:00 2001 From: Philipp Schneider <schneider.philipp@uni-muenster.de> Date: Thu, 11 May 2023 17:23:27 +0200 Subject: [PATCH] Add properties to add crude metadata on manuscripts --- .../digital-heraldry-ontology-object.ttl | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/data/ontologies/digital-heraldry-ontology-object.ttl b/data/ontologies/digital-heraldry-ontology-object.ttl index 764663a..7e55d65 100644 --- a/data/ontologies/digital-heraldry-ontology-object.ttl +++ b/data/ontologies/digital-heraldry-ontology-object.ttl @@ -251,8 +251,43 @@ dhoo:folioNumber rdf:type owl:DatatypeProperty ; dhor:CoatOfArmsRepresentation . +### http://digitalheraldry.org/digital-heraldry-ontology/object#hasIDhs +dhoo:hasIDhs rdf:type owl:DatatypeProperty ; + rdfs:domain dhoo:Manuscript ; + rdfs:range rdfs:Literal ; + rdfs:comment "Legacy ID of a manuscript in the filemaker database from Coats of Arms in Practice Phase 1"@en ; + rdfs:label "hasIDhs"@en . + + +### http://digitalheraldry.org/digital-heraldry-ontology/object#hasLibraryCollection +dhoo:hasLibraryCollection rdf:type owl:DatatypeProperty ; + rdfs:domain dhoo:Manuscript ; + rdfs:range rdfs:Literal . + + +### http://digitalheraldry.org/digital-heraldry-ontology/object#hasLibraryInstitution +dhoo:hasLibraryInstitution rdf:type owl:DatatypeProperty ; + rdfs:domain dhoo:Manuscript ; + rdfs:range rdfs:Literal . + + +### http://digitalheraldry.org/digital-heraldry-ontology/object#hasLibrarySignature +dhoo:hasLibrarySignature rdf:type owl:DatatypeProperty ; + rdfs:domain dhoo:Manuscript ; + rdfs:range rdfs:Literal . + + +### http://digitalheraldry.org/digital-heraldry-ontology/object#hasOMAarmCode +dhoo:hasOMAarmCode rdf:type owl:DatatypeProperty ; + rdfs:domain dhoo:Manuscript ; + rdfs:range rdfs:Literal ; + rdfs:comment "Stores legacy manuscript identifier from OMA database"@en ; + rdfs:label "hasOMAarmCode"@en . + + ### http://digitalheraldry.org/digital-heraldry-ontology/representation#folioNumber dhor:folioNumber rdf:type owl:DatatypeProperty ; + rdfs:domain dhoo:Manuscript ; rdfs:range rdfs:Literal ; rdfs:comment "Indicates the number of the folio a coat of arms representation is located on. This is a shortcut for the property dhor:locatedOnFolio."@en ; rdfs:label "folioNumber"@en ; -- GitLab