{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.workbook", "title": "microsoft.graph.workbook", "allOf": [ { "$ref": "#/components/schemas/microsoft.graph.entity" }, { "title": "workbook", "required": [ "@odata.type" ], "type": "object", "properties": { "application": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.workbookApplication" }, { "type": "object", "nullable": true } ], "x-ms-navigationProperty": true }, "comments": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.workbookComment" }, "description": "Represents a collection of comments in a workbook.", "x-ms-navigationProperty": true }, "functions": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.workbookFunctions" }, { "type": "object", "nullable": true } ], "x-ms-navigationProperty": true }, "names": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.workbookNamedItem" }, "description": "Represents a collection of workbooks scoped named items (named ranges and constants). Read-only.", "x-ms-navigationProperty": true }, "operations": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.workbookOperation" }, "description": "The status of workbook operations. Getting an operation collection is not supported, but you can get the status of a long-running operation if the Location header is returned in the response. Read-only.", "x-ms-navigationProperty": true }, "tables": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.workbookTable" }, "description": "Represents a collection of tables associated with the workbook. Read-only.", "x-ms-navigationProperty": true }, "worksheets": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.workbookWorksheet" }, "description": "Represents a collection of worksheets associated with the workbook. Read-only.", "x-ms-navigationProperty": true }, "@odata.type": { "type": "string" } } } ], "x-ms-discriminator-value": "#microsoft.graph.workbook" }