Amazon Inspector · JSON Structure

Inspector String Filter Structure

An object that describes the details of a string filter.

Type: object Properties: 2 Required: 2
ComplianceContainer SecurityEC2LambdaSecurityVulnerability Scanning

StringFilter is a JSON Structure definition published by Amazon Inspector, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

comparison value

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-structure.json",
  "name": "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"
  ]
}