{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-inspector/refs/heads/main/json-schema/inspector-get-findings-report-status-response-schema.json", "title": "GetFindingsReportStatusResponse", "description": "GetFindingsReportStatusResponse schema", "type": "object", "properties": { "destination": { "allOf": [ { "$ref": "#/components/schemas/Destination" }, { "description": "The destination of the report." } ] }, "errorCode": { "allOf": [ { "$ref": "#/components/schemas/ReportingErrorCode" }, { "description": "The error code of the report." } ] }, "errorMessage": { "allOf": [ { "$ref": "#/components/schemas/ErrorMessage" }, { "description": "The error message of the report." } ] }, "filterCriteria": { "allOf": [ { "$ref": "#/components/schemas/FilterCriteria" }, { "description": "The filter criteria associated with the report." } ] }, "reportId": { "allOf": [ { "$ref": "#/components/schemas/ReportId" }, { "description": "The ID of the report." } ] }, "status": { "allOf": [ { "$ref": "#/components/schemas/ExternalReportStatus" }, { "description": "The status of the report." } ] } } }