Klaviyo · Schema

CatalogVariantDeleteJobCreateQueryResourceObject

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
type object
attributes object
View JSON Schema on GitHub

JSON Schema

klaviyo-catalogvariantdeletejobcreatequeryresourceobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CatalogVariantDeleteJobCreateQueryResourceObject",
  "title": "CatalogVariantDeleteJobCreateQueryResourceObject",
  "type": "object",
  "properties": {
    "type": {
      "$ref": "#/components/schemas/CatalogVariantBulkDeleteJobEnum"
    },
    "attributes": {
      "type": "object",
      "properties": {
        "variants": {
          "description": "Array of catalog variants to delete.",
          "type": "object",
          "properties": {
            "data": {
              "type": "array",
              "items": {
                "$ref": "#/components/schemas/CatalogVariantDeleteQueryResourceObject"
              }
            }
          },
          "required": [
            "data"
          ]
        }
      },
      "required": [
        "variants"
      ]
    }
  },
  "required": [
    "type",
    "attributes"
  ]
}