ποΈ4.3.2 Perspectivisation Competency Questions
Competency questions and SPARQL queries about second level modelling.
PREFIX youth: <http://www.semanticweb.org/ontologies/2024/YOUTH/>
PREFIX persp: <http://www.ontologydesignpatterns.org/ont/persp/perspectivisation.owl#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX xml: <http://www.w3.org/XML/1998/namespace>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>Which indivuduals have an external viewpoint regarding a specific youth subculture?
SELECT ?people
WHERE {
?people youth:hasPerceptionOf youth:skaters .
}Which individuals have a negative attitude towards the punks subculture?
SELECT ?person
WHERE {
?person youth:hasAttitude youth:NegativeAttitude .
?person youth:hasPerceptionOf youth:punks .
}What factors contribute to negative attitudes toward the skaters subculture?
What factors contribute to positive attitudes toward a specific subculture?
What are the outcoming interpretations of the process of perspectivization on a specific youth subculture?
What are the attitudes held by participants in the skaters subculture?
Last updated