You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/hub_predtimechart/ptc_schema.py
+9-1Lines changed: 9 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -35,10 +35,18 @@
35
35
}
36
36
},
37
37
"disclaimer": {
38
-
"description": "text providing any important information users should know",
38
+
"description": "optional text providing any important information users should know",
39
39
"type": "string",
40
40
"minLength": 1
41
41
},
42
+
"initial_xaxis_range": {
43
+
"description": "`array` of two dates in 'YYYY-MM-DD' format that specify the initial xaxis range to use. To not initialize the range, pass `null` for its value",
44
+
"type": ["array", "null"],
45
+
"minItems": 2,
46
+
"maxItems": 2,
47
+
"uniqueItems": True,
48
+
"items": {"type": "string", "format": "date"}
49
+
},
42
50
"task_id_text": {
43
51
"description": "optional mapping of predtimechart task id values to text. keys are task_ids and values are an object whose keys are ptc task_id `value`s and values are ptc task_id `text`s",
0 commit comments