{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TeamDetail", "title": "TeamDetail", "type": "object", "properties": { "id": { "type": "string" }, "slug": { "type": "string" }, "name": { "type": "string" }, "dateCreated": { "type": "string", "format": "date-time" }, "isMember": { "type": "boolean" }, "memberCount": { "type": "integer" }, "avatar": { "type": "object", "properties": { "avatarType": { "type": "string" }, "avatarUuid": { "type": "string", "nullable": true } } }, "organization": { "type": "object", "properties": { "id": { "type": "string" }, "slug": { "type": "string" }, "name": { "type": "string" } } }, "projects": { "type": "array", "items": { "$ref": "#/components/schemas/Project" } } }, "required": [ "id", "slug", "name" ] }