Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
276B

  1. # Test integer datatyped literals using an OWL cardinality constraint
  2. @prefix owl: <http://www.w3.org/2002/07/owl#> .
  3. # based on examples in the OWL Reference
  4. _:hasParent a owl:ObjectProperty .
  5. [] a owl:Restriction ;
  6. owl:onProperty _:hasParent ;
  7. owl:maxCardinality 2 .