mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-09 23:02:13 -05:00
11 lines
368 B
Python
11 lines
368 B
Python
complaint_count_request = {
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"description": "complaint count request schema",
|
|
"type": "object",
|
|
"title": "Complaint count request",
|
|
"properties": {
|
|
"start_date": {"type": ["string", "null"], "format": "date"},
|
|
"end_date": {"type": ["string", "null"], "format": "date"},
|
|
},
|
|
}
|