Box · Schema

Group (Base)

A base representation of a group.

Cloud StorageCollaborationContent ManagementDocumentsEnterpriseFile Sharing

Properties

Name Type Description
id string The unique identifier for this object
type string `group`
View JSON Schema on GitHub

JSON Schema

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