Skip to content

Commit

Permalink
Correct constraint type
Browse files Browse the repository at this point in the history
This typing error was flagged by the OWL SHACL review mechanism.

References:
* #375
* #406

Signed-off-by: Alex Nelson <alexander.nelson@nist.gov>
  • Loading branch information
ajnelson-nist committed Aug 12, 2022
1 parent f389692 commit c11348a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions ontology/uco/observable/observable.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -2695,6 +2695,12 @@ observable:EventFacet
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path observable:application ;
] ,
[
sh:class observable:ObservableObject ;
sh:maxCount "1"^^xsd:integer ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path observable:device ;
] ,
[
sh:datatype xsd:dateTime ;
sh:maxCount "1"^^xsd:integer ;
Expand Down Expand Up @@ -2736,12 +2742,6 @@ observable:EventFacet
sh:maxCount "1"^^xsd:integer ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path observable:account ;
] ,
[
sh:datatype observable:ObservableObject ;
sh:maxCount "1"^^xsd:integer ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path observable:device ;
]
;
sh:targetClass observable:EventFacet ;
Expand Down

0 comments on commit c11348a

Please sign in to comment.