A base representation of a group.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Group--Base", "title": "Group (Base)", "type": "object", "x-box-resource-id": "group--base", "x-box-sanitized": true, "x-box-tag": "groups", "x-box-variants": [ "base", "mini", "standard", "full" ], "x-box-variant": "base", "description": "A base representation of a group.", "required": [ "id", "type" ], "properties": { "id": { "type": "string", "description": "The unique identifier for this object", "example": "11446498" }, "type": { "type": "string", "description": "`group`", "example": "group", "enum": [ "group" ] } } }