@prefix ec: <http://www.ebu.ch/metadata/ontologies/ebucoreplus#> .
@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#> .
@prefix time: <http://www.w3.org/2006/time#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .

ec:Organisation
  a owl:Class ;
  rdfs:subClassOf ec:Agent, [
    a owl:Restriction ;
    owl:onProperty ec:hasDepartment ;
    owl:allValuesFrom ec:Department
  ], [
    a owl:Restriction ;
    owl:onProperty ec:hasLogo ;
    owl:allValuesFrom ec:Logo
  ], [
    a owl:Restriction ;
    owl:onProperty ec:hasOrganisationStaff ;
    owl:allValuesFrom ec:StaffMember
  ], [
    a owl:Restriction ;
    owl:onProperty ec:hasStaffMember ;
    owl:allValuesFrom ec:StaffMember
  ], [
    a owl:Restriction ;
    owl:onProperty ec:hasEndDateTime ;
    owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
    owl:onClass time:Instant
  ], [
    a owl:Restriction ;
    owl:onProperty ec:hasStartDateTime ;
    owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
    owl:onClass time:Instant
  ] ;
  dcterms:description "An organisation (business, corporation, federation, etc.) or moral agent (government body)."@en ;
  rdfs:label "Organisation"@en ;
  skos:definition "an Agent in the form of an administrative and functional structure participating in media related activities"@en ;
  skos:example """- PSM organisations
- EBU
- collecting society
- film studios
- cinemas
- authors' union"""@en .

