{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UpdateBrandingPhoneProviderResponseContent", "title": "UpdateBrandingPhoneProviderResponseContent", "type": "object", "description": "Phone provider configuration schema", "additionalProperties": false, "required": [ "name", "credentials" ], "properties": { "id": { "type": "string", "minLength": 1, "maxLength": 255 }, "tenant": { "type": "string", "description": "The name of the tenant", "minLength": 1, "maxLength": 255 }, "name": { "$ref": "#/components/schemas/PhoneProviderNameEnum" }, "channel": { "$ref": "#/components/schemas/PhoneProviderChannelEnum" }, "disabled": { "type": "boolean", "description": "Whether the provider is enabled (false) or disabled (true)." }, "configuration": { "$ref": "#/components/schemas/PhoneProviderConfiguration" }, "created_at": { "type": "string", "description": "The provider's creation date and time in ISO 8601 format", "maxLength": 27, "format": "date-time" }, "updated_at": { "type": "string", "description": "The date and time of the last update to the provider in ISO 8601 format", "maxLength": 27, "format": "date-time" } } }