Skip to content
Snippets Groups Projects
Commit 8041cfaf authored by Philipp Schneider's avatar Philipp Schneider
Browse files

Rename entities ontology to entity

parent 14f699e3
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@
"initial_instance_definitions": "src/rdf-mappings/initial_ontology_definitions.py",
"_initial_instance_definitions": null,
"existing_representation_ontology": "data/ontologies/digital-heraldry-ontology-representation.ttl",
"existing_entity_ontology": "data/ontologies/digital-heraldry-ontology-entities.ttl",
"existing_entity_ontology": "data/ontologies/digital-heraldry-ontology-entity.ttl",
"_existing_ontology": "data/rdf-output/coat-of-arms-manuscript-provenances.ttl",
"__existing_ontology": null,
"create_research_dataset": true,
......
@prefix : <http://digitalheraldry.org/digital-heraldry-ontology/entities#> .
@prefix : <http://digitalheraldry.org/digital-heraldry-ontology/entity#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dhoe: <http://digitalheraldry.org/digital-heraldry-ontology/entities#> .
@prefix dhoe: <http://digitalheraldry.org/digital-heraldry-ontology/entity#> .
@prefix dhoh: <http://digitalheraldry.org/digital-heraldry-ontology/heraldry#> .
@prefix dhor: <http://digitalheraldry.org/digital-heraldry-ontology/representation#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@base <http://digitalheraldry.org/digital-heraldry-ontology/entities#> .
<http://digitalheraldry.org/digital-heraldry-ontology/entities#> rdf:type owl:Ontology ;
owl:versionIRI <http://digitalheraldry.org/digital-heraldry-ontology/entities/0.1.0> ;
dcterms:creator "Philipp Schneider" ,
"Torsten Hiltmann" ;
dcterms:description "The Digital Heraldry Entities Ontology is used to describe entities and their metadata that can be identified through coats of arms. It also enables linking an identification of a coat of arms (created with the Digital Heraldry Ontology) to a specific source in a specific context."@en ;
dcterms:license <https://creativecommons.org/licenses/by/4.0/> ;
dcterms:publisher "https://www.geschichte.hu-berlin.de/de/bereiche-und-lehrstuehle/digital-history" ;
dcterms:title "Digital Heraldry Objects Ontology" ;
vann:preferredNamespacePrefix "dhoe" .
@base <http://digitalheraldry.org/digital-heraldry-ontology/entity#> .
<http://digitalheraldry.org/digital-heraldry-ontology/entity#> rdf:type owl:Ontology ;
owl:versionIRI <http://digitalheraldry.org/digital-heraldry-ontology/entity/0.1.0> ;
dcterms:creator "Philipp Schneider" ,
"Torsten Hiltmann" ;
dcterms:description "The Digital Heraldry Entity Ontology is used to describe entities and their metadata that can be identified through coats of arms. It also enables linking an identification of a coat of arms (created with the Digital Heraldry Ontology) to a specific source in a specific context."@en ;
dcterms:license <https://creativecommons.org/licenses/by/4.0/> ;
dcterms:publisher "https://www.geschichte.hu-berlin.de/de/bereiche-und-lehrstuehle/digital-history" ;
dcterms:title "Digital Heraldry Objects Ontology" ;
vann:preferredNamespacePrefix "dhoe" .
#################################################################
# Annotation properties
#################################################################
### http://digitalheraldry.org/digital-heraldry-ontology/entities#hasAnnotatorComment
### http://digitalheraldry.org/digital-heraldry-ontology/entity#hasAnnotatorComment
dhoe:hasAnnotatorComment rdf:type owl:AnnotationProperty ;
rdfs:comment "Comment in natural language, done by the human annotator responsable for the respective identification."@en ;
rdfs:label "hasAnnotatorComment"@en ;
......@@ -61,14 +61,14 @@ vann:preferredNamespacePrefix rdf:type owl:AnnotationProperty .
# Object Properties
#################################################################
### http://digitalheraldry.org/digital-heraldry-ontology/entities#attributesCoATo
### http://digitalheraldry.org/digital-heraldry-ontology/entity#attributesCoATo
dhoe:attributesCoATo rdf:type owl:ObjectProperty ;
rdfs:domain dhor:DescriptionAct ;
rdfs:range dhoe:IdentifiedEntity ;
rdfs:label "attributesCoATo"@en .
### http://digitalheraldry.org/digital-heraldry-ontology/entities#hasPrimaryIdentification
### http://digitalheraldry.org/digital-heraldry-ontology/entity#hasPrimaryIdentification
dhoe:hasPrimaryIdentification rdf:type owl:ObjectProperty ;
rdfs:domain dhor:CoatOfArmsRepresentation ;
rdfs:range dhoe:IdentifiedEntity ;
......@@ -79,7 +79,7 @@ dhoe:hasPrimaryIdentification rdf:type owl:ObjectProperty ;
# Classes
#################################################################
### http://digitalheraldry.org/digital-heraldry-ontology/entities#IdentifiedEntity
### http://digitalheraldry.org/digital-heraldry-ontology/entity#IdentifiedEntity
dhoe:IdentifiedEntity rdf:type owl:Class ;
rdfs:label "IdentifiedEntity"@en .
......
......@@ -12,7 +12,7 @@ dho_n = Namespace(dho_uri)
dho_blazon_n = Namespace(URIRef('http://digitalheraldry.org/digital-heraldry-ontology/blazon#'))
dho_rep_n = Namespace(URIRef('http://digitalheraldry.org/digital-heraldry-ontology/representation#'))
dho_obj_n = Namespace(URIRef('http://digitalheraldry.org/digital-heraldry-ontology/objects#'))
dho_ent_n = Namespace(URIRef('http://digitalheraldry.org/digital-heraldry-ontology/entities#'))
dho_ent_n = Namespace(URIRef('http://digitalheraldry.org/digital-heraldry-ontology/entity#'))
dho_data_n = Namespace(URIRef('http://digitalheraldry.org/digital-heraldry-ontology/data#'))
def bind_namespaces(g):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment