This repository has been archived by the owner on Jul 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
report.json
192 lines (192 loc) · 5.11 KB
/
report.json
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
{
"title": "Goodtables Report",
"description": "The validation report generated by goodtables.",
"definitions": {},
"$schema": "http://json-schema.org/draft-06/schema#",
"$id": "http://example.com/example.json",
"type": "object",
"required": [
"time",
"valid",
"error-count",
"table-count",
"preset",
"warnings"
],
"properties": {
"time": {
"type": "number",
"title": "Time",
"description": "The overall time it took to run all checks.",
"minimum": 0
},
"valid": {
"type": "boolean",
"title": "Valid",
"description": "The end-result of validating all tables."
},
"error-count": {
"type": "integer",
"title": "Error count",
"description": "Number of errors found across all tables.",
"minimum": 0
},
"table-count": {
"type": "integer",
"title": "Table count",
"description": "Number of tables validated.",
"minimum": 0
},
"warnings": {
"type": "array",
"title": "Warnings",
"items": {
"type": "string",
"title": "Warning",
"examples": [
"Table \"data.csv\" inspector has reached 10 error(s) limit"
]
}
},
"preset": {
"type": "string",
"title": "Preset",
"description": "The preset of the dataset to be validated.",
"examples": [
"table",
"datapackage",
"nested"
]
},
"tables": {
"type": "array",
"title": "Tables",
"description": "The validation results for each of the tables.",
"items": {
"type": "object",
"required": [
"time",
"valid",
"error-count",
"row-count",
"headers",
"errors"
],
"properties": {
"time": {
"type": "number",
"title": "Time",
"description": "The time it took to validate this table.",
"minimum": 0
},
"valid": {
"type": "boolean",
"title": "Valid",
"description": "The validation result."
},
"error-count": {
"type": "integer",
"title": "Error count",
"description": "Number of errors found.",
"minimum": 0
},
"row-count": {
"type": "integer",
"title": "Row count",
"description": "Number of rows validated.",
"minimum": 0
},
"source": {
"type": ["string", "array"],
"title": "Source",
"description": "Path or URI where this table was loaded from."
},
"headers": {
"type": "array",
"title": "Headers",
"description": "List of table's headers.",
"items": {
"type": "string"
}
},
"scheme": {
"type": "string",
"title": "Scheme",
"description": "The scheme used to load the data.",
"examples": [
"http",
"ftp",
"file"
]
},
"format": {
"type": "string",
"title": "Format",
"description": "The data format.",
"examples": [
"csv",
"ods",
"xls"
]
},
"encoding": {
"type": "string",
"title": "Encoding",
"description": "The encoding of the table.",
"examples": [
"utf-8",
"iso-89951"
]
},
"schema": {
"type": "string",
"title": "Schema",
"description": "An explanation about the purpose of this instance.",
"examples": [
"table-schema"
]
},
"errors": {
"type": "array",
"title": "Errors",
"items": {
"type": "object",
"required": [
"code",
"message"
],
"properties": {
"code": {
"type": "string",
"title": "Code",
"description": "The error code.",
"examples": [
"duplicate-row",
"blank-header"
]
},
"row-number": {
"type": "integer",
"title": "Row number",
"description": "The number of the row where the error occurs.",
"minimum": 0
},
"column-number": {
"type": "integer",
"title": "Column number",
"description": "The number of the column where the error occurs.",
"minimum": 0
},
"message": {
"type": "string",
"title": "Message",
"description": "The error message."
}
}
}
}
}
}
}
}
}