Box · Schema

User (Integration Mappings)

A user representation for integration mappings API purposes. Fields name and login are not required.

Cloud StorageCollaborationContent ManagementDocumentsEnterpriseFile Sharing
View JSON Schema on GitHub

JSON Schema

box-userintegrationmappings-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserIntegrationMappings",
  "title": "User (Integration Mappings)",
  "type": "object",
  "x-box-resource-id": "user_integration_mappings_reference",
  "x-box-tag": "users",
  "description": "A user representation for integration mappings\nAPI purposes. Fields name and login are not required.",
  "allOf": [
    {
      "$ref": "#/components/schemas/User--Base"
    },
    {
      "properties": {
        "name": {
          "type": "string",
          "description": "The display name of this user",
          "example": "Aaron Levie",
          "maxLength": 50,
          "nullable": false
        },
        "login": {
          "type": "string",
          "format": "email",
          "description": "The primary email address of this user",
          "example": "[email protected]",
          "nullable": false
        }
      }
    }
  ]
}