SYNTHETIC. No customer data. Static rendering of the four files the engine writes for this mode. This file is not a live calculator and cannot take your input. partial_fulfillment=false.
Orders
| order_id | sku | priority | requested | filled | unfulfilled |
|---|---|---|---|---|---|
| ORDER-A | sensor-kit | 10 | 6 | 6 | 0 |
| ORDER-B | board-pair | 5 | 3 | 0 | 3 |
| ORDER-C | sensor-kit | 2 | 2 | 0 | 2 |
Materials
| component | picked | locked | remaining_available | additional_for_unfulfilled |
|---|---|---|---|---|
| board | 6 | 2 | 4 | 4 |
| case | 6 | 0 | 1 | 1 |
| cable | 12 | 0 | 8 | 0 |
README.txt
KitClear allocation packet Supported limits: 2,000 components; 200 products; 100 components/BOM; 100 orders. Stock/reservations <=1,000,000; BOM units <=10,000; order units <=100,000; priority 1–10,000. IDs 1–64 printable characters. Algorithm: kitclear-1.1 Input SHA256: 17270b54df3f93022d5808779b8bf779806b1a61abf110ec06e98b6317bb91ca Synthetic: True Explicit descending-priority allocation with input-order ties; not a global optimum. Single-level integer BOMs and one stock location only; source inventory accuracy is not established. No substitutions, product configuration, forecasts, purchasing, or physical assembly instructions. Reservations are unavailable stock; they are not assigned to these orders. Additional components are a mathematical shortage, not a purchase recommendation. CSV formula-like IDs are apostrophe-escaped; JSON preserves exact IDs.
allocation.json (excerpt)
{
"source_sha256": "17270b54df3f93022d5808779b8bf779806b1a61abf110ec06e98b6317bb91ca",
"algorithm_version": "kitclear-1.1",
"policy": "priority_descending_then_input_order",
"partial_fulfillment": false,
"synthetic": true,
"allocations": [
{
"id": "ORDER-A",
"sku": "sensor-kit",
"requested": 6,
"priority": 10,
"filled": 6,
"unfulfilled": 0,
"pick": {
"board": 6,
"case": 6,
"cable": 12
}
},
{
"id": "ORDER-B",
"sku": "board-pair",
"requested": 3,
"priority": 5,
"filled": 0,
"unfulfilled": 3,
"pick": {
"board": 0,
"cable": 0
}
},
{
"id": "ORDER-C",
"sku": "sensor-kit",
"requested": 2,
"priority": 2,
"filled": 0,
"unfulfilled": 2,
"pick": {
…