Amazon Inspector · Schema

ResourceStringFilterList

ResourceStringFilterList schema

ComplianceContainer SecurityEC2LambdaSecurityVulnerability Scanning
View JSON Schema on GitHub

JSON Schema

inspector-resource-string-filter-list-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-resource-string-filter-list-schema.json",
  "title": "ResourceStringFilterList",
  "description": "ResourceStringFilterList schema",
  "type": "array",
  "items": {
    "type": "object",
    "required": [
      "comparison",
      "value"
    ],
    "properties": {
      "comparison": {
        "allOf": [
          {
            "$ref": "#/components/schemas/ResourceStringComparison"
          },
          {
            "description": "The filter's comparison."
          }
        ]
      },
      "value": {
        "allOf": [
          {
            "$ref": "#/components/schemas/ResourceStringInput"
          },
          {
            "description": "The filter's value."
          }
        ]
      }
    },
    "description": "A resource string filter for a software bill of materials report."
  }
}