Appian · JSON Structure

Deployment Rest Inspection Result Structure

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

Type: object Properties: 2 Required: 1
AutomationBPMBusiness Process ManagementEnterprise SoftwareLow-CodeProcess AutomationRPAWorkflow

InspectionResult is a JSON Structure definition published by Appian, describing 2 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

status summary

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/appian/refs/heads/main/json-structure/deployment-rest-inspection-result-structure.json",
  "name": "InspectionResult",
  "description": "Result of a package inspection operation, including expected object counts and any problems identified.",
  "type": "object",
  "properties": {
    "status": {
      "description": "The current status of the inspection operation.",
      "enum": [
        "IN_PROGRESS",
        "COMPLETED",
        "FAILED"
      ],
      "type": "string"
    },
    "summary": {
      "description": "Summary of the inspection findings.",
      "properties": {
        "objectsExpected": {
          "$ref": "#/components/schemas/ImportSummaryCount",
          "type": null
        },
        "adminConsoleSettingsExpected": {
          "$ref": "#/components/schemas/ImportSummaryCount",
          "type": null
        },
        "problems": {
          "$ref": "#/components/schemas/InspectionProblems",
          "type": null
        }
      },
      "type": "object"
    }
  },
  "required": [
    "status"
  ]
}