Amazon Inspector · Schema

CoverageDateFilterList

CoverageDateFilterList schema

ComplianceContainer SecurityEC2LambdaSecurityVulnerability Scanning
View JSON Schema on GitHub

JSON Schema

inspector-coverage-date-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-coverage-date-filter-list-schema.json",
  "title": "CoverageDateFilterList",
  "description": "CoverageDateFilterList schema",
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "endInclusive": {
        "allOf": [
          {
            "$ref": "#/components/schemas/DateTimeTimestamp"
          },
          {
            "description": "A timestamp representing the end of the time period to filter results by."
          }
        ]
      },
      "startInclusive": {
        "allOf": [
          {
            "$ref": "#/components/schemas/DateTimeTimestamp"
          },
          {
            "description": "A timestamp representing the start of the time period to filter results by."
          }
        ]
      }
    },
    "description": "Contains details of a coverage date filter."
  }
}