-
Notifications
You must be signed in to change notification settings - Fork 1
/
competency-questions.txt
41 lines (30 loc) · 1010 Bytes
/
competency-questions.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
__author__ = "Ramona Kuehn"
__license__ = "MIT"
__version__ = "1.0."
__email__ = "[email protected]"
## DL QUERIES
# Competency Question Q1:
istInPosition value Anfang
# Competency Question Q2:
istInPosition value Anfang and (istRhetorischeGruppe value Betonungsfigur or istRhetorischeGruppe value Gedankenfigur)
## SPARQL QUERIES
# Competency question Q3
SELECT distinct ?figur
WHERE {
?figur ont:istRhetorischeGruppe ?gruppe .
?gruppe rdfs:label ?gruppenName .
?figur ont:istInPosition ?position .
?position ont:Name ?posName .
Filter (?gruppenName != "Tropenfigur" && ?gruppenName != "Konstruktionsfigur" && ?posName = "Anfang") }
# Competency question Q4
SELECT distinct ?figur
WHERE {
?figur ont:liegtImBereich ?bereich .
?bereich ont:Name ?nameBereich .
Filter (?nameBereich = "Wort" ) }
# Competency question Q5
SELECT distinct ?figur
WHERE {
?figur ont:wirdWeggelassen ?element .
?element ont:Name ?name .
Filter (?name = "Buchstabe" ) }