Amazon Inspector · JSON Structure

Inspector String Filter List Structure

StringFilterList schema

Type: array Properties: 0
ComplianceContainer SecurityEC2LambdaSecurityVulnerability Scanning

StringFilterList 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-string-filter-list-structure.json",
  "name": "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."
  }
}