@base <http://eulersharp.sourceforge.net/2003/03swap/organization#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix con: <http://www.w3.org/2000/10/swap/pim/contact#> .
@prefix dce: <http://purl.org/dc/elements/1.1/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix agent: <agent#> .
@prefix space: <space#> .
@prefix organization: <> .

<>
    dce:contributor "Until 2010: Pieterjan De Potter; Ghent University - IBBT/ELIS - Multimedia Lab/Belgium"@en ;
    dce:creator "Hans Cools, MD; Agfa Healthcare/Belgium"@en ;
    dce:description "Formal general description of organization and the roles it can play."@en ;
    dce:format "OWL Full"@en ;
    dce:publisher "Agfa Healthcare/Belgium"@en ;
    dce:title "Organization"@en ;
    a owl:Ontology .

organization:Company
    a rdfs:Class ;
    rdfs:isDefinedBy <> ;
    rdfs:label "company"@en ;
    rdfs:subClassOf foaf:Organization ;
    skos:definition "Organisation with persons united or incorporated for joint action."@en .

organization:Department
    a rdfs:Class ;
    rdfs:isDefinedBy <> ;
    rdfs:label "department"@en ;
    rdfs:subClassOf foaf:Organization, [
        a owl:Restriction ;
        owl:onProperty space:containedBy ;
        owl:someValuesFrom foaf:Organization
    ] ;
    skos:definition "A specialized division of an organization."@en .

organization:Enterprise
    a rdfs:Class ;
    rdfs:isDefinedBy <> ;
    rdfs:label "enterprise"@en ;
    rdfs:subClassOf organization:Company ;
    skos:definition "Company organized for commercial purposes."@en .

organization:LegalPerson
    a rdfs:Class ;
    rdfs:isDefinedBy <> ;
    rdfs:label "legal person"@en ;
    rdfs:subClassOf [
        a owl:Restriction ;
        owl:onProperty agent:rolePlayedBy ;
        owl:someValuesFrom foaf:Organization
    ] ;
    skos:definition "Role of an organization recognised as having legal personality to enter legal relations, being able to act as a natural person for limited purposes, most commonly lawsuits, property ownership, and contracts."@en .

organization:University
    a rdfs:Class ;
    rdfs:isDefinedBy <> ;
    rdfs:label "university"@en ;
    rdfs:subClassOf foaf:Organization ;
    skos:definition "."@en .

organization:hasSeat
    a owl:ObjectProperty ;
    rdfs:domain foaf:Organization ;
    rdfs:isDefinedBy <> ;
    rdfs:range con:ContactLocation ;
    rdfs:subPropertyOf agent:hasResidence ;
    skos:definition "Specifying a seat of an organization."@en .

