RunOutput response model
Nullable fields represent unknown values; they do not imply zero cost or a completed action.
| Field | Type | Required | Details |
|---|---|---|---|
status |
string | Yes | One of: sandbox_complete, quote_review_required |
capabilityId |
string | Yes | |
company |
string or null | Yes | |
quantity |
integer | Yes | |
factoryEstimateUsd |
number or null | Yes | |
maglevFeeUsd |
number or null | Yes | |
shippingAndTaxesUsd |
number or null | Yes | |
leadTimeDays |
integer or null | Yes | |
orderPlaced |
false | Yes | |
nextSteps |
string[] | Yes | |
events |
object[] | Yes | |
events[].step |
string | If parent supplied | |
events[].status |
string | If parent supplied |
Full JSON schema
{ "type": "object", "properties": { "status": { "type": "string", "enum": [ "sandbox_complete", "quote_review_required" ] }, "capabilityId": { "type": "string" }, "company": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "quantity": { "type": "integer" }, "factoryEstimateUsd": { "anyOf": [ { "type": "number" }, { "type": "null" } ] }, "maglevFeeUsd": { "anyOf": [ { "type": "number" }, { "type": "null" } ] }, "shippingAndTaxesUsd": { "anyOf": [ { "type": "number" }, { "type": "null" } ] }, "leadTimeDays": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "orderPlaced": { "type": "boolean", "const": false }, "nextSteps": { "type": "array", "items": { "type": "string" } }, "events": { "type": "array", "items": { "type": "object", "properties": { "step": { "type": "string" }, "status": { "type": "string" } }, "required": [ "step", "status" ] } } }, "required": [ "status", "capabilityId", "company", "quantity", "factoryEstimateUsd", "maglevFeeUsd", "shippingAndTaxesUsd", "leadTimeDays", "orderPlaced", "nextSteps", "events" ]}