Advanced Excel · Schema

Session

A workbook session for batch operations.

AutomationBusiness IntelligenceData AnalysisData ProcessingExcelMicrosoftSpreadsheets

Properties

Name Type Description
id string Session identifier.
persistChanges boolean Whether changes are persisted.
View JSON Schema on GitHub

JSON Schema

excel-api-session-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Session",
  "description": "A workbook session for batch operations.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Session identifier.",
      "example": "session-abc123"
    },
    "persistChanges": {
      "type": "boolean",
      "description": "Whether changes are persisted.",
      "example": true
    }
  }
}