Add Customer Default Location Tag (v0.0.1)

Command that will add customer default location tag in customer domain

Overview

The AddCustomerDefaultLocationTag command is issued to add new customer default location.

Architecture diagram

Payload example

Payload example
{
}

Schema

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