Amazon Signer · JSON Structure

Amazon Signer Revoke Signature Request Structure

RevokeSignatureRequest schema from AWS Signer API

Type: object Properties: 2 Required: 1
Code SigningIoTLambdaSecurity

RevokeSignatureRequest is a JSON Structure definition published by Amazon Signer, describing 2 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

jobOwner reason

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "type": "object",
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-signer/refs/heads/main/json-structure/amazon-signer-revoke-signature-request-structure.json",
  "name": "RevokeSignatureRequest",
  "description": "RevokeSignatureRequest schema from AWS Signer API",
  "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"
  ]
}