Amazon Inspector · JSON Structure

Inspector Coverage String Filter Structure

Contains details of a coverage string filter.

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

CoverageStringFilter 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-coverage-string-filter-structure.json",
  "name": "CoverageStringFilter",
  "description": "Contains details of a coverage string filter.",
  "type": "object",
  "properties": {
    "comparison": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CoverageStringComparison"
        },
        {
          "description": "The operator to compare strings on."
        }
      ]
    },
    "value": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CoverageStringInput"
        },
        {
          "description": "The value to compare strings on."
        }
      ]
    }
  },
  "required": [
    "comparison",
    "value"
  ]
}