This repository has been archived by the owner on Nov 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
input.json
110 lines (110 loc) · 3.39 KB
/
input.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
{
"$ref": "#/definitions/ModelInput",
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"ISODate": {
"type": "string"
},
"Intensity": {
"enum": [
"mild",
"moderate",
"aggressive"
],
"type": "string"
},
"InterventionPeriod": {
"additionalProperties": false,
"properties": {
"caseIsolation": {
"$ref": "#/definitions/Intensity",
"description": "The level to which individuals with symptoms self-isolate."
},
"reductionPopulationContact": {
"description": "The estimated reduction in population contact resulting from\nall of the above interventions. Some models require this generalized\nparameter instead of the individual interventions.",
"type": "number"
},
"schoolClosure": {
"$ref": "#/definitions/Intensity",
"description": "The level of school closure in the region."
},
"socialDistancing": {
"$ref": "#/definitions/Intensity",
"description": "The level of social distancing in the region."
},
"startDate": {
"$ref": "#/definitions/ISODate",
"description": "An ISO-8601 string encoding the date that these interventions begin."
},
"voluntaryHomeQuarantine": {
"$ref": "#/definitions/Intensity",
"description": "The level to which entire households self-isolate when one member\nof the household has symptoms."
}
},
"required": [
"startDate",
"reductionPopulationContact"
],
"type": "object"
},
"ModelInput": {
"additionalProperties": false,
"description": "A generalized description of the input to an epidemiological model.",
"properties": {
"parameters": {
"$ref": "#/definitions/ModelParameters"
},
"region": {
"type": "string"
},
"subregion": {
"type": "string"
}
},
"required": [
"region",
"parameters"
],
"type": "object"
},
"ModelParameters": {
"additionalProperties": false,
"properties": {
"calibrationCaseCount": {
"description": "The total number of confirmed cases in the region before the calibration date.",
"type": "number"
},
"calibrationDate": {
"$ref": "#/definitions/ISODate",
"description": "An ISO-8601 string encoding the date of the most recent case data in the region."
},
"calibrationDeathCount": {
"description": "The total number of deaths in the region before the calibration date.",
"type": "number"
},
"interventionPeriods": {
"description": "A list of time periods, each with a different set of interventions.",
"items": {
"$ref": "#/definitions/InterventionPeriod"
},
"type": "array"
},
"r0": {
"description": "The assumed reproduction number for the virus. If this is null, then each\nmodel will use its own default value.",
"type": [
"number",
"null"
]
}
},
"required": [
"calibrationDate",
"calibrationCaseCount",
"calibrationDeathCount",
"r0",
"interventionPeriods"
],
"type": "object"
}
}
}