Published when a new team is created in an org.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/platform.team.create", "title": "platform.team.create", "type": "object", "description": "Published when a new team is created in an org.", "x-context": "team", "allOf": [ { "$ref": "#/components/schemas/EventDataOrg" }, { "$ref": "#/components/schemas/EventDataActor" } ], "properties": { "team": { "type": "object", "description": "The created team", "properties": { "default": { "$ref": "#/components/schemas/Team/properties/default" }, "guid": { "$ref": "#/components/schemas/Team/properties/guid" }, "name": { "$ref": "#/components/schemas/Team/properties/name" } }, "example": { "default": {}, "guid": {}, "name": {} } } } }