Schema: B2C_Sale_Item
Schema Definition
{
"$schema": "http://json-schema.org/schema#",
"description": "Line item of a B2C Transaction",
"properties": {
"id": {
"description": "Global/Unique Identifier",
"type": "string"
},
"inventory": {
"description": "Inventory as String ID or Object",
"type": "string"
},
"unit_count": {
"description": "Quantity of Items Sold",
"type": "string"
},
"unit_price": {
"description": "Pre-Tax Price per Unit *NOT* the full price",
"type": "string"
}
},
"type": "object"
}
Schema Samples