Appian · Schema

InspectionProblems

Collection of errors and warnings identified during a package inspection.

AutomationBPMBusiness Process ManagementEnterprise SoftwareLow-CodeProcess AutomationRPAWorkflow

Properties

Name Type Description
totalErrors integer Total number of errors found during inspection.
totalWarnings integer Total number of warnings found during inspection.
errors array Array of error details identified during inspection.
warnings array Array of warning details identified during inspection.
View JSON Schema on GitHub

JSON Schema

appian-inspectionproblems-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InspectionProblems",
  "title": "InspectionProblems",
  "type": "object",
  "description": "Collection of errors and warnings identified during a package inspection.",
  "properties": {
    "totalErrors": {
      "type": "integer",
      "description": "Total number of errors found during inspection.",
      "minimum": 0
    },
    "totalWarnings": {
      "type": "integer",
      "description": "Total number of warnings found during inspection.",
      "minimum": 0
    },
    "errors": {
      "type": "array",
      "description": "Array of error details identified during inspection.",
      "items": {
        "$ref": "#/components/schemas/InspectionError"
      }
    },
    "warnings": {
      "type": "array",
      "description": "Array of warning details identified during inspection.",
      "items": {
        "$ref": "#/components/schemas/InspectionWarning"
      }
    }
  }
}