Rename to performance_dashboard

Fix totals to return totals for all time rather than for date range.
Added more test data
This commit is contained in:
Rebecca Law
2021-03-10 11:12:29 +00:00
parent b06850e611
commit 11d10d5293
13 changed files with 149 additions and 89 deletions

View File

@@ -0,0 +1,10 @@
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"},
}
}