http://www.co-ode.org/ontologies/pizza/pizza.owl#VegetarianPizzaEquivalent2
An alternative to VegetarianPizzaEquiv1 that does not require a definition of VegetarianTopping. Perhaps more difficult to maintain. Not equivalent to VegetarianPizza
Instances of pizza.owl:VegetarianPizzaEquivalent2 can have the following properties:
PROPERTY | TYPE | DESCRIPTION | RANGE |
---|---|---|---|
From class owl:Thing | |||
pizza.owl:hasCountryOfOrigin | owl:ObjectProperty | owl:Thing | |
pizza.owl:hasSpiciness | owl:FunctionalProperty | A property created to be used with the ValuePartition - Spiciness. | pizza.owl:Spiciness |
@prefix : <http://www.co-ode.org/ontologies/pizza/pizza.owl#> .
@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#> .
:VegetarianPizzaEquivalent2 a owl:Class ;
rdfs:label "PizzaVegetarianaEquivalente2"@pt ;
rdfs:comment "An alternative to VegetarianPizzaEquiv1 that does not require a definition of VegetarianTopping. Perhaps more difficult to maintain. Not equivalent to VegetarianPizza"@en ;
owl:equivalentClass [ a owl:Class ;
owl:intersectionOf ( :Pizza [ a owl:Restriction ;
owl:allValuesFrom [ a owl:Class ;
owl:unionOf ( :SauceTopping :CheeseTopping :VegetableTopping :FruitTopping :NutTopping :HerbSpiceTopping ) ] ;
owl:onProperty :hasTopping ] ) ] .