Files
notifications-api/app/performance_dashboard/performance_dashboard_schema.py
T

11 lines
386 B
Python
Raw Normal View History

2021-03-10 11:12:29 +00:00
performance_dashboard_request = {
2022-04-08 17:05:59 +01:00
"$schema": "http://json-schema.org/draft-07/schema#",
2021-03-10 11:12:29 +00:00
"description": "Performance dashboard request schema",
"type": "object",
2021-03-10 11:12:29 +00:00
"title": "Performance dashboard request",
"properties": {
"start_date": {"type": ["string", "null"], "format": "date"},
"end_date": {"type": ["string", "null"], "format": "date"},
2023-08-29 14:54:30 -07:00
},
}