Microsoft Graph · Schema

listInfo

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
contentTypesEnabled boolean If true, indicates that content types are enabled for this list.
hidden boolean If true, indicates that the list isn't normally visible in the SharePoint user experience.
template string An enumerated value that represents the base list template used in creating the list. Possible values include documentLibrary, genericList, task, survey, announcements, contacts, and more.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphlistinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.listInfo",
  "title": "listInfo",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "contentTypesEnabled": {
      "type": "boolean",
      "description": "If true, indicates that content types are enabled for this list.",
      "nullable": true
    },
    "hidden": {
      "type": "boolean",
      "description": "If true, indicates that the list isn't normally visible in the SharePoint user experience.",
      "nullable": true
    },
    "template": {
      "type": "string",
      "description": "An enumerated value that represents the base list template used in creating the list. Possible values include documentLibrary, genericList, task, survey, announcements, contacts, and more.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}