Unbounce · Schema

Unbounce Lead

Representation of a single lead entity.

Landing PagesConversion Rate OptimizationMarketingA/B TestingLead GenerationMarketing Automation

Properties

Name Type Description
created_at string RFC 5322, section 3.4.1, compliant date, which means formatted with: yyyy-MM-dd'T'HH:mm:ss.SSS'Z'
id string
extra_data object
form_data object
metadata object
page_id string
submitter_ip string
variant_id string
View JSON Schema on GitHub

JSON Schema

unbounce-lead.json Raw ↑
{
  "$schema" : "http://json-schema.org/draft-04/schema#",
  "description" : "Representation of a single lead entity.",
  "type" : "object",
  "additionalProperties" : false,
  "required" : [ "created_at", "id", "extra_data", "form_data", "metadata", "page_id", "submitter_ip", "variant_id" ],
  "properties" : {
    "created_at" : {
      "title" : "Generic Date",
      "description" : "RFC 5322, section 3.4.1, compliant date, which means formatted with: yyyy-MM-dd'T'HH:mm:ss.SSS'Z'",
      "type" : "string",
      "format" : "date-time"
    },
    "id" : {
      "type" : "string"
    },
    "extra_data" : {
      "type" : "object",
      "additionalProperties" : false,
      "properties" : {
        "rapleaf" : {
          "type" : "object"
        },
        "cookies" : {
          "type" : "object"
        },
        "request_id" : {
          "type" : "string"
        },
        "created_by" : {
          "type" : "string",
          "enum" : [ "api" ]
        }
      }
    },
    "form_data" : {
      "type" : "object"
    },
    "metadata" : {
      "type" : "object",
      "allOf" : [ {
        "title" : "Entity Metadata",
        "type" : "object",
        "required" : [ "location", "documentation" ],
        "properties" : {
          "location" : {
            "type" : "string",
            "format" : "uri"
          },
          "documentation" : {
            "type" : "string",
            "format" : "uri"
          },
          "related" : {
            "type" : "object"
          }
        }
      }, {
        "type" : "object",
        "required" : [ "related" ],
        "properties" : {
          "related" : {
            "type" : "object",
            "additionalProperties" : false,
            "required" : [ "page", "sub_account" ],
            "properties" : {
              "page" : {
                "type" : "string",
                "format" : "uri"
              },
              "sub_account" : {
                "type" : "string",
                "format" : "uri"
              }
            }
          }
        }
      } ]
    },
    "page_id" : {
      "type" : "string"
    },
    "submitter_ip" : {
      "type" : "string"
    },
    "variant_id" : {
      "type" : "string"
    }
  }
}