Overview
The AddBooking command is issued to add new Booking to an organization.
Architecture diagram
Payload example
{}Schema
{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "AddBookingCommand", "type": "object", "properties": { "id": { "type": "string", "description": "The unique identifier of the booking." } }, "required": [ "id" ], "additionalProperties": true}