blob: 72586cb5b13d20d51461f3d3b722e398aeba2cab [file] [log] [blame]
Nils Diewald8a6eafd2014-02-07 20:06:45 +00001{
2 "@context" : {
3 "korap" : "http://ids-mannheim.de/ns/KorAP/json-ld/v0.1/",
4 "query" : "korap:query",
5 "meta" : "korap:meta",
6 "collections" : {
7 "@id" : "korap:collections",
8 "@container" : "@list"
9 },
10 "token" : "korap:token/",
11 "distance" : "korap:distance/",
12 "boundary" : "korap:boundary/",
13 "group" : "korap:group/",
14 "span" : "korap:span/",
15 "term" : "korap:term/",
16 "termGroup" : "korap:termGroup/",
17 "wrap" : "token:wrap",
18 "operation" : {
19 "@id" : "group:operation/",
20 "@type" : "@id"
21 },
22 "class" : {
23 "@id" : "group:class",
24 "@type" : "xsd:integer"
25 },
26 "operands" : {
27 "@id" : "group:operands",
28 "@container" : "@list"
29 },
30 "frame" : {
31 "@id" : "group:frame/",
32 "@type" : "@id"
33 },
34 "classRef" : {
35 "@id" : "group:classRef",
36 "@type" : "xsd:integer"
37 },
38 "spanRef" : {
39 "@id" : "group:spanRef",
40 "@type" : "xsd:integer"
41 },
42 "classRefOp" : {
43 "@id" : "group:classRefOp",
44 "@type" : "@id"
45 },
46 "min" : {
47 "@id" : "boundary:min",
48 "@type" : "xsd:integer"
49 },
50 "max" : {
51 "@id" : "boundary:max",
52 "@type" : "xsd:integer"
53 },
54 "exclude" : {
55 "@id" : "group:exclude",
56 "@type" : "xsd:boolean"
57 },
58 "distances" : {
59 "@id" : "group:distances",
60 "@container" : "@list"
61 },
62 "inOrder" : {
63 "@id" : "group:inOrder",
64 "@type" : "xsd:boolean"
65 },
66 "exclude" : {
67 "@id" : "group:exclude",
68 "@type" : "xsd:boolean"
69 },
70 "key" : {
71 "@id" : "korap:key",
72 "@type" : "xsd:string"
73 },
74 "foundry" : {
75 "@id" : "korap:foundry",
76 "@type" : "xsd:string"
77 },
78 "layer" : {
79 "@id" : "korap:layer",
80 "@type" : "xsd:string"
81 },
82 "value" : {
83 "@id" : "korap:value",
84 "@type" : "xsd:string"
85 },
86 "caseInsensitive" : {
87 "@id" : "term:caseInsensitive",
88 "@type" : "xsd:boolean"
89 },
90 "type" : {
91 "@id" : "term:type/",
92 "@type" : "@id"
93 },
94 "match" : {
95 "@id" : "term:match/",
96 "@type" : "@id"
97 },
98 "relation" : {
99 "@id" : "korap:relation/",
100 "@type" : "@id"
101 }
102 },
103 "query": {
104 "@type": "korap:token",
105 "wrap": {
106 "@type": "korap:termGroup",
107 "relation": "relation:and",
108 "operands": [
109 {
110 "@type": "korap:termGroup",
111 "relation": "relation:or",
112 "operands": [
113 {
114 "@type": "korap:term",
Nils Diewaldc86aa482014-02-12 16:58:05 +0000115 "foundry": "mate",
116 "layer": "lemma",
Nils Diewald8a6eafd2014-02-07 20:06:45 +0000117 "key" : "bar"
118 },
119 {
120 "@type": "korap:term",
Nils Diewaldc86aa482014-02-12 16:58:05 +0000121 "foundry": "mate",
122 "layer": "lemma",
Nils Diewald8a6eafd2014-02-07 20:06:45 +0000123 "key" : "foo"
124 }
125 ]
126 },
127 {
128 "@type": "korap:term",
129 "layer": "orth",
130 "key" : "foobar"
131 }
132 ]
133 }
134 }
135}