Box · Schema

Integration mapping Box item schema for type Slack

The schema for an integration mapping Box item object for type Slack

Cloud StorageCollaborationContent ManagementDocumentsEnterpriseFile Sharing

Properties

Name Type Description
type string Type of the mapped item referenced in `id`
id string ID of the mapped item (of type referenced in `type`)
View JSON Schema on GitHub

JSON Schema

box-integrationmappingboxitemslack-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IntegrationMappingBoxItemSlack",
  "title": "Integration mapping Box item schema for type Slack",
  "type": "object",
  "description": "The schema for an integration mapping Box item object for type Slack",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "folder"
      ],
      "example": "folder",
      "description": "Type of the mapped item referenced in `id`",
      "nullable": false
    },
    "id": {
      "type": "string",
      "example": "1234567891",
      "description": "ID of the mapped item (of type referenced in `type`)",
      "nullable": false
    }
  },
  "required": [
    "id",
    "type"
  ]
}