LotDeletedEventv0.0.1
Raised when a lot record is deleted and must be removed from the publishing search index.
When firing this event make sure you set the `correlationId` in the headers and the `type` Application Property to `lotDeletedEvent`. Our schemas have standard metadata make sure you read and follow it.
Details
This event type is produced by AuctionLot cloud store (LotChangeFeedWorker) when a Cosmos DB lot document is deleted, publishing to sbt-lots-external.
The christies-auction-publishing-search Azure Function consumes this event type and routes by the message Application Property type set to lotDeletedEvent.
Consumer / Producer Diagram
LotDeletedEvent Schema (json)
{
"$id": "https://example.com/LotDeletedEvent.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "LotDeletedEvent",
"description": "Event raised when a lot record is deleted and should be removed from search.",
"type": "object",
"required": ["metadata", "data"],
"properties": {
"metadata": {
"type": "object",
"required": ["occurredAtUtc", "typeName", "correlationId", "sentAtUtc"],
"properties": {
"occurredAtUtc": {
"type": "string",
"description": "UTC timestamp when the event occurred (ISO 8601)."
},
"typeName": {
"type": "string",
"description": "Event type name. Expected value: lotDeletedEvent."
},
"correlationId": {
"type": "string",
"description": "Correlation identifier used for cross-service tracing."
},
"source": {
"type": "string",
"description": "Source service and version that emitted the event."
},
"sentAtUtc": {
"type": "string",
"description": "UTC timestamp when the publisher sent the event (ISO 8601)."
}
}
},
"data": {
"type": "object",
"required": ["lotId", "lotNumber", "auctionNumber"],
"properties": {
"lotId": {
"type": "string",
"description": "Unique identifier for the deleted lot."
},
"lotNumber": {
"type": ["string", "number"],
"description": "Lot number of the deleted record."
},
"lotSuffix": {
"type": "string",
"description": "Optional lot suffix such as A or B."
},
"auctionNumber": {
"type": ["string", "number"],
"description": "Auction number that owned this lot."
},
"deletedAtUtc": {
"type": "string",
"description": "UTC timestamp when the lot was deleted (ISO 8601)."
}
}
}
}
}
Edit this pageLast updated on 2026/5/8