{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.list", "title": "microsoft.graph.list", "allOf": [ { "$ref": "#/components/schemas/microsoft.graph.baseItem" }, { "title": "list", "required": [ "@odata.type" ], "type": "object", "properties": { "displayName": { "type": "string", "description": "The displayable title of the list.", "nullable": true }, "list": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.listInfo" }, { "type": "object", "nullable": true } ], "description": "Contains more details about the list." }, "sharepointIds": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.sharepointIds" }, { "type": "object", "nullable": true } ], "description": "Returns identifiers useful for SharePoint REST compatibility. Read-only." }, "system": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.systemFacet" }, { "type": "object", "nullable": true } ], "description": "If present, indicates that the list is system-managed. Read-only." }, "columns": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.columnDefinition" }, "description": "The collection of field definitions for this list.", "x-ms-navigationProperty": true }, "contentTypes": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.contentType" }, "description": "The collection of content types present in this list.", "x-ms-navigationProperty": true }, "drive": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.drive" }, { "type": "object", "nullable": true } ], "description": "Allows access to the list as a drive resource with driveItems. Only present on document libraries.", "x-ms-navigationProperty": true }, "items": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.listItem" }, "description": "All items contained in the list.", "x-ms-navigationProperty": true }, "operations": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.richLongRunningOperation" }, "description": "The collection of long-running operations on the list.", "x-ms-navigationProperty": true }, "subscriptions": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.subscription" }, "description": "The set of subscriptions on the list.", "x-ms-navigationProperty": true }, "@odata.type": { "type": "string", "default": "#microsoft.graph.list" } } } ], "x-ms-discriminator-value": "#microsoft.graph.list" }