|
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
The *key* is added to the response and may be used to distinguish between multiple lists, and should therefore be unique. The response will contain three lists: prefixes strictly used for single position tokens, prefixes (also) used for multiple position tokens and prefixes used for multiple non adjacent positions. Notice that the last list will always be a subset of the second list.
## Examples
1. [Basic](#basic) : list of available prefixes.
<a name="basic"></a>
### Basic
**Example**
List of avilable prefixes.
**Request and response**
`q=*%3A*&mtas=true&mtas.prefix=true&mtas.prefix.0.field=text&mtas.prefix.0.key=example+-+basic&rows=0&wt=json&indent=true`
``` json
"mtas":{
"prefix":[{
"key":"example - basic",
"singlePosition":["feat.buiging",
"feat.conjtype",
"feat.dial",
"feat.genus",
"feat.getal",
"feat.getal-n",
"feat.graad",
"feat.head",
"feat.lwtype",
"feat.naamval",
"feat.npagr",
"feat.ntype",
"feat.numtype",
"feat.pdtype",
"feat.persoon",
"feat.positie",
"feat.pvagr",
"feat.pvtijd",
"feat.spectype",
"feat.status",
"feat.vwtype",
"feat.vztype",
"feat.wvorm",
"lemma",
"morpheme",
"pos",
"t",
"t_lc"],
"multiplePosition":["div",
"entity",
"head",
"p",
"s"],
"setPosition":["entity"]}]}
```
|