Chris@0: # Test integer datatyped literals using an OWL cardinality constraint Chris@0: @prefix owl: . Chris@0: Chris@0: # based on examples in the OWL Reference Chris@0: Chris@0: _:hasParent a owl:ObjectProperty . Chris@0: Chris@0: [] a owl:Restriction ; Chris@0: owl:onProperty _:hasParent ; Chris@0: owl:maxCardinality 2 .