{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://ledger.abivia.com/api/json/currency-response.schema.json",
  "title": "Currency Response",
  "description": "Response to a currency 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"
        },
        "currency": {
          "description": "Attributes of the Currency",
          "$ref": "https://ledger.abivia.com/api/json/currency-return.schema.json",
          "type": "object"
        }
      },
      "required": ["time", "currency"]
    },
    {
      "$ref": "https://ledger.abivia.com/api/json/success-response.schema.json"
    },
    {
      "$ref": "https://ledger.abivia.com/api/json/error-response.schema.json"
    }
  ]
}
