Skip to content

Remove gist:Address from ranges of gist:toAgent and gist:fromAgent. Fixes #391. #395

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Oct 28, 2020
Merged
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
7 changes: 7 additions & 0 deletions docs/ReleaseNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ Release X.x.x [ Release manager: update version number here and below in import

### Patch Updates

*Removed `gist:Address` from range of `gist:toAgent` and `gist:fromAgent`

- Description: Removed `gist:Address` from range of `gist:toAgent` and `gist:fromAgent` and from the union `owl:someValuesFrom` restrictions in `gist:Message`.
- Rationale: Bug fix; it makes no sense to consider a `gist:Address`, which is a type of `gist:Content`, as an agent.
- Impact: Changes inferences based on previous ranges of these properties (i.e., an object of the property may no longer be a `gist:Address`, as in previous versions), but considered a bug fix and therefore a patch change.
- Issue: - Issue: [#391](https://github.com/semanticarts/gist/issues/391).

*Modified build to create JSON-LD ontology files with `.jsonld` extension.*

- Description: JSON-LD files were erroneously created with `.json` extension.
Expand Down
8 changes: 2 additions & 6 deletions gistCore.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -1549,9 +1549,8 @@ gist:Message
owl:someValuesFrom [
a owl:Class ;
owl:unionOf (
gist:Address
gist:Organization
gist:Person
gist:Organization
) ;
] ;
]
Expand All @@ -1561,9 +1560,8 @@ gist:Message
owl:someValuesFrom [
a owl:Class ;
owl:unionOf (
gist:Address
gist:Organization
gist:Person
gist:Organization
) ;
] ;
]
Expand Down Expand Up @@ -3102,7 +3100,6 @@ gist:fromAgent
rdfs:range [
a owl:Class ;
owl:unionOf (
gist:Address
gist:Organization
gist:Person
) ;
Expand Down Expand Up @@ -3855,7 +3852,6 @@ gist:toAgent
rdfs:range [
a owl:Class ;
owl:unionOf (
gist:Address
gist:Organization
gist:Person
) ;
Expand Down