koala.owl:Parent leaf node


URI

http://protege.stanford.edu/plugins/owl/owl-library/koala.owl#Parent

Label

Parent

Superclasses (1)

Usage

Instances of koala.owl:Parent can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE
From class koala.owl:Animal
koala.owl:hasGender owl:FunctionalProperty koala.owl:Gender
koala.owl:hasChildren owl:ObjectProperty koala.owl:Animal
koala.owl:hasHabitat owl:ObjectProperty koala.owl:Habitat

Implementation

@prefix : <http://protege.stanford.edu/plugins/owl/owl-library/koala.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#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

:Parent a owl:Class ;
    rdfs:subClassOf :Animal ;
    owl:equivalentClass [ a owl:Class ;
            owl:intersectionOf ( :Animal [ a owl:Restriction ;
                        owl:minCardinality "1"^^xsd:int ;
                        owl:onProperty :hasChildren ] ) ] .