{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-inspector/refs/heads/main/json-schema/inspector-date-filter-list-schema.json",
"title": "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."
}
}