Amazon Inspector · Schema

StringFilter

An object that describes the details of a string filter.

ComplianceContainer SecurityEC2LambdaSecurityVulnerability Scanning

Properties

Name Type Description
comparison object
value object
View JSON Schema on GitHub

JSON Schema

inspector-string-filter-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-schema.json",
  "title": "StringFilter",
  "description": "An object that describes the details of a string filter.",
  "type": "object",
  "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."
        }
      ]
    }
  },
  "required": [
    "comparison",
    "value"
  ]
}