Amazon Signer · JSON Structure

Amazon Signer Signing Image Format Structure

The image format of a code signing platform or profile.

Type: object Properties: 2 Required: 2
Code SigningIoTLambdaSecurity

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

Properties

supportedFormats defaultFormat

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-signing-image-format-structure.json",
  "name": "SigningImageFormat",
  "description": "The image format of a code signing platform or profile.",
  "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"
  ]
}