{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "type": "object",
    "title": "ShipmentDispatched",
    "description": "Schema for shipment dispatched event",
    "properties": {
        "shipmentId": {
            "type": "string",
            "description": "Unique identifier for the shipment"
        },
        "orderId": {
            "type": "string",
            "description": "Identifier for the associated order"
        }
    },
    "required": ["shipmentId", "orderId"]
}