{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PaymentAccountHolder", "title": "PaymentAccountHolder", "type": "object", "properties": { "accountStatus": { "type": "string", "description": "The status of the account that is updated by the user through an application or an API.Endpoints:", "readOnly": true, "enum": [ "ACTIVE", "INACTIVE", "TO_BE_CLOSED", "CLOSED", "DELETED" ] }, "lastUpdated": { "type": "string", "description": "The date time the account information was last retrieved from the provider site and updated in the Yodlee system.
Endpoints:", "readOnly": true }, "accountName": { "type": "string", "description": "The account name as it appears at the site.
Endpoints:", "readOnly": true }, "accountType": { "type": "string", "description": "The type of account that is aggregated, i.e., savings, checking, charge, etc. The account type is derived based on the attributes of the account.
Endpoints:", "readOnly": true }, "profile": { "$ref": "#/components/schemas/AccountProfileDetail" }, "holder": { "type": "array", "description": "Holder details of the account.
Endpoints:
  • GET /partner/paymentProcessor/account/holder
  • ", "readOnly": true, "items": { "$ref": "#/components/schemas/AccountHolderData" } }, "id": { "type": "integer", "description": "The primary key of the account resource and the unique identifier for the account.

    Endpoints:", "format": "int64", "readOnly": true } } }