Amazon Inspector · JSON Structure

Inspector Resource Map Filter List Structure

ResourceMapFilterList schema

Type: array Properties: 0
ComplianceContainer SecurityEC2LambdaSecurityVulnerability Scanning

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

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-resource-map-filter-list-structure.json",
  "name": "ResourceMapFilterList",
  "description": "ResourceMapFilterList schema",
  "type": "array",
  "items": {
    "type": "object",
    "required": [
      "comparison",
      "key"
    ],
    "properties": {
      "comparison": {
        "allOf": [
          {
            "$ref": "#/components/schemas/ResourceMapComparison"
          },
          {
            "description": "The filter's comparison."
          }
        ]
      },
      "key": {
        "allOf": [
          {
            "$ref": "#/components/schemas/NonEmptyString"
          },
          {
            "description": "The filter's key."
          }
        ]
      },
      "value": {
        "allOf": [
          {
            "$ref": "#/components/schemas/NonEmptyString"
          },
          {
            "description": "The filter's value."
          }
        ]
      }
    },
    "description": "A resource map filter for a software bill of material report."
  }
}