Amazon Inspector · JSON Structure

Inspector Cisa Data Structure

The Cybersecurity and Infrastructure Security Agency (CISA) details for a specific vulnerability.

Type: object Properties: 3
ComplianceContainer SecurityEC2LambdaSecurityVulnerability Scanning

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

Properties

action dateAdded dateDue

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-cisa-data-structure.json",
  "name": "CisaData",
  "description": "The Cybersecurity and Infrastructure Security Agency (CISA) details for a specific vulnerability.",
  "type": "object",
  "properties": {
    "action": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CisaAction"
        },
        {
          "description": "The remediation action recommended by CISA for this vulnerability."
        }
      ]
    },
    "dateAdded": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CisaDateAdded"
        },
        {
          "description": "The date and time CISA added this vulnerability to their catalogue."
        }
      ]
    },
    "dateDue": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CisaDateDue"
        },
        {
          "description": "The date and time CISA expects a fix to have been provided vulnerability."
        }
      ]
    }
  }
}