-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvalidator-config-schema.json
More file actions
106 lines (106 loc) · 3.7 KB
/
validator-config-schema.json
File metadata and controls
106 lines (106 loc) · 3.7 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
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://github.com/erik1066/rapid-csv/validator-config-schema.json",
"title": "Validation Schema for CSV Files",
"description": "This is a schema for representing a JSON congifuration file for validation of CSV files.",
"type": "object",
"properties": {
"name": {
"description": "The name of this file",
"type": "string"
},
"description": {
"description": "The description of the file's contents",
"type": "string"
},
"has_header": {
"description": "Whether this file has a header row",
"type": "boolean"
},
"separator": {
"description": "The separator character to use. For example, a comma or a semicolon. If left null or given a value of length greater than 1, this will tell the validator to try and infer the separator character. Inferring the separator is impossible to do with 100% accuracy without a significant performance penalty, so specifying the separator is highly recommended.",
"type": "string"
},
"columns": {
"description": "The column definitions for this CSV file",
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"description": {
"type": [
"string",
"null"
]
},
"ordinal": {
"type": "integer"
},
"type": {
"type": "enum",
"enum": [
"string",
"enum",
"integer",
"decimal",
"boolean"
]
},
"values": {
"type": [
"array",
"null"
],
"uniqueItems": true,
"maxnItems": 100,
"items": {
"type": "string"
}
},
"are_values_case_sensitive": {
"type": "boolean"
},
"values_url": {
"type": [
"string",
"null"
]
},
"max": {
"type": [
"integer",
"null"
]
},
"min": {
"type": [
"integer",
"null"
]
},
"required": {
"type": "boolean"
},
"null_or_empty": {
"type": "boolean"
},
"format": {
"type": [
"string",
"null"
]
},
"regex": {
"type": [
"string",
"null"
]
}
}
}
}
}
}