AuctionAlert
v0.0.1

This events is used to publish alerts regarding an auction from NovaFori to Christies.
When firing this event make sure you set the `correlationId` in the headers. Our schemas have standard metadata make sure you read and follow it.

Details

The “AuctionAlert” is used to publish alerts regarding an auction from NovaFori to Christies.

Consumer / Producer Diagram

AuctionAlert Schema (json)
{
  "$id": "https://example.com/AuctionAlert.json",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "AuctionAlert",
  "description": "An event raised to publish alert regarding an online auction",
  "type": "object",
  "properties": {
    "metadata": {
      "type": "object",
      "properties": {
        "occurredAtUtc": {
          "type": "string",
          "description": "The date and time when event occurred in UTC. Date should be represented in ISO 8601 format e.g 2023-09-08T12:00:00Z"
        },
        "typeName": {
          "type": "string",
          "description": "The name of the event. E.g AuctionAlert"
        },
        "source": {
          "type": "string",
          "description": "The source channel of auction alert event."
        },
        "sourceTimeZone": {
          "type": "string",
          "description": "Timezone of the client source when auction alert was published."
        },
        "version": {
         "type": "string",
         "description": "Version number in format of V{n} for e.g V1, V2"
        },
        "sentAtUtc": {
          "type": "string",
          "description":  "When event was sent by the publishers in ISO 8601."
        }       
      },
      "required": [ "occurredAtUtc", "typeName", "sentAtUtc", "version"]
    }
  },
    "data": {
      "type": "object",
      "properties": {
        "auctionNumber": {
          "type": "string",
          "description": "The JDE Sale number of the auction."
        },
        "auctionAlertMessage": {
          "type": "string",
          "description":  "The auction alert message"
        },
        "auctionAlertType": {
          "type": "string",
          "description":  "one of publish/update/unpublish"
        }
      }
    }
}
Edit this pageLast updated on 2026/1/30