{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/airflow/refs/heads/main/json-schema/airflow-job-collection-response-schema.json", "title": "JobCollectionResponse", "description": "Job Collection Response.", "type": "object", "properties": { "jobs": { "items": { "$ref": "#/components/schemas/JobResponse" }, "type": "array", "title": "Jobs" }, "total_entries": { "type": "integer", "title": "Total Entries" } }, "required": [ "jobs", "total_entries" ] }