Appian · Schema

InspectionResult

Result of a package inspection operation, including expected object counts and any problems identified.

AutomationBPMBusiness Process ManagementEnterprise SoftwareLow-CodeProcess AutomationRPAWorkflow

Properties

Name Type Description
status string The current status of the inspection operation.
summary object Summary of the inspection findings.
View JSON Schema on GitHub

JSON Schema

appian-inspectionresult-schema.json Raw ↑
{
  "$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"
  ]
}