Bolt · Schema

failed-event

CheckoutPaymentseCommerceOne-Click CheckoutShopper NetworkFraud Protection

Properties

Name Type Description
eventId string UUID of the event that failed
eventType string Type of the event that failed
errorMessage string error message processing payload
View JSON Schema on GitHub

JSON Schema

failed-event.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.bolt.com/schemas/failed-event",
  "title": "failed-event",
  "type": "object",
  "properties": {
    "eventId": {
      "type": "string",
      "description": "UUID of the event that failed",
      "example": "1234-5678-9012-3456"
    },
    "eventType": {
      "type": "string",
      "enum": [
        "update_cart",
        "cart_updated",
        "payment",
        "payment_completed"
      ],
      "description": "Type of the event that failed",
      "example": "cart_updated"
    },
    "errorMessage": {
      "type": "string",
      "description": "error message processing payload",
      "example": "Failed to unmarshal array"
    }
  }
}