mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-14 01:02:09 -05:00
9 lines
358 B
Python
9 lines
358 B
Python
|
|
get_inbound_sms_for_service_schema = {
|
||
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
||
|
|
"description": "schema for parameters allowed when searching for to field=",
|
||
|
|
"type": "object",
|
||
|
|
"properties": {
|
||
|
|
"phone_number": {"type": "string", "format": "phone_number"},
|
||
|
|
"limit": {"type": ["integer", "null"], "minimum": 1}
|
||
|
|
}
|
||
|
|
}
|