Payload schema
Model pinned for this turn.
The agent contract version whose fold built (and will rebuild) this request. A replay under a DIFFERENT current version is a reconstruction under the current fold, not byte-exact — the inspector labels it so. Absent on pre-7.0.0 requests, which are reconstructions by definition.
Absolute epoch-ms horizon (trigger time + llmRequestExpiryMs — deterministic, so concurrent schedulings of the same trigger dedupe on the idempotency key): past it the request settles cancelled/expired instead of running.
Raw JSON schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"model": {
"type": "string",
"description": "Model pinned for this turn."
},
"contractVersion": {
"description": "The agent contract version whose fold built (and will rebuild) this request. A replay under a DIFFERENT current version is a reconstruction under the current fold, not byte-exact — the inspector labels it so. Absent on pre-7.0.0 requests, which are reconstructions by definition.",
"type": "string"
},
"expiresAt": {
"type": "number",
"description": "Absolute epoch-ms horizon (trigger time + llmRequestExpiryMs — deterministic, so concurrent schedulings of the same trigger dedupe on the idempotency key): past it the request settles cancelled/expired instead of running."
}
},
"required": [
"model",
"expiresAt"
]
}