-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathschema_state_forms.json
93 lines (93 loc) · 2.22 KB
/
schema_state_forms.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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "State forms",
"description": "States info",
"type": "array",
"items": {
"type": "object",
"properties": {
"state_form": {
"type": "string",
"description": "State id as form year and quarter"
},
"status_id": {
"type": "string",
"description": "ID of the current status"
},
"status_modified_by": {
"type": "string",
"description": "The user who last changed the status of the form"
},
"state_id": {
"type": "string",
"description": "State abbreviation"
},
"form": {
"type": "string",
"description": "Form ID"
},
"program_code": {
"type": "string",
"description": "Program code"
},
"year": {
"type": "number",
"description": "Year of form"
},
"quarter": {
"type": "number",
"description": "Quarter (1,2,3, or 4)"
},
"validation_percent": {
"type": "number",
"description": "Percentage complete (.03)"
},
"status": {
"type": "string",
"description": "Form status"
},
"status_date": {
"type": "string",
"description": "Date of last status change"
},
"not_applicable": {
"type": "boolean",
"description": "true or false; default to false"
},
"last_modified": {
"type": "string",
"description": "Last form modification date"
},
"last_modified_by": {
"type": "string",
"description": "The user who last edited form"
},
"created_date": {
"type": "string",
"description": "Date/Time item was added to DB"
},
"created_by": {
"type": "string",
"description": "User that added item to DB"
}
},
"required": [
"state_form",
"state_id",
"status_modified_by",
"status_id",
"form",
"program_code",
"year",
"quarter",
"validation_percent",
"status",
"status_date",
"not_applicable",
"last_modified",
"last_modified_by",
"created_date",
"created_by"
]
}
}