Files
notifications-api/app/performance_dashboard/performance_dashboard_schema.py
Kenneth Kehl 1ecb747c6d reformat
2023-08-29 14:54:30 -07:00

11 lines
386 B
Python

performance_dashboard_request = {
"$schema": "http://json-schema.org/draft-07/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"},
},
}