Advanced Excel · Schema

WorksheetList

List of worksheets.

AutomationBusiness IntelligenceData AnalysisData ProcessingExcelMicrosoftSpreadsheets

Properties

Name Type Description
value array Array of worksheets.
View JSON Schema on GitHub

JSON Schema

excel-api-worksheetlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "WorksheetList",
  "description": "List of worksheets.",
  "type": "object",
  "properties": {
    "value": {
      "type": "array",
      "description": "Array of worksheets.",
      "items": {
        "$ref": "#/$defs/Worksheet"
      }
    }
  }
}