Properties
| Name | Type | Description |
|---|---|---|
| original | string | Original transaction description as it appears at the FI site. |
| simple | string | The transaction description that appears at the FI site may not be self-explanatory, i.e., the source, purpose of the transaction may not be evident. Yodlee attempts to simplify and make the t |
| consumer | string | The description of the transaction as defined by the consumer. The consumer can define or provide more details of the transaction in this field. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/descriptions",
"title": "descriptions",
"properties": {
"original": {
"type": "string",
"description": "Original transaction description as it appears at the FI site."
},
"simple": {
"type": "string",
"description": "The transaction description that appears at the FI site may not be self-explanatory, i.e., the source, purpose of the transaction may not be evident. <br><br>Yodlee attempts to simplify and make the transaction meaningful to the consumer, and this simplified transaction description is provided in the simple description field. <br><br><b>Note</b> - The simple description field is available only in the United States, Canada, United Kingdom, and India."
},
"consumer": {
"type": "string",
"description": "The description of the transaction as defined by the consumer. The consumer can define or provide more details of the transaction in this field."
}
},
"required": [
"original"
]
}