{
  "$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."
        }
      }
    }
  }
}
