Propertyware · Schema

ErrorResponse

JSON Schema for ErrorResponse

Property ManagementReal EstateRental PropertiesSingle-Family RentalsLeasesTenantsMaintenanceWork OrdersFinancial TransactionsOwner Reports

Properties

Name Type Description
errorCode string
errors array
userMessage string
View JSON Schema on GitHub

JSON Schema

error-response.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ErrorResponse",
  "description": "JSON Schema for ErrorResponse",
  "type": "object",
  "properties": {
    "errorCode": {
      "type": "string"
    },
    "errors": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/RESTAPIError"
      }
    },
    "userMessage": {
      "type": "string"
    }
  }
}