{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TeamCompact", "title": "TeamCompact", "description": "A *team* is used to group related projects and people together within an organization. Each project in an organization is associated with a team.", "type": "object", "properties": { "gid": { "description": "Globally unique identifier of the resource, as a string.", "type": "string", "readOnly": true, "example": "12345", "x-insert-after": false }, "resource_type": { "description": "The base type of this resource.", "type": "string", "readOnly": true, "example": "team", "x-insert-after": "gid" }, "name": { "description": "The name of the team.", "type": "string", "example": "Marketing" } } }