{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/RouteListNumberPatchResponse", "title": "RouteListNumberPatchResponse", "type": "object", "required": [ "phoneNumber", "numberStatus", "message" ], "properties": { "phoneNumber": { "type": "string", "example": "+2147891122", "description": "Phone Number whose status is being reported." }, "numberStatus": { "$ref": "#/components/schemas/NumberStatus", "description": "Status of the number. Possible values are `INVALID`, `DUPLICATE`, `DUPLICATE_IN_LIST`, or `UNAVAILABLE`." }, "message": { "type": "string", "example": "Invalid Number", "description": "Message of the number add status." } } }