LotReopened
v0.0.1

Holds information lots reopened during an online auction.
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

This event can be triggered multiple times for a lot. When an auction has started but has not been not closed yet, and the lot was previously closed, a lot can be reopened in an online auction. That action will trigger this event.

Consumer / Producer Diagram

LotReopened Schema (json)
{
  "$id": "https://example.com/LotRepoened.json",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "LotReopened",
  "description": "An event raised when a lot if reponded in 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 LotReopened"
        },
        "source": {
          "type": "string",
          "description": "The source of the event like was it generated by Client using Web or WeChat"
        },
        "sourceTimeZone": {
          "type": "string",
          "description": "Timezone of the client source when lot was reopened"
        },
        "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": {
        "lotId": {
          "type": "string",
          "description": "Unique id of the object the bid is being cancelled for. This is the sale number and lot number and lot suffix e.g. 21231.5.a"
        },
        "winningBidId": {
          "type": "string",
          "description": "The bid id of the current winning bid. This is only optional because it is possible it is the first bid being cancelled."
        },
        "winningClientNumber": {
          "type": "string",
          "description": "COS number of the client that currently has the winning bid."
        },
        "winningAccountNumber": {
          "type": "string",
          "description": "The account number used to make the bid by the winningClientNumber."
        },
        "bidCount": {
          "type": "number",
          "description": "Current number of bids for the lot."
        },
        "startingBid": {
          "type": "number",
          "description": "The starting bid value of the lot if there is no current winning bid and the lot is reopened for bidding. e.g. 15000.00"
        },
        "winningBid": {
          "type": "number",
          "description": "The current winning bid value."
        },
        "winningBidCurrency": {
          "type": "string",
          "description": "The 3 character currency code of the currentWinningBid."
        },
        "winningBidType": {
          "type": "string",
          "description": "The bid type of the current winningBid."
        },
        "biddingExtended": {
          "type": "boolean",
          "description": "If the time to bid has been extended or not. string(ISO8601 format in Zulu/UTC time)."
        },
        "biddingEndTimeUtc": {
          "type": "string",
          "description": "Date and time bidding ends on the lot e.g. 2022-02-10T14:30:00Z. (ISO8601 format in Zulu/UTC time)"
        }
      }
    }
}
Edit this pageLast updated on 2026/1/30