Amazon Inspector · JSON Structure

Inspector Map Filter List Structure

MapFilterList schema

Type: array Properties: 0
ComplianceContainer SecurityEC2LambdaSecurityVulnerability Scanning

MapFilterList 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-map-filter-list-structure.json",
  "name": "MapFilterList",
  "description": "MapFilterList schema",
  "type": "array",
  "items": {
    "type": "object",
    "required": [
      "comparison",
      "key"
    ],
    "properties": {
      "comparison": {
        "allOf": [
          {
            "$ref": "#/components/schemas/MapComparison"
          },
          {
            "description": "The operator to use when comparing values in the filter."
          }
        ]
      },
      "key": {
        "allOf": [
          {
            "$ref": "#/components/schemas/MapKey"
          },
          {
            "description": "The tag key used in the filter."
          }
        ]
      },
      "value": {
        "allOf": [
          {
            "$ref": "#/components/schemas/MapValue"
          },
          {
            "description": "The tag value used in the filter."
          }
        ]
      }
    },
    "description": "An object that describes details of a map filter."
  }
}