Files
notifications-api/app/performance_dashboard/performance_dashboard_schema.py
Rebecca Law 11d10d5293 Rename to performance_dashboard
Fix totals to return totals for all time rather than for date range.
Added more test data
2021-03-10 13:16:25 +00:00

11 lines
385 B
Python

performance_dashboard_request = {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Performance dashboard request schema",
"type": "object",
"title": "Performance dashboard request",
"properties": {
"start_date": {"type": ["string", "null"], "format": "date"},
"end_date": {"type": ["string", "null"], "format": "date"},
}
}