Xero · Schema

Problem

AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business

Properties

Name Type Description
type object
title string
status integer
detail string
View JSON Schema on GitHub

JSON Schema

xero-problem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Problem",
  "title": "Problem",
  "type": "object",
  "properties": {
    "type": {
      "$ref": "#/components/schemas/ProblemType"
    },
    "title": {
      "type": "string"
    },
    "status": {
      "type": "integer",
      "format": "int32"
    },
    "detail": {
      "type": "string"
    }
  },
  "additionalProperties": false
}