{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PostSingleNumberReachObject", "title": "PostSingleNumberReachObject", "type": "object", "required": [ "phoneNumber", "enabled", "name" ], "properties": { "phoneNumber": { "type": "string", "example": "+17011558169", "description": "Personal phone number used as single Number Reach." }, "enabled": { "type": "boolean", "example": true, "description": "A flag to enable or disable single Number Reach." }, "name": { "type": "string", "example": "myNumber", "description": "Name of the single number reach phone number entry." }, "doNotForwardCallsEnabled": { "type": "boolean", "description": "If enabled, the call forwarding settings of provided phone Number will not be applied." }, "answerConfirmationEnabled": { "type": "boolean", "description": "If enabled, the call recepient will be prompted to press a key before being connected." } } }