addedInput schema / properties / api_key / description
Added value: +"API key for this call. Omit to fall back to the Authorization: Bearer / X-API-Key request header (streamable-HTTP only), then the VHGENGINE_API_KEY env var (the stdio default). No key resolvable -> unauthorized."
addedInput schema / properties / limit / description
Added value: +"Max jobs to return, 1-200. Above the ceiling is an invalid_request, never a silent truncation."
addedInput schema / properties / limit / maximum
Added value: +200
addedInput schema / properties / limit / minimum
Added value: +1
addedInput schema / properties / offset / description
Added value: +"Number of rows to skip for paging, 0-9223372036854775807. Page with offset += the limit you actually requested; `total` in the response is the unpaged count. The ceiling is SQLite's largest bindable integer: above it the read could only ever have been a 500, so it is a typed invalid_request instead."
addedInput schema / properties / offset / maximum
Added value: +9223372036854776000
addedInput schema / properties / offset / minimum
Added value: +0
addedOutput schema / description
Added value: +"A page of this account's jobs, newest first, without the result blobs."
addedOutput schema / properties
Added value: +{
+ "jobs": {
+ "description": "Summaries: {job_id, status, stage, progress_pct, created_at, started_at, finished_at}. Fetch a result with get_job.",
+ "type": [
+ "array",
+ "null"
+ ]
+ },
+ "limit": {
+ "description": "Page size actually applied.",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "offset": {
+ "description": "Offset this page started at.",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "total": {
+ "description": "Jobs matching ignoring paging.",
+ "type": [
+ "number",
+ "null"
+ ]
+ }
+}
removedOutput schema / title
Removed value: -"list_jobsDictOutput"