Bolt · Schema

Partial Address Reference

CheckoutPaymentseCommerceOne-Click CheckoutShopper NetworkFraud Protection

Properties

Name Type Description
.tag string The type of address reference
postal_code string The postal code associated with the credit card billing address.
View JSON Schema on GitHub

JSON Schema

address-reference-partial.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.bolt.com/schemas/address-reference-partial",
  "title": "Partial Address Reference",
  "type": "object",
  "required": [
    ".tag",
    "postal_code"
  ],
  "properties": {
    ".tag": {
      "type": "string",
      "enum": [
        "partial"
      ],
      "description": "The type of address reference",
      "example": "partial",
      "x-order": 0
    },
    "postal_code": {
      "type": "string",
      "description": "The postal code associated with the credit card billing address.",
      "example": "94105",
      "x-order": 1
    }
  }
}