Files
notifications-api/app/complaint/complaint_schema.py
T

11 lines
368 B
Python
Raw Normal View History

complaint_count_request = {
2022-04-08 17:05:59 +01:00
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "complaint count request schema",
"type": "object",
"title": "Complaint count request",
"properties": {
2018-06-12 12:10:58 +01:00
"start_date": {"type": ["string", "null"], "format": "date"},
"end_date": {"type": ["string", "null"], "format": "date"},
2023-08-29 14:54:30 -07:00
},
}