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

Update Endurant subclass position; add and demonstrate Quality #3

Merged
merged 1 commit into from
Feb 8, 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
19 changes: 18 additions & 1 deletion ontology/uco-gufo.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ drafting:Endurant
a owl:Class ;
rdfs:subClassOf
gufo:Endurant ,
uco-core:UcoObject
uco-core:UcoThing
;
rdfs:seeAlso <https://github.com/ucoProject/UCO/issues/544> ;
.
Expand All @@ -38,6 +38,16 @@ drafting:Perdurant
rdfs:seeAlso <https://github.com/ucoProject/UCO/issues/544> ;
.

drafting:Quality
a owl:Class ;
rdfs:subClassOf
drafting:Endurant ,
gufo:Quality ,
uco-core:UcoInherentCharacterizationThing
;
rdfs:seeAlso <https://github.com/ucoProject/UCO/issues/535> ;
.

uco-action:Action
rdfs:subClassOf drafting:Perdurant ;
.
Expand All @@ -46,6 +56,13 @@ uco-core:Event
rdfs:subClassOf drafting:Perdurant ;
.

uco-core:Item
rdfs:subClassOf
drafting:Endurant ,
gufo:Object
;
.

uco-identity:Organization
rdfs:subClassOf
drafting:Endurant ,
Expand Down
17 changes: 16 additions & 1 deletion tests/exemplars.ttl
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
# imports: http://example.org/ontology/uco-gufo

@prefix drafting: <http://example.org/ontology/drafting/> .
@prefix gufo: <http://purl.org/nemo/gufo#> .
@prefix kb: <http://example.org/kb/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@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-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/> .
@prefix uco-types: <https://ontology.unifiedcyberontology.org/uco/types/> .
@prefix uco-vocabulary: <https://ontology.unifiedcyberontology.org/uco/vocabulary/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
Expand All @@ -22,12 +24,25 @@ kb:Action-13c91d40-9ca0-4558-81a1-4f7db888c371
a uco-action:Action ;
.

kb:ContentData-179c7e84-f72d-47f7-b6f3-3f4a1f0938bd
a uco-observable:ContentData ;
.

kb:Quality-4b765c1f-362c-4562-a50f-7bb781fe4737
a drafting:Quality ;
gufo:hasReifiedQualityValue kb:Hash-4c3d0623-d365-4c69-a1a1-01523c6502fa ;
gufo:inheresIn kb:ContentData-179c7e84-f72d-47f7-b6f3-3f4a1f0938bd ;
.

kb:Event-03a1a1db-0579-4427-9a51-448c32281146
a uco-core:Event ;
.

kb:Hash-4c3d0623-d365-4c69-a1a1-01523c6502fa
a uco-types:Hash ;
a
gufo:QualityValue ,
uco-types:Hash
;
uco-types:hashMethod "SHA1"^^uco-vocabulary:HashNameVocab ;
uco-types:hashValue "da39a3ee5e6b4b0d3255bfef95601890afd80709"^^xsd:hexBinary ;
.
Expand Down
Loading