Amazon Inspector · JSON Structure

Inspector Aws Ecr Container Aggregation Response Structure

An aggregation of information about Amazon ECR containers.

Type: object Properties: 7 Required: 1
ComplianceContainer SecurityEC2LambdaSecurityVulnerability Scanning

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

Properties

accountId architecture imageSha imageTags repository resourceId severityCounts

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-aggregation-response-structure.json",
  "name": "AwsEcrContainerAggregationResponse",
  "description": "An aggregation of information about Amazon ECR containers.",
  "type": "object",
  "properties": {
    "accountId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AccountId"
        },
        {
          "description": "The Amazon Web Services account ID of the account that owns the container."
        }
      ]
    },
    "architecture": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The architecture of the container."
        }
      ]
    },
    "imageSha": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The SHA value of the container image."
        }
      ]
    },
    "imageTags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StringList"
        },
        {
          "description": "The container image stags."
        }
      ]
    },
    "repository": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The container repository."
        }
      ]
    },
    "resourceId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NonEmptyString"
        },
        {
          "description": "The resource ID of the container."
        }
      ]
    },
    "severityCounts": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SeverityCounts"
        },
        {
          "description": "The number of finding by severity."
        }
      ]
    }
  },
  "required": [
    "resourceId"
  ]
}