Bolt · Schema

profile

An account's identifying information.

CheckoutPaymentseCommerceOne-Click CheckoutShopper NetworkFraud Protection

Properties

Name Type Description
first_name string The given name of the person associated with this profile.
last_name string The last name of the person associated with this profile.
email string The email address asscoiated with this profile.
phone string The phone number associated with this profile.
View JSON Schema on GitHub

JSON Schema

profile.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.bolt.com/schemas/profile",
  "title": "profile",
  "type": "object",
  "description": "An account's identifying information.",
  "required": [
    "first_name",
    "last_name",
    "email"
  ],
  "properties": {
    "first_name": {
      "type": "string",
      "description": "The given name of the person associated with this profile.",
      "example": "Alice",
      "x-order": 1
    },
    "last_name": {
      "type": "string",
      "description": "The last name of the person associated with this profile.",
      "example": "Baker",
      "x-order": 2
    },
    "email": {
      "type": "string",
      "format": "email",
      "description": "The email address asscoiated with this profile.",
      "example": "[email protected]",
      "x-order": 3
    },
    "phone": {
      "type": "string",
      "format": "phone",
      "description": "The phone number associated with this profile.",
      "example": "+14155550199",
      "x-order": 4
    }
  }
}