Propertyware · Schema

RESTAPIBulkErrorResponse

JSON Schema for RESTAPIBulkErrorResponse

Property ManagementReal EstateRental PropertiesSingle-Family RentalsLeasesTenantsMaintenanceWork OrdersFinancial TransactionsOwner Reports

Properties

Name Type Description
error array
index integer
success boolean
View JSON Schema on GitHub

JSON Schema

r-e-s-t-a-p-i-bulk-error-response.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "RESTAPIBulkErrorResponse",
  "description": "JSON Schema for RESTAPIBulkErrorResponse",
  "type": "object",
  "properties": {
    "error": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/RESTAPIError"
      }
    },
    "index": {
      "type": "integer",
      "format": "int32"
    },
    "success": {
      "type": "boolean"
    }
  }
}