Amazon Signer · Schema

SigningImageFormat

The image format of a code signing platform or profile.

Code SigningIoTLambdaSecurity

Properties

Name Type Description
supportedFormats object
defaultFormat object
View JSON Schema on GitHub

JSON Schema

amazon-signer-signing-image-format-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-signing-image-format-schema.json",
  "title": "SigningImageFormat",
  "description": "The image format of a code signing platform or profile.",
  "type": "object",
  "properties": {
    "supportedFormats": {
      "allOf": [
        {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/ImageFormat"
          }
        },
        {
          "description": "The supported formats of a code signing image."
        }
      ]
    },
    "defaultFormat": {
      "allOf": [
        {
          "type": "string",
          "enum": [
            "JSON",
            "JSONEmbedded",
            "JSONDetached"
          ]
        },
        {
          "description": "The default format of a code signing image."
        }
      ]
    }
  },
  "required": [
    "supportedFormats",
    "defaultFormat"
  ]
}