Bolt · Schema

Address ID Reference

CheckoutPaymentseCommerceOne-Click CheckoutShopper NetworkFraud Protection

Properties

Name Type Description
.tag string The type of address reference
id string The address's ID
View JSON Schema on GitHub

JSON Schema

address-reference-id.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.bolt.com/schemas/address-reference-id",
  "title": "Address ID Reference",
  "type": "object",
  "required": [
    ".tag",
    "id"
  ],
  "properties": {
    ".tag": {
      "type": "string",
      "enum": [
        "id"
      ],
      "description": "The type of address reference",
      "example": "id"
    },
    "id": {
      "type": "string",
      "format": "id",
      "description": "The address's ID",
      "example": "D4g3h5tBuVYK9"
    }
  }
}