Bolt · Schema

shopper-recognized-event-data

CheckoutPaymentseCommerceOne-Click CheckoutShopper NetworkFraud Protection

Properties

Name Type Description
email string Email associated with user.
source string Source of shopper recognized event
confidence string Confidence level of shopper recognized event
View JSON Schema on GitHub

JSON Schema

shopper-recognized-event-data.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.bolt.com/schemas/shopper-recognized-event-data",
  "title": "shopper-recognized-event-data",
  "type": "object",
  "required": [
    "email",
    "source",
    "confidence"
  ],
  "properties": {
    "email": {
      "type": "string",
      "description": "Email associated with user.",
      "example": "[email protected]"
    },
    "source": {
      "type": "string",
      "enum": [
        "unspecified",
        "login",
        "checkout",
        "merchant_api",
        "custom_rules"
      ],
      "description": "Source of shopper recognized event",
      "example": "login"
    },
    "confidence": {
      "type": "string",
      "enum": [
        "unspecified",
        "unverified",
        "verified"
      ],
      "description": "Confidence level of shopper recognized event",
      "example": "unverified"
    }
  }
}