{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/checkout-shopper-input-schema.json", "title": "ShopperInput", "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" } } }