@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 "Data about the consumption of content by a Consumer using a particular ConsumptionDevice. Represents all individual countable or noticeable actions by consumers during a consumptionEvent using a particular ConsumptionDevice, e.g. clicks, likes, comments, votes, tweets preferences, downloads... All ResonanceEvents are linked to a ConsumptionEvent and the associated Essence or EditorialObject. ResonanceEvents represent raw-data, that need to be aggregated (e.g. summed up). Such data can be seen as \"Big Data\" and require appropriate technology and techniques (e.g. processing algorithms).The aggregationof this data is a set of Resonance results."@en ;
  rdfs:label "Resonance event"@en ;
  skos:definition "a countable or noticeable consumption-related action by a Consumer during or after a 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 .

