@prefix : . @prefix cp: . @prefix dc: . @prefix owl: . @prefix rdf: . @prefix xml: . @prefix xsd: . @prefix rdfs: . @prefix activ: . @prefix provo: . @base . rdf:type owl:Ontology ; owl:versionIRI ; owl:imports ; cp:coversRequirements "What personal observations were produced by reflecting upon an activity being carried out?"@en ; rdfs:comment "The E&O pattern focuses on the engagement in an activity, and on the creation of an observation as result of a prompting."@en ; dc:title "Experience & Observation (E&O) Pattern"@en ; cp:relatedCPs ; rdfs:seeAlso "http://ontologydesignpatterns.org/wiki/Submissions:Experience_%26_Observation"@en ; cp:hasComponent ; cp:hasIntent "to represent the epistemological \"missing link\" between a cognitive activity, e.g. the interaction with a cultural object, and any evidence of the effects this activity has on the individuals that are engaged with it; what can collectively be considered as an experience."@en ; dc:creator ; cp:hasUnitTest """PREFIX : SELECT DISTINCT ?engagement ?activity WHERE { ?engagement :onActivity ?activity }"""@en ; cp:coversRequirements "Which activities performed by someone have prompted an observation from that person and which haven't?"@en ; cp:extractedFrom ; dc:creator ; cp:relatedCPs ; cp:coversRequirements "In what ways can one person be engaged in a single activity?"@en ; dc:creator ; cp:relatedCPs ; cp:scenarios """Charles Dickens wrote in his report on visiting a village near Carrara, Italy: \"It contains a beautiful little Theatre, newly built; and it is an interesting custom there, to form the chorus of labourers in the marble quarries, who are self-taught and sing by ear. I heard them in a comic opera, and in an act of “Norma;” and they acquitted themselves very well; unlike the common people of Italy generally, who (with some exceptions among the Neapolitans) sing vilely out of tune, and have very disagreeable singing voices.\" https://led.kmi.open.ac.uk/entity/lexp/1382364120 This passage describes: - the setting of an activity (description of the Theatre, interest in the village custom) - the activity (Dickens listening to the marble quarry labourers sing Norma) - observation on the activities themselves (critique on the chorus' singing performance) - observation on his engagement in that and prior activities (it was unlike what most Italians he had heard sing)"""@en ; cp:relatedCPs ; cp:hasUnitTest """PREFIX : PREFIX activ: SELECT DISTINCT ?observation WHERE { ?activity a activ:Activity ; :includes ?observation . ?observation a :Observation }"""@en ; cp:hasConsequences "It decomposes the lax notion of experience (e.g. through engaging in reading a book or incidentally hearing some music) into distinguishable elements that can be used in e.g. text annotation with greater precision than with a single named entity representing the experience."@en ; rdfs:comment """This content pattern (E&O) models the observation of experience as resulting from a direct engagement in an activity and reflected in an observation prompted from the person engaged in the activity. E&O represents an experience through its factual, cognitive, phenomenological and critical coordinates, which all lend themselves to further specialisation in the ontologies where the CP will be instantiated."""@en ; cp:hasUnitTest """PREFIX : PREFIX activ: SELECT DISTINCT ?activity WHERE { { ?activity a :Prompt } UNION { ?activity a activ:Activity ; :produced [ ] } }"""@en . ################################################################# # Annotation properties ################################################################# ### http://modellingdh.github.io/ont/odp/experience#exampleOfUse :exampleOfUse rdf:type owl:AnnotationProperty . ### http://purl.org/dc/terms/creator dc:creator rdf:type owl:AnnotationProperty . ### http://purl.org/dc/terms/description dc:description rdf:type owl:AnnotationProperty . ### http://purl.org/dc/terms/title dc:title rdf:type owl:AnnotationProperty . ################################################################# # Object Properties ################################################################# ### http://modellingdh.github.io/ont/odp/term/hasEngagement rdf:type owl:ObjectProperty ; owl:inverseOf ; rdfs:range ; rdfs:label "has engagement"@en . ### http://modellingdh.github.io/ont/odp/term/inActivity rdf:type owl:ObjectProperty ; rdfs:domain ; rdfs:range activ:Activity ; dc:description "what activity/ies are affecting or affected by a certain engagement"@en ; rdfs:comment "Connects an activity with the many possible ways to engage in it."@en ; rdfs:label "in activity"@en . ### http://modellingdh.github.io/ont/odp/term/includes rdf:type owl:ObjectProperty ; rdfs:domain activ:Activity ; rdfs:range ; dc:description "A relation of mereological nature that connects a given observation with the activity that originates them: it strengthens the argument that observations are always active processes from a cognitive standpoint, regardless of how conscious they may be."@en ; rdfs:comment "A standard mereological property from another content pattern may be used in lieu of this one and therefore aligned with it."@en ; rdfs:label "includes"@en . ### http://modellingdh.github.io/ont/odp/term/isEngagedIn rdf:type owl:ObjectProperty ; rdfs:domain ; rdfs:range ; dc:description "Because an activity may engage other participants than the one performing it, engagements are in general considered individual rather than collective, therefore each participants has their own engagement and only some of them will be conscious and/or documented."@en ; rdfs:label "engaged in"@en . ### http://modellingdh.github.io/ont/odp/term/isReflectedUponIn rdf:type owl:ObjectProperty ; owl:inverseOf ; rdfs:label "is reflected upon in"@en . ### http://modellingdh.github.io/ont/odp/term/isReflectionOn rdf:type owl:ObjectProperty ; rdfs:domain ; rdfs:range ; dc:description "Used to connect the subjective elements of an experience with the corresponding observation, which is extrapolated from the content being interacted with and in itself may not be including a critique."@en ; rdfs:label "is reflection on"@en . ### http://modellingdh.github.io/ont/odp/term/producedObservation rdf:type owl:ObjectProperty ; rdfs:range ; owl:propertyChainAxiom ( ) ; dc:description "This property can be used to denote that something is (even indirectly, not necessary through direct reflection) responsible for the existence of an observation."@en ; rdfs:label "produced observation"@en . ################################################################# # Classes ################################################################# ### http://modellingdh.github.io/ont/odp/term/Engagement rdf:type owl:Class ; dc:description "The product of a reflection upon an observation, which embodies subjective traits of an experience (Example: \"After reading this passage of 'To Kill a Mockingbird', I came to a clearer understanding of the many facets of social intolerance\")."@en ; rdfs:comment "This class is the core type of entities that represent a reification of one’s involvement in an activity. If, for example, the participant’s reason for their interaction was to write a review for a magazine, this will be encoded in instances of this class."@en ; rdfs:label "Engagement"@en . ### http://modellingdh.github.io/ont/odp/term/Observation rdf:type owl:Class ; dc:description "The product of an act of scrutiny which may or may not have been performed with a critical disposition (Example: \"My thoughts from reading this passage of 'To Kill a Mockingbird'\")."@en ; rdfs:comment "A disjointness or alignment between this class and in the Observation content pattern is plausible but subject to debate, hence will not be formalised herein."@en , """An engagement, depending on whether it is emotional, critical or of another nature, is a cognitive process which may or may not generate conscious output, which is represented by this type. Note that different engagements give rise to potentially different observations."""@en ; rdfs:label "Observation"@en . ### http://modellingdh.github.io/ont/odp/term/Prompting rdf:type owl:Class ; owl:equivalentClass [ owl:intersectionOf ( activ:Activity [ rdf:type owl:Restriction ; owl:onProperty ; owl:someValuesFrom ] ) ; rdf:type owl:Class ] ; rdfs:subClassOf ; :exampleOfUse """Active readers engaged in the discussion through forum treads and comments. Tthe social engagement is part of the experience, e.g. engaging in discussions with other readers after each issue. Thus, the prompting activity leading to the observation must be considered part of the reading activity. In this case, the observation is created within the frame of the activity, through a sub-activity prompting. Their structural similarity in clearly expressed by the mereological relation between the activity and the prompt within it. Example: An active reader r1 is engaged in an activity a1 which includes an observation o1 created through a prompting p1, sub activity of a1."""@en , """Passive readers exposed to comments from other readers. Tthe reading activity includes being exposed to other readers' observations and, therefore, an experience mediated by comments, votes, sponsorship and other types of social media feedback surrounding the content. In this case, the observation included in the activity is not the result of the activity itself. Example: A passive reader r1 is engaged in an activity a1 which includes an observation o1, the activity a1 and included observation o1 are reected in the observation o2 created through a prompting p1."""@en ; dc:description "Prompting is an ‘Activity’ leading to the generation of an Observation."@en ; rdfs:comment "The stimulus within an activity that causes an observation."@en ; rdfs:label "Prompting"@en . ### http://ontology.eil.utoronto.ca/icity/ActivitySpecification/Activity activ:Activity rdf:type owl:Class ; dc:description "An occurrence being led by an active - though not necessarily conscious - agent."@en ; rdfs:label "Activity"@en . ### http://www.ontologydesignpatterns.org/cp/owl/persons.owl#Person rdf:type owl:Class ; rdfs:label "Person"@en . ################################################################# # General axioms ################################################################# [ rdf:type owl:AllDisjointClasses ; owl:members ( activ:Activity ) ] . ### Generated by the OWL API (version 4.2.8.20170104-2310) https://github.com/owlcs/owlapi