Amazon Inspector · Schema

StringFilterList

StringFilterList schema

ComplianceContainer SecurityEC2LambdaSecurityVulnerability Scanning
View JSON Schema on GitHub

JSON Schema

inspector-string-filter-list-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-string-filter-list-schema.json",
  "title": "StringFilterList",
  "description": "StringFilterList schema",
  "type": "array",
  "items": {
    "type": "object",
    "required": [
      "comparison",
      "value"
    ],
    "properties": {
      "comparison": {
        "allOf": [
          {
            "$ref": "#/components/schemas/StringComparison"
          },
          {
            "description": "The operator to use when comparing values in the filter."
          }
        ]
      },
      "value": {
        "allOf": [
          {
            "$ref": "#/components/schemas/StringInput"
          },
          {
            "description": "The value to filter on."
          }
        ]
      }
    },
    "description": "An object that describes the details of a string filter."
  }
}