Appian · JSON Structure

Deployment Rest Inspection Problems Structure

Collection of errors and warnings identified during a package inspection.

Type: object Properties: 4
AutomationBPMBusiness Process ManagementEnterprise SoftwareLow-CodeProcess AutomationRPAWorkflow

InspectionProblems is a JSON Structure definition published by Appian, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

totalErrors totalWarnings errors warnings

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-problems-structure.json",
  "name": "InspectionProblems",
  "description": "Collection of errors and warnings identified during a package inspection.",
  "type": "object",
  "properties": {
    "totalErrors": {
      "description": "Total number of errors found during inspection.",
      "minimum": 0,
      "type": "int32"
    },
    "totalWarnings": {
      "description": "Total number of warnings found during inspection.",
      "minimum": 0,
      "type": "int32"
    },
    "errors": {
      "description": "Array of error details identified during inspection.",
      "items": {
        "$ref": "#/components/schemas/InspectionError"
      },
      "type": "array"
    },
    "warnings": {
      "description": "Array of warning details identified during inspection.",
      "items": {
        "$ref": "#/components/schemas/InspectionWarning"
      },
      "type": "array"
    }
  }
}