Amazon Signer · Schema

SignatureValidityPeriod

The validity period for a signing job.

Code SigningIoTLambdaSecurity

Properties

Name Type Description
value object
type object
View JSON Schema on GitHub

JSON Schema

amazon-signer-signature-validity-period-schema.json Raw ↑
{
  "$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-signature-validity-period-schema.json",
  "title": "SignatureValidityPeriod",
  "description": "The validity period for a signing job.",
  "type": "object",
  "properties": {
    "value": {
      "allOf": [
        {
          "type": "integer"
        },
        {
          "description": "The numerical value of the time unit for signature validity."
        }
      ]
    },
    "type": {
      "allOf": [
        {
          "type": "string",
          "enum": [
            "DAYS",
            "MONTHS",
            "YEARS"
          ]
        },
        {
          "description": "The time unit for signature validity."
        }
      ]
    }
  }
}