blob: b64ef299ac3016d0f5f82bdd06da6770f6947427 [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:group",
105 "operation": "operation:submatch",
106 "classRef": [0],
107 "operands": [
108 {
109 "@type": "korap:group",
110 "operation": "operation:sequence",
111 "operands": [
112 {
113 "@type": "korap:group",
114 "class": 0,
115 "operands": [
116 {
117 "@type": "korap:token",
118 "wrap": {
119 "@type": "korap:term",
120 "layer": "base",
121 "key" : "foo"
122 }
123 }
124 ]
125 },
126 {
127 "@type": "korap:token",
128 "wrap": {
129 "@type": "korap:term",
130 "layer": "orth",
131 "key" : "bar"
132 }
133 }
134 ]
135 }
136 ]
137 }
138}