{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateEmailProviderResponseContent", "title": "CreateEmailProviderResponseContent", "type": "object", "additionalProperties": false, "properties": { "name": { "type": "string", "description": "Name of the email provider. Can be `mailgun`, `mandrill`, `sendgrid`, `resend`, `ses`, `sparkpost`, `smtp`, `azure_cs`, `ms365`, or `custom`.", "default": "sendgrid" }, "enabled": { "type": "boolean", "description": "Whether the provider is enabled (true) or disabled (false).", "default": true }, "default_from_address": { "type": "string", "description": "Email address to use as \"from\" when no other address specified." }, "credentials": { "$ref": "#/components/schemas/EmailProviderCredentials" }, "settings": { "$ref": "#/components/schemas/EmailProviderSettings" } } }