Skip to content

Commit

Permalink
Merge pull request #4 from yngwi/master
Browse files Browse the repository at this point in the history
Fix incorrect participant relations
  • Loading branch information
yngwi authored May 31, 2021
2 parents 35a6a22 + 8664a02 commit 8644151
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions core.owl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
<owl:Ontology rdf:about="https://purl.org/nampi/owl/core">
<owl:versionIRI rdf:resource="https://purl.org/nampi/owl/core/0.0.7"/>
<owl:versionIRI rdf:resource="https://purl.org/nampi/owl/core/0.0.8"/>
</owl:Ontology>


Expand Down Expand Up @@ -76,6 +76,7 @@

<owl:ObjectProperty rdf:about="https://purl.org/nampi/owl/core#changes_aspect_of">
<rdfs:subPropertyOf rdf:resource="https://purl.org/nampi/owl/core#has_main_participant"/>
<owl:inverseOf rdf:resource="https://purl.org/nampi/owl/core#has_aspect_changed_in"/>
<rdfs:label xml:lang="en">changes aspect of</rdfs:label>
</owl:ObjectProperty>

Expand All @@ -85,6 +86,7 @@

<owl:ObjectProperty rdf:about="https://purl.org/nampi/owl/core#changes_aspect_related_to">
<rdfs:subPropertyOf rdf:resource="https://purl.org/nampi/owl/core#has_participant"/>
<owl:inverseOf rdf:resource="https://purl.org/nampi/owl/core#is_related_to_changed_aspect_in"/>
<rdfs:range rdf:resource="https://purl.org/nampi/owl/core#group"/>
<rdfs:label xml:lang="en">changes aspect related to</rdfs:label>
</owl:ObjectProperty>
Expand Down Expand Up @@ -142,11 +144,11 @@



<!-- https://purl.org/nampi/owl/core#has_aspect_changed_by -->
<!-- https://purl.org/nampi/owl/core#has_aspect_changed_in -->

<owl:ObjectProperty rdf:about="https://purl.org/nampi/owl/core#has_aspect_changed_by">
<rdfs:subPropertyOf rdf:resource="https://purl.org/nampi/owl/core#participates_in"/>
<rdfs:label xml:lang="en">has aspect changed by</rdfs:label>
<owl:ObjectProperty rdf:about="https://purl.org/nampi/owl/core#has_aspect_changed_in">
<rdfs:subPropertyOf rdf:resource="https://purl.org/nampi/owl/core#is_main_participant_in"/>
<rdfs:label xml:lang="en">has aspect changed in</rdfs:label>
</owl:ObjectProperty>


Expand Down Expand Up @@ -362,6 +364,15 @@



<!-- https://purl.org/nampi/owl/core#is_related_to_changed_aspect_in -->

<owl:ObjectProperty rdf:about="https://purl.org/nampi/owl/core#is_related_to_changed_aspect_in">
<rdfs:subPropertyOf rdf:resource="https://purl.org/nampi/owl/core#participates_in"/>
<rdfs:label xml:lang="en">is related to changed aspect in</rdfs:label>
</owl:ObjectProperty>



<!-- https://purl.org/nampi/owl/core#is_source_location_for -->

<owl:ObjectProperty rdf:about="https://purl.org/nampi/owl/core#is_source_location_for">
Expand Down

0 comments on commit 8644151

Please sign in to comment.