-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathschema_21E.json
76 lines (76 loc) · 1.77 KB
/
schema_21E.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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Schema 21E",
"description": "Form 21E status",
"type": "array",
"items": {
"type": "object",
"properties": {
"question": {
"type": "string",
"description": "Questions FULL id (example: 2021-21E-01)"
},
"form": {
"type": "string",
"description": "Form ID (example: 21E)"
},
"year": {
"type": "number",
"description": "Form year (example: 2021)"
},
"type": {
"type": "string",
"description": "Question type (example: datagridwithtotals)"
},
"row_total": {
"type": "boolean",
"description": "Should row totals be calculated"
},
"column_total": {
"type": "boolean",
"description": "Should columns totals be calculated"
},
"label": {
"type": "string",
"description": "Question label"
},
"rows": {
"type": "array",
"description": "Question rows",
"items": {
"type": "object"
}
},
"last_modified": {
"type": "string",
"description": "Date of last form modification"
},
"last_modified_by": {
"type": "string",
"description": "Last user to update form"
},
"created_date": {
"type": "string",
"description": "Date form was instantiated"
},
"created_by": {
"type": "string",
"description": "User who instantiated the form"
}
},
"required": [
"question",
"form",
"year",
"type",
"row_total",
"column_total",
"label",
"rows",
"last_modified",
"last_modified_by",
"created_date",
"created_by"
]
}
}