pizza.owl:isIngredientOf


URI

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

Label

isIngredientOf

Description

The inverse property tree to hasIngredient - all subproperties and attributes of the properties should reflect those under hasIngredient.

Usage

DOMAINPROPERTYRANGE
pizza.owl:Food pizza.owl:isIngredientOf pizza.owl:Food

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

:isIngredientOf a owl:ObjectProperty,
        owl:TransitiveProperty ;
    rdfs:comment "The inverse property tree to hasIngredient - all subproperties and attributes of the properties should reflect those under hasIngredient."@en ;
    rdfs:domain :Food ;
    rdfs:range :Food ;
    owl:inverseOf :hasIngredient .