pizza.owl:VegetarianPizzaEquivalent1 leaf node


URI

http://www.co-ode.org/ontologies/pizza/pizza.owl#VegetarianPizzaEquivalent1

Label

PizzaVegetarianaEquivalente1

Description

Any pizza that only has vegetarian toppings or no toppings is a VegetarianPizzaEquiv1. Should be inferred to be equivalent to VegetarianPizzaEquiv2. Not equivalent to VegetarianPizza because PizzaTopping is not covering

Usage

Instances of pizza.owl:VegetarianPizzaEquivalent1 can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE
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

Implementation

@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#> .

:VegetarianPizzaEquivalent1 a owl:Class ;
    rdfs:label "PizzaVegetarianaEquivalente1"@pt ;
    rdfs:comment "Any pizza that only has vegetarian toppings or no toppings is a VegetarianPizzaEquiv1. Should be inferred to be equivalent to VegetarianPizzaEquiv2.  Not equivalent to VegetarianPizza because PizzaTopping is not covering"@en ;
    owl:equivalentClass [ a owl:Class ;
            owl:intersectionOf ( :Pizza [ a owl:Restriction ;
                        owl:allValuesFrom :VegetarianTopping ;
                        owl:onProperty :hasTopping ] ) ] .