Adyen · Schema

StoredDetails

StoredDetails schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
bank object The stored bank account.
card object The stored card information.
emailAddress string The email associated with stored payment details.
View JSON Schema on GitHub

JSON Schema

checkout-stored-details-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/checkout-stored-details-schema.json",
  "title": "StoredDetails",
  "description": "StoredDetails schema from Adyen API",
  "type": "object",
  "properties": {
    "bank": {
      "description": "The stored bank account.",
      "$ref": "#/components/schemas/BankAccount"
    },
    "card": {
      "description": "The stored card information.",
      "$ref": "#/components/schemas/Card"
    },
    "emailAddress": {
      "description": "The email associated with stored payment details.",
      "type": "string"
    }
  }
}