Add Team (v0.0.1)

Command that will add team

Overview

The AddTeam command is issued to add new team to an organization.

Architecture diagram

Payload example

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

Schema

schema.json
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "AddTeamCommand",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The unique identifier of the team being added to the organization."
},
"name": {
"type": "string",
"description": "The name of the team being added to the organization."
},
"about": {
"type": "string",
"description": "Something about the team."
}
},
"required": [
"id",
"name",
"about"
],
"additionalProperties": true
}