{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PayPalAccountInstrument", "title": "PayPal Account Instrument", "type": "object", "properties": { "type": { "type": "string", "description": "Instrument type.", "enum": [ "stored_paypal_account" ] }, "token": { "type": "string", "description": "An identifier representing this stored instrument.", "example": "84596bea275fa254da820056bdc3e495bdf01fd11c51b0336347d447ee16200c" }, "is_default": { "type": "boolean", "description": "Identifies whether this stored instrument is default for the customer." }, "email": { "type": "string", "description": "PayPal email address.", "example": "bc-buyer-paypal-express@example.com" } }, "description": "A PayPal account stored instrument.", "x-internal": false }