{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://ledger.abivia.com/api/json/account-response.schema.json",
  "title": "Account Response",
  "description": "Response to a Ledger Account request.",
  "type": "object",
  "oneOf": [
    {
      "properties": {
        "time": {
          "description": "The time the request was processed.",
          "type": "string",
          "pattern": "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{6}Z"
        },
        "account": {
          "description": "Attributes of the Account",
          "$ref": "https://ledger.abivia.com/api/json/account-return.schema.json",
          "type": "object"
        }
      }
    },
    {
      "$ref": "https://ledger.abivia.com/api/json/success-response.schema.json"
    },
    {
      "$ref": "https://ledger.abivia.com/api/json/error-response.schema.json"
    }
  ]
}
