Yardi · Schema

ImportResponse

SOAP response confirming successful import of data.

AccountingCommercial Real EstateCoworkingInvestment ManagementMultifamilyProperty ManagementReal EstateResidentialSelf StorageSenior Living

Properties

Name Type Description
ImportResult string Import result status message
ErrorMessages array List of error messages if any records failed to import
View JSON Schema on GitHub

JSON Schema

yardi-importresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ImportResponse",
  "title": "ImportResponse",
  "type": "object",
  "description": "SOAP response confirming successful import of data.",
  "properties": {
    "ImportResult": {
      "type": "string",
      "description": "Import result status message"
    },
    "ErrorMessages": {
      "type": "array",
      "description": "List of error messages if any records failed to import",
      "items": {
        "type": "string"
      }
    }
  }
}