Skip to content

Commit

Permalink
Merge pull request #560 from ucoProject/BugFix-Issue-543
Browse files Browse the repository at this point in the history
Issue 543: Designate ObservablePattern a subclass of Pattern, adding namespace import
  • Loading branch information
plbt5 authored Nov 22, 2023
2 parents e4605c8 + 885acb5 commit 0c2240c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ontology/uco/observable/observable.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
@prefix location: <https://ontology.unifiedcyberontology.org/uco/location/> .
@prefix observable: <https://ontology.unifiedcyberontology.org/uco/observable/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pattern: <https://ontology.unifiedcyberontology.org/uco/pattern/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
Expand Down Expand Up @@ -5038,7 +5039,10 @@ observable:ObservablePattern
owl:Class ,
sh:NodeShape
;
rdfs:subClassOf observable:Observable ;
rdfs:subClassOf
observable:Observable ,
pattern:Pattern
;
rdfs:label "ObservablePattern"@en ;
rdfs:comment "An observable pattern is a grouping of characteristics unique to a logical pattern composed of observable object and observable action properties."@en ;
sh:targetClass observable:ObservablePattern ;
Expand Down

0 comments on commit 0c2240c

Please sign in to comment.