{
"$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-schema.json",
"title": "CoverageDateFilter",
"description": "Contains details of a coverage date filter.",
"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."
}
]
}
}
}