Microsoft Excel · Schema

Worksheet

Represents an Excel worksheet.

AutomationData AnalysisMicrosoftMicrosoft-365OfficeSpreadsheets

Properties

Name Type Description
id string Unique identifier for the worksheet.
name string The display name of the worksheet.
position integer The zero-based position of the worksheet.
visibility string Worksheet visibility.
View JSON Schema on GitHub

JSON Schema

excel-graph-api-worksheet-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/microsoft-excel/refs/heads/main/json-schema/excel-graph-api-worksheet-schema.json",
  "title": "Worksheet",
  "description": "Represents an Excel worksheet.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the worksheet."
    },
    "name": {
      "type": "string",
      "description": "The display name of the worksheet."
    },
    "position": {
      "type": "integer",
      "description": "The zero-based position of the worksheet."
    },
    "visibility": {
      "type": "string",
      "description": "Worksheet visibility.",
      "enum": ["Visible", "Hidden", "VeryHidden"]
    }
  }
}