Bolt · Schema

Explicit Address Reference

CheckoutPaymentseCommerceOne-Click CheckoutShopper NetworkFraud Protection

Properties

Name Type Description
.tag string The type of address reference
id string The address's unique identifier.
first_name string The first name of the person associated with this address.
last_name string The last name of the person associated with this address.
company string The company associated with this address.
street_address1 string The street address associated with this address.
street_address2 string Any additional, optional, street address information associated with this address.
locality string The locality (e.g. city, town, etc...) associated with this address.
postal_code string The postal code associated with this address.
region string The region or administrative area (e.g. state, province, county, etc...) associated with this address.
country_code object
email string The email address associated with this address.
phone string The phone number associated with this address.
View JSON Schema on GitHub

JSON Schema

address-reference-explicit.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.bolt.com/schemas/address-reference-explicit",
  "title": "Explicit Address Reference",
  "type": "object",
  "required": [
    ".tag",
    "first_name",
    "last_name",
    "street_address1",
    "locality",
    "postal_code",
    "country_code"
  ],
  "properties": {
    ".tag": {
      "type": "string",
      "enum": [
        "explicit"
      ],
      "description": "The type of address reference",
      "example": "explicit",
      "x-order": 0
    },
    "id": {
      "type": "string",
      "format": "id",
      "description": "The address's unique identifier.",
      "readOnly": true,
      "example": "D4g3h5tBuVYK9",
      "x-order": 1
    },
    "first_name": {
      "type": "string",
      "description": "The first name of the person associated with this address.",
      "example": "Alice",
      "x-order": 2
    },
    "last_name": {
      "type": "string",
      "description": "The last name of the person associated with this address.",
      "example": "Baker",
      "x-order": 3
    },
    "company": {
      "type": "string",
      "description": "The company associated with this address.",
      "example": "ACME Corporation",
      "x-order": 4
    },
    "street_address1": {
      "type": "string",
      "description": "The street address associated with this address.",
      "example": "535 Mission St, Ste 1401",
      "x-order": 5
    },
    "street_address2": {
      "type": "string",
      "description": "Any additional, optional, street address information associated with this address.",
      "example": "c/o Shipping Department",
      "x-order": 6
    },
    "locality": {
      "type": "string",
      "description": "The locality (e.g. city, town, etc...) associated with this address.",
      "example": "San Francisco",
      "x-order": 7
    },
    "postal_code": {
      "type": "string",
      "description": "The postal code associated with this address.",
      "example": "94105",
      "x-order": 8
    },
    "region": {
      "type": "string",
      "description": "The region or administrative area (e.g. state, province, county, etc...) associated with this address.",
      "example": "CA",
      "x-order": 9
    },
    "country_code": {
      "$ref": "#/components/schemas/country-code"
    },
    "email": {
      "type": "string",
      "format": "email",
      "description": "The email address associated with this address.",
      "example": "[email protected]",
      "x-order": 11
    },
    "phone": {
      "type": "string",
      "format": "phone",
      "description": "The phone number associated with this address.",
      "example": "+14155550199",
      "x-order": 12
    }
  }
}