Amazon Inspector · JSON Structure

Inspector Date Filter Structure

Contains details on the time range used to filter findings.

Type: object Properties: 2
ComplianceContainer SecurityEC2LambdaSecurityVulnerability Scanning

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

Properties

endInclusive startInclusive

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-structure.json",
  "name": "DateFilter",
  "description": "Contains details on the time range used to filter findings.",
  "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."
        }
      ]
    }
  }
}