{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-snow-family/refs/heads/main/json-schema/amazon-snow-family-list-jobs-request-schema.json", "title": "ListJobsRequest", "description": "ListJobsRequest schema from Amazon Snow Family API", "type": "object", "properties": { "MaxResults": { "allOf": [ { "$ref": "#/components/schemas/ListLimit" }, { "description": "The number of JobListEntry objects to return." } ] }, "NextToken": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "HTTP requests are stateless. To identify what object comes \"next\" in the list of JobListEntry objects, you have the option of specifying NextToken as the starting point for your returned list." } ] } } }