{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/InspectionResult", "title": "InspectionResult", "type": "object", "description": "Result of a package inspection operation, including expected object counts and any problems identified.", "properties": { "status": { "type": "string", "description": "The current status of the inspection operation.", "enum": [ "IN_PROGRESS", "COMPLETED", "FAILED" ] }, "summary": { "type": "object", "description": "Summary of the inspection findings.", "properties": { "objectsExpected": { "$ref": "#/components/schemas/ImportSummaryCount" }, "adminConsoleSettingsExpected": { "$ref": "#/components/schemas/ImportSummaryCount" }, "problems": { "$ref": "#/components/schemas/InspectionProblems" } } } }, "required": [ "status" ] }