Amazon Signer · JSON Structure

Amazon Signer Revoke Signing Profile Request Structure

RevokeSigningProfileRequest schema from AWS Signer API

Type: object Properties: 3 Required: 3
Code SigningIoTLambdaSecurity

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

Properties

profileVersion reason effectiveTime

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-signing-profile-request-structure.json",
  "name": "RevokeSigningProfileRequest",
  "description": "RevokeSigningProfileRequest schema from AWS Signer API",
  "properties": {
    "profileVersion": {
      "allOf": [
        {
          "type": "string",
          "pattern": "^[a-zA-Z0-9]{10}$",
          "minLength": 10,
          "maxLength": 10
        },
        {
          "description": "The version of the signing profile to be revoked."
        }
      ]
    },
    "reason": {
      "allOf": [
        {
          "type": "string",
          "minLength": 1,
          "maxLength": 500
        },
        {
          "description": "The reason for revoking a signing profile."
        }
      ]
    },
    "effectiveTime": {
      "allOf": [
        {
          "type": "datetime"
        },
        {
          "description": "A timestamp for when revocation of a Signing Profile should become effective. Signatures generated using the signing profile after this timestamp are not trusted."
        }
      ]
    }
  },
  "required": [
    "profileVersion",
    "reason",
    "effectiveTime"
  ]
}