Cognito Forms · Schema

ImportStatus

The current status of a bulk entry import operation

FormsForm BuilderForm EntriesWorkflow AutomationData CollectionOData

Properties

Name Type Description
Id string The ID of the import
Status string The status of the import
ErrorMessage string A message describing why the import failed
SuccessfulEntries integer The number of entries successfully imported
UnsuccessfulEntries integer The number of entries that failed to import
TotalEntries integer The total number of entries in the import
ImportLink string The link to the entries page to download the annotated file
View JSON Schema on GitHub

JSON Schema

import-status.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.cognitoforms.com/schemas/import-status.json",
  "title": "ImportStatus",
  "description": "The current status of a bulk entry import operation",
  "type": "object",
  "properties": {
    "Id": {
      "description": "The ID of the import",
      "type": "string"
    },
    "Status": {
      "description": "The status of the import",
      "type": "string"
    },
    "ErrorMessage": {
      "description": "A message describing why the import failed",
      "type": "string"
    },
    "SuccessfulEntries": {
      "description": "The number of entries successfully imported",
      "type": "integer"
    },
    "UnsuccessfulEntries": {
      "description": "The number of entries that failed to import",
      "type": "integer"
    },
    "TotalEntries": {
      "description": "The total number of entries in the import",
      "type": "integer"
    },
    "ImportLink": {
      "description": "The link to the entries page to download the annotated file",
      "type": "string",
      "format": "uri"
    }
  }
}