Box · Schema

Enterprise (Base)

A mini representation of a enterprise, used when nested within another resource.

Cloud StorageCollaborationContent ManagementDocumentsEnterpriseFile Sharing

Properties

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

JSON Schema

box-enterprise-base-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Enterprise--Base",
  "title": "Enterprise (Base)",
  "type": "object",
  "x-box-resource-id": "enterprise--base",
  "x-box-variants": [
    "base",
    "mini",
    "standard",
    "full"
  ],
  "x-box-variant": "base",
  "description": "A mini representation of a enterprise, used when\nnested within another resource.",
  "properties": {
    "id": {
      "type": "string",
      "description": "The unique identifier for this enterprise",
      "example": "1910967"
    },
    "type": {
      "type": "string",
      "description": "`enterprise`",
      "example": "enterprise",
      "nullable": false,
      "enum": [
        "enterprise"
      ]
    }
  }
}