Box · Schema

Group

A standard representation of a group, as returned from any group API endpoints by default

Cloud StorageCollaborationContent ManagementDocumentsEnterpriseFile Sharing
View JSON Schema on GitHub

JSON Schema

box-group-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Group",
  "title": "Group",
  "type": "object",
  "x-box-resource-id": "group",
  "x-box-variant": "standard",
  "description": "A standard representation of a group, as returned from any\ngroup API endpoints by default",
  "allOf": [
    {
      "$ref": "#/components/schemas/Group--Mini"
    },
    {
      "properties": {
        "created_at": {
          "type": "string",
          "format": "date-time",
          "description": "When the group object was created",
          "example": "2012-12-12T10:53:43-08:00"
        },
        "modified_at": {
          "type": "string",
          "format": "date-time",
          "description": "When the group object was last modified",
          "example": "2012-12-12T10:53:43-08:00"
        }
      }
    }
  ]
}