LotResumedv0.0.1
Holds information about lots resumed 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 paused due to auction being paused, but the “LotResumed” notification is used to indicate that bidding on a lot has been resumed/restarted as a result of the corresponding auction being resumed/restarted. It only occurs after an auction has started and the auction has not closed.
Consumer / Producer Diagram
LotResumed Schema (json)
{
"$id": "https://example.com/lotResumed.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "LotResumed",
"description": "An event raised when a bids on a lot are resumed/restarted due to the corresponding online auction being resumed/restarted",
"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 lotResumed"
},
"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 resumed/restarted"
},
"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, bids are being resumed/restarted for. This is the auction number and lot number and lot suffix e.g. 21231.5a"
},
"auctionNumber": {
"type": "string",
"description": "The JDE Sale number of the auction."
},
"lotResumedTimeUtc": {
"type": "string",
"description": "The date and time when bidding on a lot was resumed/restarted e.g. 2022-02-10T14:30:00Z."
}
}
}
}Edit this pageLast updated on 2026/1/30