mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-20 15:31:15 -05:00
Allow the free SMS fragment limit to be 0
This updates the schema so that the free allowance has a minimum value of 0 instead of 1.
This commit is contained in:
@@ -6,7 +6,7 @@ create_or_update_free_sms_fragment_limit_schema = {
|
||||
"type": "object",
|
||||
"title": "Create",
|
||||
"properties": {
|
||||
"free_sms_fragment_limit": {"type": "integer", "minimum": 1},
|
||||
"free_sms_fragment_limit": {"type": "integer", "minimum": 0},
|
||||
},
|
||||
"required": ["free_sms_fragment_limit"]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user