ontology:Organisation leaf node


URI

http://omv.ontoware.org/2005/05/ontology#Organisation

Label

Organisation

Description

An organisation of some kind. Represents social institutions such as universities, companies, societies etc.

Superclasses (1)

Implementation

@prefix : <http://omv.ontoware.org/2005/05/ontology#> .
@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#> .

:Organisation a owl:Class ;
    rdfs:label "Organisation"^^xsd:string ;
    rdfs:comment "An organisation of some kind. Represents social institutions such as universities, companies, societies etc."^^xsd:string ;
    rdfs:subClassOf [ a owl:Restriction ;
            owl:allValuesFrom :Person ;
            owl:onProperty :hasContactPerson ],
        [ a owl:Restriction ;
            owl:cardinality "1"^^xsd:nonNegativeInteger ;
            owl:onProperty :name ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty :acronym ],
        [ a owl:Restriction ;
            owl:allValuesFrom xsd:string ;
            owl:onProperty :name ],
        [ a owl:Restriction ;
            owl:cardinality "1"^^xsd:nonNegativeInteger ;
            owl:onProperty :acronym ],
        :Party .