{ "$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-revoke-signature-request-schema.json", "title": "RevokeSignatureRequest", "description": "RevokeSignatureRequest schema from AWS Signer API", "type": "object", "properties": { "jobOwner": { "allOf": [ { "type": "string", "pattern": "^[0-9]{12}$", "minLength": 12, "maxLength": 12 }, { "description": "AWS account ID of the job owner." } ] }, "reason": { "allOf": [ { "type": "string", "minLength": 1, "maxLength": 500 }, { "description": "The reason for revoking the signing job." } ] } }, "required": [ "reason" ] }