Adyen · JSON Structure

Checkout Shopper Input Structure

ShopperInput schema from Adyen API

Type: object Properties: 3
PaymentsFinancial ServicesFintech

ShopperInput is a JSON Structure definition published by Adyen, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

billingAddress deliveryAddress personalDetails

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/checkout-shopper-input-structure.json",
  "description": "ShopperInput schema from Adyen API",
  "type": "object",
  "properties": {
    "billingAddress": {
      "description": "Specifies visibility of billing address fields.\n\nPermitted values:\n* editable\n* hidden\n* readOnly",
      "enum": [
        "editable",
        "hidden",
        "readOnly"
      ],
      "type": "string"
    },
    "deliveryAddress": {
      "description": "Specifies visibility of delivery address fields.\n\nPermitted values:\n* editable\n* hidden\n* readOnly",
      "enum": [
        "editable",
        "hidden",
        "readOnly"
      ],
      "type": "string"
    },
    "personalDetails": {
      "description": "Specifies visibility of personal details.\n\nPermitted values:\n* editable\n* hidden\n* readOnly",
      "enum": [
        "editable",
        "hidden",
        "readOnly"
      ],
      "type": "string"
    }
  },
  "name": "ShopperInput"
}