Skip to content

Add property gist:description. Fixes #425. #429

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 5 commits into from
Feb 26, 2021
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
29 changes: 15 additions & 14 deletions docs/ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,30 +1,31 @@
gist Release Notes
=====

Release X.x.x [UPDATE AT RELEASE TIME]
Release 9.6.0
-----

### Minor Updates

**Refactored `hasParty`, `giver` and `getter`**
Issue [#133](https://github.com/semanticarts/gist/issues/133)
- Added datatype property `gist:description` for describing instance data. Issue [#425](https://github.com/semanticarts/gist/issues/425).

- `giver` and `getter`
- Renamed to `hasGiver` and `hasGetter`
- The newly named versions are no longer subproperties of `hasParty`
- Deprecated
- New property: `hasParticipant`
- No domain or range
- Has subproperties: `hasGiver`, `hasGetter`, `hasParty`, `fromAgent` and `toAgent`
- Added a `skos:scopeNote` to `fromAgent`
- Added a `skos:example` to `hasParty`
- Updated `skos:definition`s for `toAgent` and `fromAgent`
- Refactored `hasParty`, `giver` and `getter`. Issue [#133](https://github.com/semanticarts/gist/issues/133).

- `giver` and `getter`
- Renamed to `hasGiver` and `hasGetter`
- The newly named versions are no longer subproperties of `hasParty`
- Deprecated `giver` and `getter`
- New property: `hasParticipant`
- No domain or range
- Has subproperties: `hasGiver`, `hasGetter`, `hasParty`, `fromAgent` and `toAgent`
- Added a `skos:scopeNote` to `fromAgent`
- Added a `skos:example` to `hasParty`
- Updated `skos:definition`s for `toAgent` and `fromAgent`

### Patch updates

- Updated gist style guide for newly-defined conventions. Issue [#421](https://github.com/semanticarts/gist/issues/421).

Import URL: <https://ontologies.semanticarts.com/o/gistCoreX.x.x>. [UPDATE AT RELEASE TIME]
Import URL: <https://ontologies.semanticarts.com/o/gistCore9.6.0>

Release 9.5.0
-----
Expand Down
10 changes: 9 additions & 1 deletion gistCore.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -2978,6 +2978,14 @@ gist:describedIn
skos:prefLabel "described in"^^xsd:string ;
.

gist:description
a owl:DatatypeProperty ;
skos:definition "A statement about someone or something's attributes or characteristics."^^xsd:string ;
skos:example "The Empire State Building is a 102-story Art Deco skyscraper in Midtown Manhattan in New York City, United States. It was designed by Shreve, Lamb & Harmon and built from 1930 to 1931."^^xsd:string ;
skos:prefLabel "description"^^xsd:string ;
skos:scopeNote "This property is used to provide a description of an instance entity in greater detail than a label."^^xsd:string ;
.

gist:directPartOf
a owl:ObjectProperty ;
owl:inverseOf gist:hasDirectPart ;
Expand Down Expand Up @@ -3061,7 +3069,7 @@ gist:fromAgent
skos:definition "The party that is the source of something (e.g. a message, shipment, etc.)"^^xsd:string ;
skos:prefLabel "from agent"^^xsd:string ;
skos:scopeNote 'This is not the inverse of toAgent. A message can be to someone. If we made it the inverse the person would be "from" the message'^^xsd:string ;
.
.

gist:fromPlace
a owl:ObjectProperty ;
Expand Down
8 changes: 4 additions & 4 deletions gistDeprecated.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -162,16 +162,16 @@ gist:getter
rdfs:subPropertyOf gist:hasParticipant ;
owl:deprecated "true"^^xsd:boolean ;
owl:propertyDisjointWith gist:giver ;
<http://www.w3.org/2004/02/skos/core#definition> "The recipient"^^xsd:string ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "Getter"^^xsd:string ;
skos:definition "The recipient"^^xsd:string ;
skos:prefLabel "Getter"^^xsd:string ;
.

gist:giver
a owl:ObjectProperty ;
rdfs:subPropertyOf gist:hasParticipant ;
owl:deprecated "true"^^xsd:boolean ;
<http://www.w3.org/2004/02/skos/core#definition> "The active party, the one with the obligation or the one initiating the transfer"^^xsd:string ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "Giver"^^xsd:string ;
skos:definition "The active party, the one with the obligation or the one initiating the transfer"^^xsd:string ;
skos:prefLabel "Giver"^^xsd:string ;
.

gist:hasA
Expand Down