{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CallerIdSettingsGet", "title": "CallerIdSettingsGet", "type": "object", "description": "Response object for the caller ID settings.", "example": { "callingLineIdDeliveryBlockingEnabled": false, "connectedLineIdentificationRestrictionEnabled": false }, "required": [ "callingLineIdDeliveryBlockingEnabled", "connectedLineIdentificationRestrictionEnabled" ], "properties": { "callingLineIdDeliveryBlockingEnabled": { "type": "boolean", "example": true, "description": "If `true`, the user's name and phone number are not shown to people they call." }, "connectedLineIdentificationRestrictionEnabled": { "type": "boolean", "description": "If `true`, the user's name and phone number are not shown when receiving a call." } } }