@prefix wev: . @prefix xsd: . @prefix rdf: . @prefix dcterms: . @prefix owl: . @prefix rdfs: . rdf:type owl:Ontology ; dcterms:title "Public event ontology"@en ; dcterms:created "2018-01-15"^^xsd:date ; dcterms:description "An ontology describing museum and library events, exhibitions and installations."@en . ###### classes ### wev:PublicEvent rdf:type owl:Class ; rdfs:label "PublicEvent"@en ; rdfs:comment "An attentable event."@en ; rdf:isDefinedBy . wev:Exhibition rdf:type owl:Class ; rdfs:subClassOf wev:PublicEvent ; rdfs:label "Exhibition"@en ; rdfs:comment "An organised presention and display of items."@en ; rdf:isDefinedBy . wev:EventFormat rdf:type owl:Class ; rdfs:label "EventFormat"@en ; rdfs:comment "What an attendee might expect from the structure of an event and the level of participation. For example tour, discussion, workshop or study day."@en ; rdf:isDefinedBy . wev:EventSeries rdf:type owl:Class ; rdfs:label "EventSeries"@en ; rdfs:comment "A brand of events that are related due to some special Wellcome Collection meaning."@en ; rdf:isDefinedBy . wev:Interpretation rdf:type owl:Class ; rdfs:label "Interpretation"@en ; rdfs:comment "The ways in which you will be able to access the content of an event. For example BSL, STT or AD"@en ; rdf:isDefinedBy . wev:Place rdf:type owl:Class ; rdfs:label "Place"@en ; rdfs:comment "A place that an event can be located. For example Reading room, Auditorium, Williams Lounge."@en ; rdf:isDefinedBy . wev:Audience rdf:type owl:Class ; rdfs:label "Audience"@en ; rdfs:comment "Who the event was designed for. For example schools, youth, researchers, experts."@en ; rdf:isDefinedBy . wev:Season rdf:type owl:Class ; rdfs:label "Season"@en ; rdfs:comment "A season of thematic content and events."@en ; rdf:isDefinedBy . wev:Programme rdf:type owl:Class ; rdfs:label "Programme"@en ; rdfs:comment "A programme of thematic content and events."@en ; rdf:isDefinedBy . wev:Exhibit rdf:type owl:Class ; rdfs:label "Exhibit"@en ; rdfs:comment "Display a work of art or item of interest in an art gallery or museum. Here the empahsis is on the story that is told by placing the work in the context of the exhibition."@en ; rdf:isDefinedBy . wev:EventSchedule rdf:type owl:Class ; rdfs:label "EventSchedule"@en ; rdfs:comment "A schedule for a series of public events."@en ; rdf:isDefinedBy . wev:Work rdf:type owl:Class ; rdfs:label "Work"@en ; rdfs:comment "A physically or digitally held work."@en ; rdf:isDefinedBy . #### object properties #### wev:eventFormat rdf:type owl:ObjectProperty ; rdfs:label "eventFormat"@en ; rdfs:comment "Relates an event to its format."@en ; rdfs:domain wev:PublicEvent ; rdfs:range wev:EventFormat ; rdf:isDefinedBy . wev:interpretations rdf:type owl:ObjectProperty ; rdfs:label "interpretations"@en ; rdfs:comment "Relates an event to its interpretations."@en ; rdfs:domain wev:PublicEvent ; rdfs:range wev:Interpretations ; rdf:isDefinedBy . wev:venues rdf:type owl:ObjectProperty ; rdfs:label "places"@en ; rdfs:comment "Relates an event to a venue."@en ; rdfs:domain wev:PublicEvent ; rdfs:range wev:Place ; rdf:isDefinedBy . wev:audience rdf:type owl:ObjectProperty ; rdfs:label "audience"@en ; rdfs:comment "Relates an event to its inteded audience."@en ; rdfs:domain wev:PublicEvent ; rdfs:range wev:Audience ; rdf:isDefinedBy . wev:eventSeries rdf:type owl:ObjectProperty ; rdfs:label "eventSeries"@en ; rdfs:comment "Relates an event to a branded series."@en ; rdfs:domain wev:PublicEvent ; rdfs:range wev:EventSeries ; rdf:isDefinedBy . wev:exhibitionSeries rdf:type owl:ObjectProperty ; rdfs:label "eventSeries"@en ; rdfs:comment "Relates an event to a branded series."@en ; rdfs:domain wev:PublicEvent ; rdfs:range wev:EventSeries ; rdf:isDefinedBy . wev:exhibits rdf:type owl:ObjectProperty ; rdfs:label "exhibits"@en ; rdfs:comment "Relates an exhibition to an exhibited work."@en ; rdfs:domain wev:Exhibition ; rdfs:range wev:Exhibit ; rdf:isDefinedBy . wev:exhibitedWork rdf:type owl:ObjectProperty ; rdfs:label "exhibitedWork"@en ; rdfs:comment "Relates an exhibit to the exhibited work."@en ; rdfs:domain wev:Exhibit ; rdfs:range wev:Work ; rdf:isDefinedBy . wev:schedules rdf:type owl:ObjectProperty ; rdfs:label "schedules"@en ; rdfs:comment "Relates an schedule to the public event it schedules."@en ; rdfs:domain wev:EventSchedule ; rdfs:range wev:PublicEvent ; rdf:isDefinedBy . wev:hasEvents rdf:type owl:ObjectProperty ; rdfs:label "hasEvents"@en ; rdfs:comment "Relates an exhibition to its associated public events."@en ; rdfs:domain wev:Exhibition ; rdfs:range wev:PublicEvent ; rdf:isDefinedBy . ####### data properties ##### wev:positionInEventSeries rdf:type owl:DatatypeProperty ; rdfs:label "positionInEventSeries"@en ; rdfs:comment "Indicates the position of the event in an event series."@en ; rdfs:domain wev:PublicEvent ; rdfs:range xsd:integer ; rdf:isDefinedBy . wev:positionInExhibitionSeries rdf:type owl:DatatypeProperty ; rdfs:label "positionInExhibitionSeries"@en ; rdfs:comment "Indicates the position of the exhibition in an exhibition series."@en ; rdfs:domain wev:Exhibition ; rdfs:range xsd:integer ; rdf:isDefinedBy . wev:level rdf:type owl:DatatypeProperty ; rdfs:label "level"@en ; rdfs:comment "The floor level of the venue."@en ; rdfs:domain wev:Place ; rdfs:range xsd:integer ; rdf:isDefinedBy .