{ "$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"] } } }