aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/resources/json/schema/filter.schema.json
blob: 6d1a030397dbbb388f079499b4494ecd1041b9ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "title": "Filter",
  "description": "Filters accept a stream of tokens from a tokenizer and apply additional rules, possibly producing additional tokens. ",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "configuration": {
      "type": "string"
    }
  }
}