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

11 lines
365 B
Python

platform_stats_request = {
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "platform stats request schema",
"type": "object",
"title": "Platform stats request",
"properties": {
"start_date": {"type": ["string", "null"], "format": "date"},
"end_date": {"type": ["string", "null"], "format": "date"},
},
}