{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SMSDisclosureCustom", "title": "SMSDisclosureCustom", "type": "object", "properties": { "type": { "type": "string", "enum": [ "custom" ] }, "compliance_company_name": { "type": "string", "example": "[company name]", "default": "[company name]" }, "privacy_policy_url": { "type": "string", "example": "[link]", "default": "[link]" }, "terms_of_service_url": { "type": "string", "example": "[link]", "default": "[link]" }, "html": { "type": "string", "default": "" } }, "required": [ "type" ] }