Skip to content

Added Determination class. #1096

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
Jun 20, 2024
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
3 changes: 3 additions & 0 deletions docs/release_notes/Issue-317-determination.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
### Minor Updates

- Added `gist:Determination`, a subclass of `gist:Event`. Issue [317](https://github.com/semanticarts/gist/issues/317).
8 changes: 8 additions & 0 deletions ontologies/gistCore.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -787,6 +787,14 @@ gist:DegreeOfCommitment
skos:prefLabel "Degree Of Commitment"^^xsd:string ;
.

gist:Determination
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I like the work done so far.

Q: Is there any property that would always be the case on a determination? Otherwise this is just a named class.

Copy link
Contributor Author

@uscholdm uscholdm Jun 14, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@marksem In real world terms, a determination

  • will always have an entity that does the determining (maybe inverse of produces) with the doer being a person, machine or program
  • will generally have an outcome (in the past I have used hasOutput for this)
  • will often have a method (min 0).

I'm ok with it just being a named class.

a owl:Class ;
rdfs:subClassOf gist:Event ;
skos:definition "An event whose purpose is to establish a specific result, value, or outcome, usually by research, measuring, evaluating, or calculating."^^xsd:string ;
skos:example "Measuring the sulphur content of crude oil. Evaluation of a loan application for approval. Estimating the price of gas for the next three months. Determining whether and by how much an interest rate should change. Classifying something."^^xsd:string ;
skos:prefLabel "Determination"^^xsd:string ;
.

gist:DistanceUnit
a owl:Class ;
owl:disjointWith
Expand Down