addedInput schema / properties / cursor
Added value: +{
+ "type": "string"
+}
addedInput schema / properties / limit / default
Added value: +10
removedInput schema / properties / limit / description
Removed value: -"Maximum number of jobs to return (default 20, max 100)."
removedInput schema / properties / status / description
Removed value: -"Filter by job status."
removedInput schema / properties / status / enum
Removed value: -[
- "pending",
- "queued",
- "running",
- "completed",
- "failed",
- "cancelled"
-]
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "additionalProperties": true,
+ "properties": {
+ "data": {
+ "additionalProperties": true,
+ "properties": {
+ "has_more": {
+ "type": "boolean"
+ },
+ "jobs": {
+ "items": {
+ "additionalProperties": true,
+ "properties": {
+ "created_at": {
+ "type": "string"
+ },
+ "id": {
+ "type": "string"
+ },
+ "job_id": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ },
+ "status": {
+ "type": "string"
+ },
+ "updated_at": {
+ "type": "string"
+ },
+ "workload_type": {
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "limit": {
+ "type": "number"
+ },
+ "next_cursor": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ }
+ },
+ "type": "object"
+ }
+ },
+ "required": [
+ "data"
+ ],
+ "type": "object"
+}