From 084e2cd800e6303c2940fa13ba329103cb52fea1 Mon Sep 17 00:00:00 2001 From: Alex Nelson Date: Thu, 1 Feb 2024 13:52:40 -0500 Subject: [PATCH] Replace errant reference to non-existent concept owl:Datatype No effects were observed on Make-managed files. References: * https://github.com/ucoProject/UCO/issues/584 Signed-off-by: Alex Nelson --- ontology/owl/owl.ttl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ontology/owl/owl.ttl b/ontology/owl/owl.ttl index ced847d..2f5ecc7 100644 --- a/ontology/owl/owl.ttl +++ b/ontology/owl/owl.ttl @@ -149,12 +149,12 @@ uco-owl:Disjointedness-C-DT-shape sh:sparql [ a sh:SPARQLConstraint ; rdfs:seeAlso ; - 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: SELECT $this WHERE { - $this a owl:Datatype ; + $this a rdfs:Datatype ; } """ ; ] ;