{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/appian/refs/heads/main/json-schema/deployment-rest-inspection-result-schema.json", "title": "InspectionResult", "description": "Result of a package inspection operation, including expected object counts and any problems identified.", "type": "object", "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" ] }