mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-10 15:22:24 -05:00
11 lines
365 B
Python
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"},
|
|
},
|
|
}
|