Lithic · Schema
LineItem
An L2/L3 enhanced commercial data line item.
FinTechBaaSCard IssuingPaymentsEmbedded Finance
Properties
| Name | Type | Description |
|---|---|---|
| product_code | stringnull | An identifier for the item purchased. |
| description | stringnull | A human-readable description of the item. |
| quantity | stringnull | The quantity of the item purchased. |
| amount | stringnull | The price of the item purchased in merchant currency. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/line-item",
"title": "LineItem",
"description": "An L2/L3 enhanced commercial data line item.",
"type": "object",
"properties": {
"product_code": {
"title": "Product Code",
"description": "An identifier for the item purchased.",
"type": [
"string",
"null"
]
},
"description": {
"title": "Description",
"description": "A human-readable description of the item.",
"type": [
"string",
"null"
]
},
"quantity": {
"title": "Quantity",
"description": "The quantity of the item purchased.",
"type": [
"string",
"null"
]
},
"amount": {
"title": "Amount",
"description": "The price of the item purchased in merchant currency.",
"type": [
"string",
"null"
]
}
}
}