{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-inspector/refs/heads/main/json-schema/inspector-aws-ecr-container-aggregation-response-schema.json", "title": "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" ] }