Amazon Signer · Schema

HashAlgorithmOptions

The hash algorithms that are available to a code signing job.

Code SigningIoTLambdaSecurity

Properties

Name Type Description
allowedValues object
defaultValue object
View JSON Schema on GitHub

JSON Schema

amazon-signer-hash-algorithm-options-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-hash-algorithm-options-schema.json",
  "title": "HashAlgorithmOptions",
  "description": "The hash algorithms that are available to a code signing job.",
  "type": "object",
  "properties": {
    "allowedValues": {
      "allOf": [
        {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/HashAlgorithm"
          }
        },
        {
          "description": "The set of accepted hash algorithms allowed in a code signing job."
        }
      ]
    },
    "defaultValue": {
      "allOf": [
        {
          "type": "string",
          "enum": [
            "SHA1",
            "SHA256"
          ]
        },
        {
          "description": "The default hash algorithm that is used in a code signing job."
        }
      ]
    }
  },
  "required": [
    "allowedValues",
    "defaultValue"
  ]
}