ListSigningJobsResponse schema from AWS Signer API
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-signer/refs/heads/main/json-schema/amazon-signer-list-signing-jobs-response-schema.json", "title": "ListSigningJobsResponse", "description": "ListSigningJobsResponse schema from AWS Signer API", "type": "object", "properties": { "jobs": { "allOf": [ { "type": "array", "items": { "$ref": "#/components/schemas/SigningJob" } }, { "description": "A list of your signing jobs." } ] }, "nextToken": { "allOf": [ { "type": "string" }, { "description": "String for specifying the next set of paginated results." } ] } } }