{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue/refs/heads/main/json-schema/glue-get-job-runs-request-schema.json", "title": "GetJobRunsRequest", "description": "GetJobRunsRequest schema from Amazon Glue API", "type": "object", "properties": { "JobName": { "allOf": [ { "$ref": "#/components/schemas/NameString" }, { "description": "The name of the job definition for which to retrieve all job runs." } ] }, "NextToken": { "allOf": [ { "$ref": "#/components/schemas/GenericString" }, { "description": "A continuation token, if this is a continuation call." } ] }, "MaxResults": { "allOf": [ { "$ref": "#/components/schemas/PageSize" }, { "description": "The maximum size of the response." } ] } }, "required": [ "JobName" ] }