Replace tm:Work with org:Membership and tm:Profession with schema:Occupation
Use W3C Organization Ontology for work engagements (org:member, org:organization). Profession instances become schema:Occupation. Custom properties (workLocation, employmentType, etc.) are kept with updated domains/ranges.
This commit is contained in:
parent
b3661c0c22
commit
01ad6d2ca0
1 changed files with 21 additions and 38 deletions
|
|
@ -6,6 +6,7 @@
|
||||||
@prefix vann: <http://purl.org/vocab/vann/> .
|
@prefix vann: <http://purl.org/vocab/vann/> .
|
||||||
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
|
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
|
||||||
@prefix schema: <https://schema.org/> .
|
@prefix schema: <https://schema.org/> .
|
||||||
|
@prefix org: <http://www.w3.org/ns/org#> .
|
||||||
@prefix tm: <https://daniel.degu.cl/ontologies/theatre-migrants/> .
|
@prefix tm: <https://daniel.degu.cl/ontologies/theatre-migrants/> .
|
||||||
|
|
||||||
# =============================================================================
|
# =============================================================================
|
||||||
|
|
@ -16,7 +17,8 @@
|
||||||
rdfs:label "Theatre Migrants Ontology"@en ;
|
rdfs:label "Theatre Migrants Ontology"@en ;
|
||||||
rdfs:comment "Ontology for the Theatre Migrants Knowledge Graph, documenting professional migrations of theatre practitioners across Europe (1850–1918)."@en ;
|
rdfs:comment "Ontology for the Theatre Migrants Knowledge Graph, documenting professional migrations of theatre practitioners across Europe (1850–1918)."@en ;
|
||||||
dct:title "Theatre Migrants Ontology"@en ;
|
dct:title "Theatre Migrants Ontology"@en ;
|
||||||
dct:description "A domain ontology extending Schema.org with custom classes and properties for modeling migrations, work engagements, interpersonal relationships, religion affiliations, and temporal uncertainty in the context of European theatre history."@en ;
|
dct:description "A domain ontology extending Schema.org and the W3C Organization Ontology with custom classes and properties for modeling migrations, organizational memberships, interpersonal relationships, religion affiliations, and temporal uncertainty in the context of European theatre history."@en ;
|
||||||
|
owl:imports <http://www.w3.org/ns/org#> ;
|
||||||
dct:created "2025-01-01"^^xsd:date ;
|
dct:created "2025-01-01"^^xsd:date ;
|
||||||
dct:license <https://creativecommons.org/licenses/by/4.0/> ;
|
dct:license <https://creativecommons.org/licenses/by/4.0/> ;
|
||||||
dct:creator <https://orcid.org/0000-0002-7896-0875> ;
|
dct:creator <https://orcid.org/0000-0002-7896-0875> ;
|
||||||
|
|
@ -52,11 +54,6 @@ tm:Migration a owl:Class ;
|
||||||
rdfs:comment "A migration event recording the movement of a person from one place to another."@en ;
|
rdfs:comment "A migration event recording the movement of a person from one place to another."@en ;
|
||||||
rdfs:isDefinedBy <https://daniel.degu.cl/ontologies/theatre-migrants/> .
|
rdfs:isDefinedBy <https://daniel.degu.cl/ontologies/theatre-migrants/> .
|
||||||
|
|
||||||
tm:Work a owl:Class ;
|
|
||||||
rdfs:label "Work"@en ;
|
|
||||||
rdfs:comment "A professional engagement of a person at an organisation in a given location and time period."@en ;
|
|
||||||
rdfs:isDefinedBy <https://daniel.degu.cl/ontologies/theatre-migrants/> .
|
|
||||||
|
|
||||||
tm:Relationship a owl:Class ;
|
tm:Relationship a owl:Class ;
|
||||||
rdfs:label "Relationship"@en ;
|
rdfs:label "Relationship"@en ;
|
||||||
rdfs:comment "An interpersonal relationship between two persons."@en ;
|
rdfs:comment "An interpersonal relationship between two persons."@en ;
|
||||||
|
|
@ -136,11 +133,6 @@ tm:Religion a owl:Class ;
|
||||||
rdfs:label "Religion"@en ;
|
rdfs:label "Religion"@en ;
|
||||||
rdfs:isDefinedBy <https://daniel.degu.cl/ontologies/theatre-migrants/> .
|
rdfs:isDefinedBy <https://daniel.degu.cl/ontologies/theatre-migrants/> .
|
||||||
|
|
||||||
tm:Profession a owl:Class ;
|
|
||||||
rdfs:subClassOf skos:Concept ;
|
|
||||||
rdfs:label "Profession"@en ;
|
|
||||||
rdfs:isDefinedBy <https://daniel.degu.cl/ontologies/theatre-migrants/> .
|
|
||||||
|
|
||||||
tm:EmploymentType a owl:Class ;
|
tm:EmploymentType a owl:Class ;
|
||||||
rdfs:subClassOf skos:Concept ;
|
rdfs:subClassOf skos:Concept ;
|
||||||
rdfs:label "EmploymentType"@en ;
|
rdfs:label "EmploymentType"@en ;
|
||||||
|
|
@ -227,59 +219,50 @@ tm:secondaryReason a owl:ObjectProperty ;
|
||||||
rdfs:isDefinedBy <https://daniel.degu.cl/ontologies/theatre-migrants/> .
|
rdfs:isDefinedBy <https://daniel.degu.cl/ontologies/theatre-migrants/> .
|
||||||
|
|
||||||
# =============================================================================
|
# =============================================================================
|
||||||
# Object properties — Work
|
# Object properties — org:Membership (work engagements)
|
||||||
|
#
|
||||||
|
# Work engagements are modeled as org:Membership instances. The properties
|
||||||
|
# org:member and org:organization from the W3C Organization Ontology are
|
||||||
|
# used directly. The following custom properties extend org:Membership with
|
||||||
|
# domain-specific information.
|
||||||
# =============================================================================
|
# =============================================================================
|
||||||
|
|
||||||
tm:worker a owl:ObjectProperty ;
|
|
||||||
rdfs:label "worker"@en ;
|
|
||||||
rdfs:comment "The person engaged in this work."@en ;
|
|
||||||
rdfs:domain tm:Work ;
|
|
||||||
rdfs:range schema:Person ;
|
|
||||||
rdfs:isDefinedBy <https://daniel.degu.cl/ontologies/theatre-migrants/> .
|
|
||||||
|
|
||||||
tm:workLocation a owl:ObjectProperty ;
|
tm:workLocation a owl:ObjectProperty ;
|
||||||
rdfs:label "workLocation"@en ;
|
rdfs:label "workLocation"@en ;
|
||||||
rdfs:comment "The place where this work engagement took place."@en ;
|
rdfs:comment "The place where this work engagement took place."@en ;
|
||||||
rdfs:domain tm:Work ;
|
rdfs:domain org:Membership ;
|
||||||
rdfs:range schema:Place ;
|
rdfs:range schema:Place ;
|
||||||
rdfs:isDefinedBy <https://daniel.degu.cl/ontologies/theatre-migrants/> .
|
rdfs:isDefinedBy <https://daniel.degu.cl/ontologies/theatre-migrants/> .
|
||||||
|
|
||||||
tm:workOrganisation a owl:ObjectProperty ;
|
|
||||||
rdfs:label "workOrganisation"@en ;
|
|
||||||
rdfs:comment "The primary organisation where this work engagement took place."@en ;
|
|
||||||
rdfs:domain tm:Work ;
|
|
||||||
rdfs:range schema:Organization ;
|
|
||||||
rdfs:isDefinedBy <https://daniel.degu.cl/ontologies/theatre-migrants/> .
|
|
||||||
|
|
||||||
tm:secondaryOrganisation a owl:ObjectProperty ;
|
tm:secondaryOrganisation a owl:ObjectProperty ;
|
||||||
rdfs:label "secondaryOrganisation"@en ;
|
rdfs:label "secondaryOrganisation"@en ;
|
||||||
rdfs:comment "A secondary organisation associated with this work engagement."@en ;
|
rdfs:comment "A secondary organisation associated with this work engagement."@en ;
|
||||||
rdfs:domain tm:Work ;
|
rdfs:domain org:Membership ;
|
||||||
rdfs:range schema:Organization ;
|
rdfs:range schema:Organization ;
|
||||||
rdfs:isDefinedBy <https://daniel.degu.cl/ontologies/theatre-migrants/> .
|
rdfs:isDefinedBy <https://daniel.degu.cl/ontologies/theatre-migrants/> .
|
||||||
|
|
||||||
tm:profession a owl:ObjectProperty ;
|
tm:profession a owl:ObjectProperty ;
|
||||||
rdfs:label "profession"@en ;
|
rdfs:label "profession"@en ;
|
||||||
rdfs:comment "The primary profession exercised in this work engagement."@en ;
|
rdfs:comment "The primary profession exercised in this work engagement."@en ;
|
||||||
rdfs:domain tm:Work ;
|
rdfs:domain org:Membership ;
|
||||||
rdfs:range tm:Profession ;
|
rdfs:range schema:Occupation ;
|
||||||
rdfs:isDefinedBy <https://daniel.degu.cl/ontologies/theatre-migrants/> .
|
rdfs:isDefinedBy <https://daniel.degu.cl/ontologies/theatre-migrants/> .
|
||||||
|
|
||||||
tm:secondaryProfession a owl:ObjectProperty ;
|
tm:secondaryProfession a owl:ObjectProperty ;
|
||||||
rdfs:label "secondaryProfession"@en ;
|
rdfs:label "secondaryProfession"@en ;
|
||||||
rdfs:domain tm:Work ;
|
rdfs:domain org:Membership ;
|
||||||
rdfs:range tm:Profession ;
|
rdfs:range schema:Occupation ;
|
||||||
rdfs:isDefinedBy <https://daniel.degu.cl/ontologies/theatre-migrants/> .
|
rdfs:isDefinedBy <https://daniel.degu.cl/ontologies/theatre-migrants/> .
|
||||||
|
|
||||||
tm:tertiaryProfession a owl:ObjectProperty ;
|
tm:tertiaryProfession a owl:ObjectProperty ;
|
||||||
rdfs:label "tertiaryProfession"@en ;
|
rdfs:label "tertiaryProfession"@en ;
|
||||||
rdfs:domain tm:Work ;
|
rdfs:domain org:Membership ;
|
||||||
rdfs:range tm:Profession ;
|
rdfs:range schema:Occupation ;
|
||||||
rdfs:isDefinedBy <https://daniel.degu.cl/ontologies/theatre-migrants/> .
|
rdfs:isDefinedBy <https://daniel.degu.cl/ontologies/theatre-migrants/> .
|
||||||
|
|
||||||
tm:employmentType a owl:ObjectProperty ;
|
tm:employmentType a owl:ObjectProperty ;
|
||||||
rdfs:label "employmentType"@en ;
|
rdfs:label "employmentType"@en ;
|
||||||
rdfs:domain tm:Work ;
|
rdfs:domain org:Membership ;
|
||||||
rdfs:range tm:EmploymentType ;
|
rdfs:range tm:EmploymentType ;
|
||||||
rdfs:isDefinedBy <https://daniel.degu.cl/ontologies/theatre-migrants/> .
|
rdfs:isDefinedBy <https://daniel.degu.cl/ontologies/theatre-migrants/> .
|
||||||
|
|
||||||
|
|
@ -340,7 +323,7 @@ tm:enumeratedProfession a owl:ObjectProperty ;
|
||||||
rdfs:label "enumeratedProfession"@en ;
|
rdfs:label "enumeratedProfession"@en ;
|
||||||
rdfs:comment "The enumerated profession value associated with this record."@en ;
|
rdfs:comment "The enumerated profession value associated with this record."@en ;
|
||||||
rdfs:domain tm:PersonProfession ;
|
rdfs:domain tm:PersonProfession ;
|
||||||
rdfs:range tm:Profession ;
|
rdfs:range schema:Occupation ;
|
||||||
rdfs:isDefinedBy <https://daniel.degu.cl/ontologies/theatre-migrants/> .
|
rdfs:isDefinedBy <https://daniel.degu.cl/ontologies/theatre-migrants/> .
|
||||||
|
|
||||||
# =============================================================================
|
# =============================================================================
|
||||||
|
|
@ -504,13 +487,13 @@ tm:via a owl:DatatypeProperty ;
|
||||||
rdfs:isDefinedBy <https://daniel.degu.cl/ontologies/theatre-migrants/> .
|
rdfs:isDefinedBy <https://daniel.degu.cl/ontologies/theatre-migrants/> .
|
||||||
|
|
||||||
# =============================================================================
|
# =============================================================================
|
||||||
# Datatype properties — Work
|
# Datatype properties — org:Membership
|
||||||
# =============================================================================
|
# =============================================================================
|
||||||
|
|
||||||
tm:employment a owl:DatatypeProperty ;
|
tm:employment a owl:DatatypeProperty ;
|
||||||
rdfs:label "employment"@en ;
|
rdfs:label "employment"@en ;
|
||||||
rdfs:comment "Description of the employment arrangement."@en ;
|
rdfs:comment "Description of the employment arrangement."@en ;
|
||||||
rdfs:domain tm:Work ;
|
rdfs:domain org:Membership ;
|
||||||
rdfs:range xsd:string ;
|
rdfs:range xsd:string ;
|
||||||
rdfs:isDefinedBy <https://daniel.degu.cl/ontologies/theatre-migrants/> .
|
rdfs:isDefinedBy <https://daniel.degu.cl/ontologies/theatre-migrants/> .
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue