Microsoft Graph · Schema
microsoft.graph.sectionGroup
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.sectionGroup",
"title": "microsoft.graph.sectionGroup",
"allOf": [
{
"$ref": "#/components/schemas/microsoft.graph.onenoteEntityHierarchyModel"
},
{
"title": "sectionGroup",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"sectionGroupsUrl": {
"type": "string",
"description": "The URL for the sectionGroups navigation property, which returns all the section groups in the section group. Read-only.",
"nullable": true
},
"sectionsUrl": {
"type": "string",
"description": "The URL for the sections navigation property, which returns all the sections in the section group. Read-only.",
"nullable": true
},
"parentNotebook": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.notebook"
},
{
"type": "object",
"nullable": true
}
],
"description": "The notebook that contains the section group. Read-only.",
"x-ms-navigationProperty": true
},
"parentSectionGroup": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.sectionGroup"
},
{
"type": "object",
"nullable": true
}
],
"description": "The section group that contains the section group. Read-only.",
"x-ms-navigationProperty": true
},
"sectionGroups": {
"type": "array",
"items": {
"$ref": "#/components/schemas/microsoft.graph.sectionGroup"
},
"description": "The section groups in the section. Read-only. Nullable.",
"x-ms-navigationProperty": true
},
"sections": {
"type": "array",
"items": {
"$ref": "#/components/schemas/microsoft.graph.onenoteSection"
},
"description": "The sections in the section group. Read-only. Nullable.",
"x-ms-navigationProperty": true
},
"@odata.type": {
"type": "string",
"default": "#microsoft.graph.sectionGroup"
}
}
}
],
"x-ms-discriminator-value": "#microsoft.graph.sectionGroup"
}