Amazon Inspector · Schema

FindingTypeAggregationResponse

A response that contains the results of a finding type aggregation.

ComplianceContainer SecurityEC2LambdaSecurityVulnerability Scanning

Properties

Name Type Description
accountId object
severityCounts object
View JSON Schema on GitHub

JSON Schema

inspector-finding-type-aggregation-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-inspector/refs/heads/main/json-schema/inspector-finding-type-aggregation-response-schema.json",
  "title": "FindingTypeAggregationResponse",
  "description": "A response that contains the results of a finding type aggregation.",
  "type": "object",
  "properties": {
    "accountId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AccountId"
        },
        {
          "description": "The ID of the Amazon Web Services account associated with the findings."
        }
      ]
    },
    "severityCounts": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SeverityCounts"
        },
        {
          "description": "The value to sort results by."
        }
      ]
    }
  }
}