Appian · Schema

ImportSummaryCount

Summary count of items in an import deployment, showing total, imported, failed, and skipped counts.

AutomationBPMBusiness Process ManagementEnterprise SoftwareLow-CodeProcess AutomationRPAWorkflow

Properties

Name Type Description
total integer Total number of items in the package.
imported integer Number of items successfully imported.
failed integer Number of items that failed to import.
skipped integer Number of items skipped during import.
View JSON Schema on GitHub

JSON Schema

appian-importsummarycount-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ImportSummaryCount",
  "title": "ImportSummaryCount",
  "type": "object",
  "description": "Summary count of items in an import deployment, showing total, imported, failed, and skipped counts.",
  "properties": {
    "total": {
      "type": "integer",
      "description": "Total number of items in the package.",
      "minimum": 0
    },
    "imported": {
      "type": "integer",
      "description": "Number of items successfully imported.",
      "minimum": 0
    },
    "failed": {
      "type": "integer",
      "description": "Number of items that failed to import.",
      "minimum": 0
    },
    "skipped": {
      "type": "integer",
      "description": "Number of items skipped during import.",
      "minimum": 0
    }
  }
}