RunInput response model
Nullable fields represent unknown values; they do not imply zero cost or a completed action.
| Field | Type | Required | Details |
|---|---|---|---|
capabilityId |
string | Yes | |
input |
object | Yes | |
input.quantity |
integer | If parent supplied | |
input.specification |
string | If parent supplied |
Full JSON schema
{ "type": "object", "properties": { "capabilityId": { "type": "string" }, "input": { "type": "object", "properties": { "quantity": { "type": "integer" }, "specification": { "type": "string" } }, "required": [ "quantity", "specification" ] } }, "required": [ "capabilityId", "input" ]}