Add Bulk Desk (v0.0.1)

Command that will add desk in bulk

Overview

The AddBulkDesk command is issued to add desks in bulk in a location.

Architecture diagram

Payload example

Payload example
{
"Id": "789e1234-b56c-78d9-e012-3456789fghij",
"Name": "New Desk"
}

Schema

schema.json
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "AddBulkDeskCommand",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The unique identifier of the desk being added in a location."
},
"name": {
"type": "string",
"description": "The name of the desk."
}
},
"required": [
"id",
"name"
],
"additionalProperties": true
}