File tree 2 files changed +19
-0
lines changed
2 files changed +19
-0
lines changed Original file line number Diff line number Diff line change 18
18
"title" : " Corpora" ,
19
19
"description" : " Lists all the corpora currently available in the LiLa Knowledge Base" ,
20
20
"file" : " corpora.rq"
21
+ },
22
+ {
23
+ "title" : " LiLa ontology - Inflection tagset" ,
24
+ "description" : " Get inflection tagset of LiLa ontology" ,
25
+ "file" : " flCat.rq"
21
26
},
22
27
{
23
28
"title" : " Lewis & Short Dictionary" ,
Original file line number Diff line number Diff line change
1
+ PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
2
+ PREFIX lila: <http://lila-erc.eu/ontologies/lila/>
3
+ PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
4
+
5
+ # Get inflection tagset of LiLa ontology
6
+
7
+ SELECT * WHERE {
8
+ ?type rdfs:subClassOf lila:InflectionType.
9
+ ?inflClass rdfs:subClassOf ?type .
10
+ ?inflType rdf:type ?inflClass ;
11
+ rdfs:label ?inflTypeLabel .
12
+ }
13
+ order by ?type ?inflClass ?inflType
14
+
You can’t perform that action at this time.
0 commit comments