Microsoft Graph · Schema
microsoft.graph.workbookWorksheet
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.workbookWorksheet",
"title": "microsoft.graph.workbookWorksheet",
"allOf": [
{
"$ref": "#/components/schemas/microsoft.graph.entity"
},
{
"title": "workbookWorksheet",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The display name of the worksheet.",
"nullable": true
},
"position": {
"maximum": 2147483647,
"minimum": -2147483648,
"type": "number",
"description": "The zero-based position of the worksheet within the workbook.",
"format": "int32"
},
"visibility": {
"type": "string",
"description": "The visibility of the worksheet. The possible values are: Visible, Hidden, VeryHidden."
},
"charts": {
"type": "array",
"items": {
"$ref": "#/components/schemas/microsoft.graph.workbookChart"
},
"description": "The list of charts that are part of the worksheet. Read-only.",
"x-ms-navigationProperty": true
},
"names": {
"type": "array",
"items": {
"$ref": "#/components/schemas/microsoft.graph.workbookNamedItem"
},
"description": "The list of names that are associated with the worksheet. Read-only.",
"x-ms-navigationProperty": true
},
"pivotTables": {
"type": "array",
"items": {
"$ref": "#/components/schemas/microsoft.graph.workbookPivotTable"
},
"description": "The list of piot tables that are part of the worksheet.",
"x-ms-navigationProperty": true
},
"protection": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.workbookWorksheetProtection"
},
{
"type": "object",
"nullable": true
}
],
"description": "The sheet protection object for a worksheet. Read-only.",
"x-ms-navigationProperty": true
},
"tables": {
"type": "array",
"items": {
"$ref": "#/components/schemas/microsoft.graph.workbookTable"
},
"description": "The list of tables that are part of the worksheet. Read-only.",
"x-ms-navigationProperty": true
},
"@odata.type": {
"type": "string"
}
}
}
],
"x-ms-discriminator-value": "#microsoft.graph.workbookWorksheet"
}