-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathschema.json
More file actions
44 lines (44 loc) · 1.05 KB
/
schema.json
File metadata and controls
44 lines (44 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "test/spec",
"$ref": "#/$defs/Spec",
"$defs": {
"Spec": {
"properties": {
"table_options": {
"$ref": "#/$defs/TableOptions",
"description": "TableOptions is a set of options to override the defaults for certain tables."
}
},
"additionalProperties": false,
"type": "object"
},
"TableOptions": {
"properties": {
"dummy": {
"oneOf": [
{
"$ref": "#/$defs/DummyTableOptions",
"description": "Options for the dummy table."
},
{
"type": "null"
}
]
}
},
"additionalProperties": false,
"type": "object"
},
"DummyTableOptions": {
"properties": {
"filter": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object",
"description": "DummyTableOptions contains configuration for the dummy table"
}
}
}