Klaviyo · Schema

SocialBlockV0

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
content_type string
type string
data object
View JSON Schema on GitHub

JSON Schema

klaviyo-socialblockv0-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SocialBlockV0",
  "title": "SocialBlockV0",
  "type": "object",
  "properties": {
    "content_type": {
      "type": "string",
      "enum": [
        "block"
      ]
    },
    "type": {
      "type": "string",
      "enum": [
        "social"
      ]
    },
    "data": {
      "nullable": true,
      "oneOf": [
        {
          "type": "integer"
        },
        {
          "type": "number"
        },
        {
          "type": "string"
        },
        {
          "type": "boolean"
        }
      ]
    }
  },
  "required": [
    "content_type",
    "type",
    "data"
  ]
}