Klaviyo · Schema

RejectReasonOther

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
reason string reject reason is other
status_explanation string If review reject reason is other, we can provide further explanation
View JSON Schema on GitHub

JSON Schema

klaviyo-rejectreasonother-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RejectReasonOther",
  "title": "RejectReasonOther",
  "type": "object",
  "properties": {
    "reason": {
      "description": "reject reason is other",
      "type": "string",
      "enum": [
        "other"
      ]
    },
    "status_explanation": {
      "description": "If review reject reason is other, we can provide further explanation",
      "type": "string",
      "example": "This review is just really poorly detailed and there is another with the same content",
      "nullable": true
    }
  },
  "required": [
    "reason"
  ]
}