Properties
| Name | Type | Description |
|---|---|---|
| supplier_id | string | Unique identifier for the supplier. |
| supplier_name | string | Full name of the supplier. |
| outstanding_balances_by_currency | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/OutstandingBalanceBySupplier",
"title": "Outstanding Balance",
"type": "object",
"x-apideck-schema-id": "OutstandingBalanceBySupplier",
"additionalProperties": false,
"x-apideck-weights": {
"supplier_id": "high",
"supplier_name": "high",
"outstanding_balances_by_currency": "critical"
},
"properties": {
"supplier_id": {
"type": "string",
"title": "Supplier ID",
"description": "Unique identifier for the supplier.",
"example": "123"
},
"supplier_name": {
"type": "string",
"title": "Supplier Name",
"description": "Full name of the supplier.",
"example": "Super Store"
},
"outstanding_balances_by_currency": {
"type": "array",
"items": {
"$ref": "#/components/schemas/OutstandingBalanceByCurrency"
}
}
}
}