Advanced Excel · Schema

RangeInput

Request to write values to a range.

AutomationBusiness IntelligenceData AnalysisData ProcessingExcelMicrosoftSpreadsheets

Properties

Name Type Description
values array 2D array of values to write.
View JSON Schema on GitHub

JSON Schema

excel-api-rangeinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "RangeInput",
  "description": "Request to write values to a range.",
  "type": "object",
  "properties": {
    "values": {
      "type": "array",
      "description": "2D array of values to write.",
      "items": {
        "type": "array",
        "items": {
          "type": "string"
        }
      }
    }
  }
}