Amazon Inspector · Schema
AwsEcrContainerAggregationResponse
An aggregation of information about Amazon ECR containers.
ComplianceContainer SecurityEC2LambdaSecurityVulnerability Scanning
Properties
| Name | Type | Description |
|---|---|---|
| accountId | object | |
| architecture | object | |
| imageSha | object | |
| imageTags | object | |
| repository | object | |
| resourceId | object | |
| severityCounts | object |
JSON Schema
{
"$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"
]
}