Bolt · Schema

profile-creation-data

CheckoutPaymentseCommerceOne-Click CheckoutShopper NetworkFraud Protection
View JSON Schema on GitHub

JSON Schema

profile-creation-data.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.bolt.com/schemas/profile-creation-data",
  "title": "profile-creation-data",
  "allOf": [
    {
      "type": "object",
      "required": [
        "create_account"
      ],
      "properties": {
        "create_account": {
          "type": "boolean",
          "description": "Whether or not an account should be created.",
          "example": true
        }
      }
    },
    {
      "$ref": "#/components/schemas/profile"
    }
  ]
}