Amazon Inspector · JSON Structure

Inspector Account Structure

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

Type: object Properties: 3 Required: 3
ComplianceContainer SecurityEC2LambdaSecurityVulnerability Scanning

Account is a JSON Structure definition published by Amazon Inspector, describing 3 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

accountId resourceStatus status

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-inspector/refs/heads/main/json-structure/inspector-account-structure.json",
  "name": "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"
  ]
}