{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/IntegrationMapping--Base", "title": "Integration mapping (Base)", "type": "object", "x-box-resource-id": "integration_mapping--base", "x-box-tag": "integration_mappings", "x-box-variant": "base", "x-box-variants": [ "base", "standard", "mini" ], "description": "A base representation of an\nintegration mapping object.", "properties": { "id": { "type": "string", "nullable": false, "example": "12345", "description": "A unique identifier of a folder mapping\n(part of a composite key together\nwith `integration_type`)" }, "integration_type": { "type": "string", "nullable": false, "description": "Identifies the Box partner app,\nwith which the mapping is associated.\nCurrently only supports Slack.\n(part of the composite key together with `id`)", "example": "slack", "enum": [ "slack" ] } } }