StartSigningJobResponse 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-start-signing-job-response-schema.json", "title": "StartSigningJobResponse", "description": "StartSigningJobResponse schema from AWS Signer API", "type": "object", "properties": { "jobId": { "allOf": [ { "type": "string" }, { "description": "The ID of your signing job." } ] }, "jobOwner": { "allOf": [ { "type": "string", "pattern": "^[0-9]{12}$", "minLength": 12, "maxLength": 12 }, { "description": "The AWS account ID of the signing job owner." } ] } } }