Advanced Excel · Schema

TableList

List of Excel tables.

AutomationBusiness IntelligenceData AnalysisData ProcessingExcelMicrosoftSpreadsheets

Properties

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

JSON Schema

excel-api-tablelist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "TableList",
  "description": "List of Excel tables.",
  "type": "object",
  "properties": {
    "value": {
      "type": "array",
      "description": "Array of tables.",
      "items": {
        "$ref": "#/$defs/Table"
      }
    }
  }
}