koala.owl:Koala leaf node


URI

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

Label

Koala

Usage

Instances of koala.owl:Koala 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 rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

:Koala a owl:Class ;
    rdfs:subClassOf [ a owl:Restriction ;
            owl:hasValue false ;
            owl:onProperty :isHardWorking ],
        [ a owl:Restriction ;
            owl:onProperty :hasHabitat ;
            owl:someValuesFrom :DryEucalyptForest ],
        :Marsupials .