pizza.owl:UnclosedPizza leaf node


URI

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

Label

PizzaAberta

Description

An unclosed Pizza cannot be inferred to be either a VegetarianPizza or a NonVegetarianPizza, because it might have other toppings.

Usage

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

PROPERTYTYPEDESCRIPTIONRANGE
From class pizza.owl:Pizza
pizza.owl:hasBase owl:FunctionalProperty pizza.owl:PizzaBase
pizza.owl:hasTopping owl:InverseFunctionalProperty Note that hasTopping is inverse functional because isToppingOf is functional pizza.owl:PizzaTopping
From class pizza.owl:Food
pizza.owl:hasIngredient owl:ObjectProperty NB Transitive - the ingredients of ingredients are ingredients of the whole pizza.owl:Food
pizza.owl:isIngredientOf owl:ObjectProperty The inverse property tree to hasIngredient - all subproperties and attributes of the properties should reflect those under hasIngredient. pizza.owl:Food
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 rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

:UnclosedPizza a owl:Class ;
    rdfs:label "PizzaAberta"@pt ;
    rdfs:comment "An unclosed Pizza cannot be inferred to be either a VegetarianPizza or a NonVegetarianPizza, because it might have other toppings."^^xsd:string ;
    rdfs:subClassOf [ a owl:Restriction ;
            owl:onProperty :hasTopping ;
            owl:someValuesFrom :MozzarellaTopping ],
        :NamedPizza ;
    owl:disjointWith :American,
        :AmericanHot,
        :Cajun,
        :Capricciosa,
        :Caprina,
        :Fiorentina,
        :FourSeasons,
        :FruttiDiMare,
        :Giardiniera,
        :LaReine,
        :Margherita,
        :Mushroom,
        :Napoletana,
        :Parmense,
        :PolloAdAstra,
        :PrinceCarlo,
        :QuattroFormaggi,
        :Rosa,
        :Siciliana,
        :SloppyGiuseppe,
        :Soho,
        :Veneziana .