Add Organization (v0.0.1)

Command that will organization

Overview

The s command is issued to add a new organization.

Architecture diagram

Payload example

Payload example
{
}

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."
}
},
"required": [
"id"
],
"additionalProperties": true
}