aboutsummaryrefslogtreecommitdiffstats
path: root/test/validate/good-cardinality.ttl
diff options
context:
space:
mode:
Diffstat (limited to 'test/validate/good-cardinality.ttl')
-rw-r--r--test/validate/good-cardinality.ttl18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/validate/good-cardinality.ttl b/test/validate/good-cardinality.ttl
new file mode 100644
index 00000000..74615fdc
--- /dev/null
+++ b/test/validate/good-cardinality.ttl
@@ -0,0 +1,18 @@
+@prefix eg: <http://example.org/> .
+@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#> .
+
+eg:Thing
+ a rdfs:Class ;
+ rdfs:label "Thing" ;
+ rdfs:subClassOf [
+ a owl:Restriction ;
+ owl:onProperty rdf:value ;
+ owl:cardinality 2
+ ] .
+
+eg:s
+ a eg:Thing ;
+ rdf:value 1 ,
+ 2 .