Skip to content
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

Classify AnalyticResult and Assertion #9

Merged
merged 1 commit into from
Jun 11, 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
25 changes: 25 additions & 0 deletions ontology/uco-gufo.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix uco-action: <https://ontology.unifiedcyberontology.org/uco/action/> .
@prefix uco-analysis: <https://ontology.unifiedcyberontology.org/uco/analysis/> .
@prefix uco-core: <https://ontology.unifiedcyberontology.org/uco/core/> .
@prefix uco-identity: <https://ontology.unifiedcyberontology.org/uco/identity/> .
@prefix uco-observable: <https://ontology.unifiedcyberontology.org/uco/observable/> .
Expand Down Expand Up @@ -151,6 +152,18 @@ uco-action:startTime
;
.

uco-analysis:AnalyticResult
a gufo:SubKind ;
.
Copy link
Contributor

Choose a reason for hiding this comment

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

Since uco-analysis:AnalyticResult is typed as a gufo:SubKind is should also be a superclass of the ultimate sortal, i.e., a gufo:Kind where it gets its identitity criterion from. I seem to miss that here.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Ah, sorry, it was a bit obscured by me not repeating triples from UCO. analysis:AnalyticResult is a direct subclass of core:Assertion:

https://github.com/ucoProject/UCO/blob/1.3.0/ontology/uco/analysis/analysis.ttl#L34-L39


uco-core:Assertion
a gufo:Kind ;
rdfs:subClassOf
drafting:Endurant ,
gufo:Object
;
.

uco-core:Event
rdfs:subClassOf drafting:Perdurant ;
.
Expand Down Expand Up @@ -235,3 +248,15 @@ uco-types:Hash
owl:annotatedSubject uco-core:Facet ;
.

[]
a owl:Axiom ;
rdfs:seeAlso
<http://example.org/kb/AnalyticResult-14641bfa-ef39-4394-a8ae-d0f57a2d637a> ,
<https://github.com/casework/CASE-Examples/tree/dc6f6b901289c1684fd88e25e9bcec925974d155/examples/illustrations/partitions> ,
uco-analysis:AnalyticResult
;
owl:annotatedObject gufo:Object ;
owl:annotatedProperty rdfs:subClassOf ;
owl:annotatedSubject uco-core:Assertion ;
.

5 changes: 5 additions & 0 deletions tests/exemplars.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix time: <http://www.w3.org/2006/time#> .
@prefix uco-action: <https://ontology.unifiedcyberontology.org/uco/action/> .
@prefix uco-analysis: <https://ontology.unifiedcyberontology.org/uco/analysis/> .
@prefix uco-core: <https://ontology.unifiedcyberontology.org/uco/core/> .
@prefix uco-identity: <https://ontology.unifiedcyberontology.org/uco/identity/> .
@prefix uco-observable: <https://ontology.unifiedcyberontology.org/uco/observable/> .
Expand All @@ -29,6 +30,10 @@ kb:Action-13c91d40-9ca0-4558-81a1-4f7db888c371
gufo:hasEndPointInXSDDateTimeStamp "2021-02-03T04:05:06Z"^^xsd:dateTimeStamp ;
.

kb:AnalyticResult-34fb92db-d576-45a7-9d62-dae04510968f
a uco-analysis:AnalyticResult ;
.

kb:BluetoothAddress-53c6bc31-4f9c-4ca7-96cb-c9c61d7e4ca2
a uco-observable:BluetoothAddress ;
uco-core:hasFacet
Expand Down
Loading