Amazon Inspector · Schema

SeverityCounts

An object that contains the counts of aggregated finding per severity.

ComplianceContainer SecurityEC2LambdaSecurityVulnerability Scanning

Properties

Name Type Description
all object
critical object
high object
medium object
View JSON Schema on GitHub

JSON Schema

inspector-severity-counts-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-severity-counts-schema.json",
  "title": "SeverityCounts",
  "description": "An object that contains the counts of aggregated finding per severity.",
  "type": "object",
  "properties": {
    "all": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Long"
        },
        {
          "description": "The total count of findings from all severities."
        }
      ]
    },
    "critical": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Long"
        },
        {
          "description": "The total count of critical severity findings."
        }
      ]
    },
    "high": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Long"
        },
        {
          "description": "The total count of high severity findings."
        }
      ]
    },
    "medium": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Long"
        },
        {
          "description": "The total count of medium severity findings."
        }
      ]
    }
  }
}