@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 dc: <http://purl.org/dc/elements/1.1/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dcterms: <http://purl.org/dc/terms/> .

ec:Agent
  a owl:Class ;
  rdfs:subClassOf dc:Agent, [
    a owl:Restriction ;
    owl:onProperty ec:hasAgentBiography ;
    owl:allValuesFrom ec:Biography
  ], [
    a owl:Restriction ;
    owl:onProperty ec:hasAgentCountryOfResidence ;
    owl:allValuesFrom ec:CountryCode
  ], [
    a owl:Restriction ;
    owl:onProperty ec:hasAgentLanguage ;
    owl:allValuesFrom ec:Language
  ], [
    a owl:Restriction ;
    owl:onProperty ec:hasAgentMember ;
    owl:allValuesFrom ec:Agent
  ], [
    a owl:Restriction ;
    owl:onProperty ec:hasAgentNationality ;
    owl:allValuesFrom ec:CountryCode
  ], [
    a owl:Restriction ;
    owl:onProperty ec:hasAgentPlaceOfResidence ;
    owl:allValuesFrom ec:Location
  ], [
    a owl:Restriction ;
    owl:onProperty ec:hasAssociatedArtefact ;
    owl:allValuesFrom ec:Artefact
  ], [
    a owl:Restriction ;
    owl:onProperty ec:hasCharacter ;
    owl:allValuesFrom ec:Character
  ], [
    a owl:Restriction ;
    owl:onProperty ec:hasContact ;
    owl:allValuesFrom ec:Contact
  ], [
    a owl:Restriction ;
    owl:onProperty ec:hasGroupMember ;
    owl:allValuesFrom ec:Agent
  ], [
    a owl:Restriction ;
    owl:onProperty ec:hasIdentifier ;
    owl:allValuesFrom ec:Identifier
  ], [
    a owl:Restriction ;
    owl:onProperty ec:hasObjectType ;
    owl:allValuesFrom skos:Concept
  ], [
    a owl:Restriction ;
    owl:onProperty ec:hasRelatedAgent ;
    owl:allValuesFrom ec:Agent
  ], [
    a owl:Restriction ;
    owl:onProperty ec:hasRelatedPicture ;
    owl:allValuesFrom ec:Picture
  ], [
    a owl:Restriction ;
    owl:onProperty ec:holdsAward ;
    owl:allValuesFrom ec:Award
  ], [
    a owl:Restriction ;
    owl:onProperty ec:agentDbpedia ;
    owl:allValuesFrom xsd:anyURI
  ], [
    a owl:Restriction ;
    owl:onProperty ec:agentEmailAddress ;
    owl:allValuesFrom xsd:string
  ], [
    a owl:Restriction ;
    owl:onProperty ec:agentFacebook ;
    owl:allValuesFrom xsd:anyURI
  ], [
    a owl:Restriction ;
    owl:onProperty ec:agentFee ;
    owl:allValuesFrom rdfs:Literal
  ], [
    a owl:Restriction ;
    owl:onProperty ec:agentFlickr ;
    owl:allValuesFrom xsd:anyURI
  ], [
    a owl:Restriction ;
    owl:onProperty ec:agentImdb ;
    owl:allValuesFrom xsd:anyURI
  ], [
    a owl:Restriction ;
    owl:onProperty ec:agentInstagram ;
    owl:allValuesFrom xsd:anyURI
  ], [
    a owl:Restriction ;
    owl:onProperty ec:agentLinkedData ;
    owl:allValuesFrom xsd:anyURI
  ], [
    a owl:Restriction ;
    owl:onProperty ec:agentLinkedIn ;
    owl:allValuesFrom xsd:anyURI
  ], [
    a owl:Restriction ;
    owl:onProperty ec:agentMobileTelephoneNumber ;
    owl:allValuesFrom xsd:string
  ], [
    a owl:Restriction ;
    owl:onProperty ec:agentPreviousName ;
    owl:allValuesFrom rdfs:Literal
  ], [
    a owl:Restriction ;
    owl:onProperty ec:agentRelatedInformationLink ;
    owl:allValuesFrom xsd:anyURI
  ], [
    a owl:Restriction ;
    owl:onProperty ec:agentRelatedLink ;
    owl:allValuesFrom xsd:anyURI
  ], [
    a owl:Restriction ;
    owl:onProperty ec:agentRelatedPressLink ;
    owl:allValuesFrom xsd:anyURI
  ], [
    a owl:Restriction ;
    owl:onProperty ec:agentSocialMedia ;
    owl:allValuesFrom xsd:anyURI
  ], [
    a owl:Restriction ;
    owl:onProperty ec:agentTelephoneNumber ;
    owl:allValuesFrom xsd:string
  ], [
    a owl:Restriction ;
    owl:onProperty ec:agentTwitter ;
    owl:allValuesFrom xsd:anyURI
  ], [
    a owl:Restriction ;
    owl:onProperty ec:agentWebHomepage ;
    owl:allValuesFrom xsd:anyURI
  ], [
    a owl:Restriction ;
    owl:onProperty ec:agentWikidata ;
    owl:allValuesFrom xsd:anyURI
  ], [
    a owl:Restriction ;
    owl:onProperty ec:agentWikipedia ;
    owl:allValuesFrom xsd:anyURI
  ], [
    a owl:Restriction ;
    owl:onProperty ec:description ;
    owl:allValuesFrom rdfs:Literal
  ], [
    a owl:Restriction ;
    owl:onProperty ec:name ;
    owl:allValuesFrom rdfs:Literal
  ], [
    a owl:Restriction ;
    owl:onProperty ec:nickName ;
    owl:allValuesFrom rdfs:Literal
  ], [
    a owl:Restriction ;
    owl:onProperty ec:displayOrder ;
    owl:maxCardinality "1"^^xsd:nonNegativeInteger
  ] ;
  dcterms:description "An «Agent» is either a Contact/Person or Organisation to which is associated a Role corresponding to the contribution the «Agent» brings to the realisation of a MediaResource or EditorialObject."@en ;
  rdfs:label "Agent"@en ;
  skos:definition "an entity performing an activity in the media business"@en ;
  skos:example """- a film director
- a camera woman
- a sound engineer
- an actress
- an author
- a publishing media enterprise
- a content providing enterprise
- a distribution network enterprise
- a consumption device manufacturing enterprise"""@en .

