Box · Schema

Group (Mini)

Mini representation of a group, including id and name of group.

Cloud StorageCollaborationContent ManagementDocumentsEnterpriseFile Sharing
View JSON Schema on GitHub

JSON Schema

box-group-mini-schema.json Raw ↑
{
  "$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"
          ]
        }
      }
    }
  ]
}