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

ec:ResonanceEvent
  a owl:Class ;
  rdfs:subClassOf [
    a owl:Restriction ;
    owl:onProperty ec:references ;
    owl:someValuesFrom ec:ConsumptionEvent
  ], [
    a owl:Restriction ;
    owl:onProperty ec:references ;
    owl:someValuesFrom ec:EditorialObject
  ], [
    a owl:Restriction ;
    owl:onProperty ec:references ;
    owl:someValuesFrom ec:PublicationChannel
  ], [
    a owl:Restriction ;
    owl:onProperty ec:references ;
    owl:someValuesFrom ec:PublicationEvent
  ], [
    a owl:Restriction ;
    owl:onProperty ec:references ;
    owl:someValuesFrom ec:PublicationPlatform
  ], [
    a owl:Restriction ;
    owl:onProperty ec:references ;
    owl:someValuesFrom ec:PublicationService
  ], [
    a owl:Restriction ;
    owl:onProperty ec:hasAssociatedConsumer ;
    owl:allValuesFrom ec:Consumer
  ], [
    a owl:Restriction ;
    owl:onProperty ec:hasIdentifier ;
    owl:allValuesFrom ec:Identifier
  ], [
    a owl:Restriction ;
    owl:onProperty ec:hasLocator ;
    owl:allValuesFrom ec:Locator
  ], [
    a owl:Restriction ;
    owl:onProperty ec:description ;
    owl:allValuesFrom rdfs:Literal
  ], [
    a owl:Restriction ;
    owl:onProperty ec:name ;
    owl:allValuesFrom rdfs:Literal
  ] ;
  dcterms:description "A countable or noticeable consumption-related action by a consumer during or after a consumption, e.g. a click on \"play\" or on \"pause\", likes, comments, votes, tweets, preferences, downloads. Resonance events are linked by content consumption. They represent raw data that need to be aggregated (e.g., summed)."@en ;
  rdfs:label "Resonance event"@en ;
  skos:definition "a countable or noticeable consumption-related action by a ec:Consumer during or after a ec:ConsumptionEvent"@en ;
  skos:example """- turning off the TV set
- switching to another radio channel
- pausing the playback of a video from a VOD portal
- searching for content on a VOD portal
- liking, sharing or commenting a twitter post
- commenting a video on youtube
- calling the PSM's program hotline by phone to complain
- rating a radio show in the radio station's app"""@en .

