{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Group--Mini",
"title": "Group (Mini)",
"type": "object",
"x-box-resource-id": "group--mini",
"x-box-variant": "mini",
"description": "Mini representation of a group, including id and name of\ngroup.",
"allOf": [
{
"$ref": "#/components/schemas/Group--Base"
},
{
"properties": {
"name": {
"type": "string",
"description": "The name of the group",
"example": "Support"
},
"group_type": {
"type": "string",
"description": "The type of the group.",
"example": "managed_group",
"enum": [
"managed_group",
"all_users_group"
]
}
}
}
]
}