Adyen · Schema
PaymentInstrument
PaymentInstrument schema from Adyen API
PaymentsFinancial ServicesFintech
Properties
| Name | Type | Description |
|---|---|---|
| description | string | The description of the resource. |
| id | string | The unique identifier of the resource. |
| reference | string | The reference for the resource. |
| tokenType | string | The type of wallet the network token is associated with. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/transfer-webhooks-payment-instrument-schema.json",
"title": "PaymentInstrument",
"description": "PaymentInstrument schema from Adyen API",
"type": "object",
"properties": {
"description": {
"description": "The description of the resource.",
"type": "string"
},
"id": {
"description": "The unique identifier of the resource.",
"type": "string"
},
"reference": {
"description": "The reference for the resource.",
"type": "string"
},
"tokenType": {
"x-addedInVersion": "3",
"description": "The type of wallet the network token is associated with.",
"type": "string"
}
}
}