{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ValidateNumbersPostRequest", "title": "ValidateNumbersPostRequest", "type": "object", "required": [ "phoneNumbers" ], "properties": { "phoneNumbers": { "type": "array", "items": { "type": "string" }, "description": "List of phone numbers that need to be added." } } }