{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/recurring-recurring-details-result-schema.json", "title": "RecurringDetailsResult", "description": "RecurringDetailsResult schema from Adyen API", "type": "object", "properties": { "creationDate": { "description": "The date when the recurring details were created.", "format": "date-time", "type": "string" }, "details": { "description": "Payment details stored for recurring payments.", "items": { "$ref": "#/components/schemas/RecurringDetailWrapper" }, "type": "array" }, "lastKnownShopperEmail": { "description": "The most recent email for this shopper (if available).", "type": "string" }, "shopperReference": { "description": "The reference you use to uniquely identify the shopper (e.g. user ID or account ID).", "type": "string" } } }