{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateBrandingPhoneProviderRequestContent", "title": "CreateBrandingPhoneProviderRequestContent", "type": "object", "description": "Phone provider configuration schema", "additionalProperties": true, "required": [ "name", "credentials" ], "properties": { "name": { "$ref": "#/components/schemas/PhoneProviderNameEnum" }, "disabled": { "type": "boolean", "description": "Whether the provider is enabled (false) or disabled (true)." }, "configuration": { "$ref": "#/components/schemas/PhoneProviderConfiguration" }, "credentials": { "$ref": "#/components/schemas/PhoneProviderCredentials" } } }