Amazon Inspector · Schema

CoverageStringFilter

Contains details of a coverage string filter.

ComplianceContainer SecurityEC2LambdaSecurityVulnerability Scanning

Properties

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

JSON Schema

inspector-coverage-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-coverage-string-filter-schema.json",
  "title": "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"
  ]
}