Microsoft Graph · Schema

microsoft.graph.onenote

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphonenote-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.onenote",
  "title": "microsoft.graph.onenote",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.entity"
    },
    {
      "title": "onenote",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "notebooks": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/microsoft.graph.notebook"
          },
          "description": "The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable.",
          "x-ms-navigationProperty": true
        },
        "operations": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/microsoft.graph.onenoteOperation"
          },
          "description": "The status of OneNote operations. Getting an operations collection isn't supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable.",
          "x-ms-navigationProperty": true
        },
        "pages": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/microsoft.graph.onenotePage"
          },
          "description": "The pages in all OneNote notebooks that are owned by the user or group.  Read-only. Nullable.",
          "x-ms-navigationProperty": true
        },
        "resources": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/microsoft.graph.onenoteResource"
          },
          "description": "The image and other file resources in OneNote pages. Getting a resources collection isn't supported, but you can get the binary content of a specific resource. Read-only. Nullable.",
          "x-ms-navigationProperty": true
        },
        "sectionGroups": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/microsoft.graph.sectionGroup"
          },
          "description": "The section groups in all OneNote notebooks that are owned by the user or group.  Read-only. Nullable.",
          "x-ms-navigationProperty": true
        },
        "sections": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/microsoft.graph.onenoteSection"
          },
          "description": "The sections in all OneNote notebooks that are owned by the user or group.  Read-only. Nullable.",
          "x-ms-navigationProperty": true
        },
        "@odata.type": {
          "type": "string"
        }
      }
    }
  ],
  "x-ms-discriminator-value": "#microsoft.graph.onenote"
}