We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5b22683 + f95f9aa commit a496089Copy full SHA for a496089
src/helpers/schemas/config.schema.json
@@ -0,0 +1,26 @@
1
+{
2
+ "$id": "csv-config",
3
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
4
+ "description": "Schema for CSV config files. TODO: Fill out the rest of this schema will all config properties",
5
+ "type": "object",
6
+ "properties": {
7
+ "extractors": {
8
+ "type": "array",
9
+ "items": {
10
+ "$ref": "#/$defs/extractor"
11
+ }
12
13
+ },
14
+ "$defs": {
15
+ "extractor": {
16
17
18
+ "type": {
19
+ "type": "string"
20
21
22
+ "required": ["type"]
23
24
25
+ "required": ["extractors"]
26
+}
0 commit comments