Amazon Inspector · JSON Structure

Inspector Date Filter List Structure

DateFilterList schema

Type: array Properties: 0
ComplianceContainer SecurityEC2LambdaSecurityVulnerability Scanning

DateFilterList is a JSON Structure definition published by Amazon Inspector. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

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-date-filter-list-structure.json",
  "name": "DateFilterList",
  "description": "DateFilterList schema",
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "endInclusive": {
        "allOf": [
          {
            "$ref": "#/components/schemas/Timestamp"
          },
          {
            "description": "A timestamp representing the end of the time period filtered on."
          }
        ]
      },
      "startInclusive": {
        "allOf": [
          {
            "$ref": "#/components/schemas/Timestamp"
          },
          {
            "description": "A timestamp representing the start of the time period filtered on."
          }
        ]
      }
    },
    "description": "Contains details on the time range used to filter findings."
  }
}