LotResultPublishedv0.0.1
Holds information about lots results 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
The lot has previously closed, but the “LotResultPublished” notification is used to indicate the result of a lot.
Consumer / Producer Diagram
LotResultPublished Schema (json)
{
"$id": "https://example.com/lotResultPublished.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "lotResultPublished",
"description": "An event raised when a lot result is publihsed 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 LotResultPublished"
},
"source": {
"type": "string",
"description": "The source of the event like was it generated by Online or Live"
},
"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 for which the lot result is published. This is the sale number and lot number and lot suffix e.g. 21231.5a"
},
"uniqueMessageId": {
"type": "string",
"description": "Required. ID used by the source system for the message."
},
"hammerPrice": {
"type": "decimal",
"description": "Optional. The winning bid"
},
"hammerPriceCurrency": {
"type": "string",
"description": "Optional. Required if hammerPrice provided. The currency the hammerPrice is in."
},
"priceRealised": {
"type": "number",
"description": "Optional. The realised price including buyer’s premium"
},
"priceRealisedCurrency": {
"type": "string",
"description": "Optional. Required if priceRealised provided. The currency the price realised is in."
},
"winningClientNumber": {
"type": "string",
"description": "Optional. The COS number of the client who won the lot"
},
"winningAccountNumber": {
"type": "string",
"description": "Optional. The transactional account number that won the lot."
},
"status": {
"type": "string",
"description": "Required. SoldPendingPriceRealised, Sold, Unsold, Withdrawn"
},
"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)"
},
"lotTitle": {
"type": "string",
"description": "Required. The title of the lot the bid was for."
}
}
}
}Edit this pageLast updated on 2026/1/30