# Example: an ontology # SHOULD: # - show repeated mixed uri and bnode objects # - use prefixes as objects @prefix rdfs: . @prefix owl: . @prefix dct: . @prefix foaf: . @prefix : . : a owl:Ontology; owl:imports dct:, foaf: . :Issue a owl:Class; rdfs:label "Issue"@en, "Utgåva"@sv; rdfs:comment "A published issue."@en; rdfs:subClassOf foaf:Document, [ a owl:Restriction; owl:onProperty dct:title; owl:allValuesFrom rdfs:Literal; owl:minCardinality 1 ], [ a owl:Restriction; owl:onProperty dct:issued; owl:cardinality 1; ], [ a owl:Restriction; owl:onProperty dct:publisher; owl:allValuesFrom foaf:Agent; owl:maxCardinality 1; ]; rdfs:isDefinedBy : .