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