Amazon Inspector · JSON Structure

Inspector Aws Ecr Container Image Details Structure

The image details of the Amazon ECR container image.

Type: object Properties: 8 Required: 3
ComplianceContainer SecurityEC2LambdaSecurityVulnerability Scanning

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

Properties

architecture author imageHash imageTags platform pushedAt registry repositoryName

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-inspector/refs/heads/main/json-structure/inspector-aws-ecr-container-image-details-structure.json",
  "name": "AwsEcrContainerImageDetails",
  "description": "The image details of the Amazon ECR container image.",
  "type": "object",
  "properties": {
    "architecture": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NonEmptyString"
        },
        {
          "description": "The architecture of the Amazon ECR container image."
        }
      ]
    },
    "author": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The image author of the Amazon ECR container image."
        }
      ]
    },
    "imageHash": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ImageHash"
        },
        {
          "description": "The image hash of the Amazon ECR container image."
        }
      ]
    },
    "imageTags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ImageTagList"
        },
        {
          "description": "The image tags attached to the Amazon ECR container image."
        }
      ]
    },
    "platform": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Platform"
        },
        {
          "description": "The platform of the Amazon ECR container image."
        }
      ]
    },
    "pushedAt": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DateTimeTimestamp"
        },
        {
          "description": "The date and time the Amazon ECR container image was pushed."
        }
      ]
    },
    "registry": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NonEmptyString"
        },
        {
          "description": "The registry for the Amazon ECR container image."
        }
      ]
    },
    "repositoryName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NonEmptyString"
        },
        {
          "description": "The name of the repository the Amazon ECR container image resides in."
        }
      ]
    }
  },
  "required": [
    "imageHash",
    "registry",
    "repositoryName"
  ]
}