Skip to content

Commit

Permalink
Merge pull request #585 from ucoProject/BugFix-Issue-584
Browse files Browse the repository at this point in the history
Issue 584: Replace errant reference to non-existent concept owl:Datatype
  • Loading branch information
plbt5 authored Apr 30, 2024
2 parents 04a75a6 + 084e2cd commit 38c21b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ontology/owl/owl.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -149,12 +149,12 @@ uco-owl:Disjointedness-C-DT-shape
sh:sparql [
a sh:SPARQLConstraint ;
rdfs:seeAlso <https://www.w3.org/TR/2012/REC-owl2-syntax-20121211/#Typing_Constraints_of_OWL_2_DL> ;
sh:message "An IRI may not be a member of both an owl:Class and owl:Datatype."@en ;
sh:message "An IRI may not be a member of both an owl:Class and rdfs:Datatype."@en ;
sh:select """
PREFIX owl: <http://www.w3.org/2002/07/owl#>
SELECT $this
WHERE {
$this a owl:Datatype ;
$this a rdfs:Datatype ;
}
""" ;
] ;
Expand Down

0 comments on commit 38c21b7

Please sign in to comment.