{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Document", "title": "Document", "type": "object", "properties": { "accountID": { "type": "integer", "description": "The unique identifier for the account. The account ID to which the document is linked.

Applicable containers: bank, investment, creditCard, loan, insurance
", "format": "int64", "readOnly": true }, "lastUpdated": { "type": "string", "description": "Indicates the date and time the document was last updated.

Applicable containers: bank, investment, creditCard, loan, insurance
", "readOnly": true }, "formType": { "type": "string", "description": "Indicates the type of the tax form.

Applicable containers: bank, investment, creditCard, loan, insurance
", "readOnly": true }, "docType": { "type": "string", "description": "Indicates the type of the document.

Applicable containers: bank, investment, creditCard, loan, insurance
", "readOnly": true, "enum": [ "STMT", "TAX", "EBILL" ] }, "name": { "type": "string", "description": "Indicates the name of the document.

Applicable containers: bank, investment, creditCard, loan, insurance
", "readOnly": true }, "id": { "type": "string", "description": "The document's primary key and unique identifier.

Applicable containers: bank, investment, creditCard, loan, insurance
", "readOnly": true }, "source": { "type": "string", "description": "Indicates the source of the document download.

Applicable containers: bank, investment, creditCard, loan, insurance
", "readOnly": true }, "status": { "type": "string", "description": "Indicates the status of the document download.

Applicable containers: bank, investment, creditCard, loan, insurance
", "readOnly": true } } }