{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-inspector/refs/heads/main/json-schema/inspector-package-aggregation-response-schema.json", "title": "PackageAggregationResponse", "description": "A response that contains the results of a finding aggregation by image layer.", "type": "object", "properties": { "accountId": { "allOf": [ { "$ref": "#/components/schemas/AccountId" }, { "description": "The ID of the Amazon Web Services account associated with the findings." } ] }, "packageName": { "allOf": [ { "$ref": "#/components/schemas/NonEmptyString" }, { "description": "The name of the operating system package." } ] }, "severityCounts": { "allOf": [ { "$ref": "#/components/schemas/SeverityCounts" }, { "description": "An object that contains the count of matched findings per severity." } ] } }, "required": [ "packageName" ] }