Bolt · Schema

error

CheckoutPaymentseCommerceOne-Click CheckoutShopper NetworkFraud Protection

Properties

Name Type Description
.tag string The type of error returned
message string A human-readable error message, which might include information specific to the request that was made.
View JSON Schema on GitHub

JSON Schema

error.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.bolt.com/schemas/error",
  "title": "error",
  "type": "object",
  "required": [
    ".tag",
    "message"
  ],
  "properties": {
    ".tag": {
      "type": "string",
      "enum": [
        "unauthorized",
        "forbidden",
        "unprocessable_request",
        "not_found"
      ],
      "description": "The type of error returned",
      "example": "unprocessable_request"
    },
    "message": {
      "type": "string",
      "description": "A human-readable error message, which might include information specific to the request that was made.",
      "example": "We were unable to process your request."
    }
  }
}