LotImageBatchUploaded
v0.0.1

Raised when a new batch of lot images is notified as uploaded to Azure Storage via the censhare-azure-image-sync endpoint.
When firing this event make sure you set the `correlationId` and `source-application` in the headers. Our schemas have standard metadata make sure you read and follow it.

Details

This event is triggered via a PUT HTTP request to the censhare-azure-image-sync Azure Function endpoint. The payload is validated and then sent to the Service Bus entity configured by ServiceBusConfiguration:TopicOrQueueName (for local ImagesUploaded setup, this is sbq-lot-images-uploaded-internal).

Downstream inbound processing in the Auction Lot Image Pipeline is configured and tested against sbt-lot-images-uploaded-internal.

Headers

HeaderDescription
correlationIdUnique identifier for tracing the request
source-applicationName of the application sending the batch

Body

{
  "path": "path/to/image/batch/in/storage",
  "identifier": "unique-batch-identifier"
}

Consumer / Producer Diagram

LotImageBatchUploaded Schema (json)
{
  "$id": "https://example.com/LotImageBatchUploaded.json",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "LotImageBatchUploaded",
  "description": "Event raised when a lot image batch upload notification is submitted to the image pipeline endpoint.",
  "type": "object",
  "required": ["metadata", "data"],
  "properties": {
    "metadata": {
      "type": "object",
      "required": ["correlationId", "sourceApplication"],
      "properties": {
        "correlationId": {
          "type": "string",
          "description": "Correlation identifier provided in the request headers."
        },
        "sourceApplication": {
          "type": "string",
          "description": "Source application provided in the request headers."
        },
        "receivedAtUtc": {
          "type": "string",
          "description": "UTC timestamp when the request was received by the endpoint (ISO 8601)."
        }
      }
    },
    "data": {
      "type": "object",
      "required": ["path", "identifier"],
      "properties": {
        "path": {
          "type": "string",
          "description": "Storage path to the image batch payload."
        },
        "identifier": {
          "type": "string",
          "description": "Unique identifier for the uploaded batch."
        }
      }
    }
  }
}
Edit this pageLast updated on 2026/5/8