👁️4.3.2 Perspectivisation Competency Questions

Competency questions and SPARQL queries about second level modelling.

Based on the user story created by LLMs, we derived the following competency questions. These questions guided use in the creation of SPARQL queries, ensuring that the queries effectively address the specific informational needs identified during the scenario analysis.

N.B. The prefixes to be added to each query are the folowing ones.

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?

SPARQL Query:

SELECT ?people
WHERE {
 ?people  youth:hasPerceptionOf youth:skaters .
}

Which individuals have a negative attitude towards the punks subculture?

SPARQL Query:

SELECT ?person 

WHERE {
    ?person youth:hasAttitude youth:NegativeAttitude .
    ?person youth:hasPerceptionOf youth:punks .
}

What factors contribute to negative attitudes toward the skaters subculture?

SELECT  ?influence ?content
WHERE 
{ 
  youth:skaters youth:hasInfluencingFactors ?influence.
  ?influence youth:influences youth:NegativeAttitude.
  ?influence youth:hasContent ?content
}

What factors contribute to positive attitudes toward a specific subculture?

SELECT  ?influence ?content
WHERE 
{ 
  youth:skaters youth:hasInfluencingFactors ?influence.
  ?influence youth:influences youth:PositiveAttitude.
  ?influence youth:hasContent ?content
}

What are the outcoming interpretations of the process of perspectivization on a specific youth subculture?

SPARQL Query:

SELECT ?perspectiveShift ?content
WHERE {
  youth:skaters
               youth:hasPerspectiveShift ?perspectiveShift .
?perspectiveShift youth:hasContent ?content.
}

Which stereotypes are associated with the skaters subculture?

SPARQL Query:

SELECT ?stereotype 
WHERE {
  ?stereotype rdf:type youth:Stereotype .
  youth:skaters youth:triggersStereotype ?stereotype .
}

What are the attitudes held by participants in the skaters subculture?

SPARQL Query:

SELECT ?participant ?attitude
WHERE {
  youth:skaters youth:hasParticipant ?participant .
  ?participant youth:hasAttitude ?attitude .
}

These queries can help the researcher uncover insights into how youth subcultures are perceived and how their internal and external perspectives evolve and interact with societal influences.

To visualize the content of entities such as Ritual, FashionStyle,MusicGenre, Influence,PerspectiveShift you need to include the data property hasContent in the query.

ex: ?perspectiveShift youth:hasContent ?content

Last updated