Amazon Inspector · Schema

Account

An Amazon Web Services account within your environment that Amazon Inspector has been enabled for.

ComplianceContainer SecurityEC2LambdaSecurityVulnerability Scanning

Properties

Name Type Description
accountId object
resourceStatus object
status object
View JSON Schema on GitHub

JSON Schema

inspector-account-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-account-schema.json",
  "title": "Account",
  "description": "An Amazon Web Services account within your environment that Amazon Inspector has been enabled for.",
  "type": "object",
  "properties": {
    "accountId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AccountId"
        },
        {
          "description": "The ID of the Amazon Web Services account."
        }
      ]
    },
    "resourceStatus": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceStatus"
        },
        {
          "description": "Details of the status of Amazon Inspector scans by resource type."
        }
      ]
    },
    "status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Status"
        },
        {
          "description": "The status of Amazon Inspector for the account."
        }
      ]
    }
  },
  "required": [
    "accountId",
    "resourceStatus",
    "status"
  ]
}