blob: ac12101eb82bcf04ef15c92db0687c70b4940683 [file] [log] [blame]
@base <http://example.org/property-or-2> .
@prefix ex: <http://example.org/test#> .
@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 sh: <http://www.w3.org/ns/shacl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<>
a owl:Ontology ;
.
ex:TestShape
a sh:NodeShape ;
sh:property [
sh:path ex:property1 ;
sh:or ( [ sh:datatype xsd:string ] [ sh:datatype rdf:langString ] ) ;
] ;
sh:property [
sh:path ex:property2 ;
sh:or ( [ sh:datatype xsd:string ] [ sh:class ex:TestClass ] ) ;
] ;
.