Add missing distributionManagement section to poms
[aai/search-data-service.git] / search-data-service-app / src / main / resources / json / schema / analyzer.schema.json
1 {
2   "$schema": "http://json-schema.org/draft-04/schema#",
3   "title": "Analyzer",
4   "description": "The analyzer aggregates a tokenizer and multiple filters to describe how an input stream should be indexed.",
5   "type": "object",
6   "properties": {
7     "name": {
8       "type": "string"
9     },
10     "description": {
11       "type": "string"
12     },
13     "behaviours": {
14       "type": "array",
15       "items": {
16         "type": "string"
17       }
18     },
19     "tokenizer": {
20       "type": "string"
21     },
22     "filters": {
23       "type": "array",
24       "items": {
25         "type": "string"
26       }
27     }
28   }
29 }