{ "$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" ] }