Klaviyo · Schema

ReviewProductDTO

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
url string The URL of the product
name string The name of the product
image_url string The URL of the product image
external_id string The external ID of the product
View JSON Schema on GitHub

JSON Schema

klaviyo-reviewproductdto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReviewProductDTO",
  "title": "ReviewProductDTO",
  "type": "object",
  "properties": {
    "url": {
      "description": "The URL of the product",
      "type": "string",
      "example": "https://example.com/product/123"
    },
    "name": {
      "description": "The name of the product",
      "type": "string"
    },
    "image_url": {
      "description": "The URL of the product image",
      "type": "string",
      "example": "https://example.com/image.jpg",
      "nullable": true
    },
    "external_id": {
      "description": "The external ID of the product",
      "type": "string",
      "example": "123456789",
      "nullable": true
    }
  },
  "required": [
    "url",
    "name"
  ]
}