Microsoft Graph · Schema

webPartPosition

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
columnId object Indicates the identifier of the column where the web part is located.
horizontalSectionId object Indicates the horizontal section where the web part is located.
isInVerticalSection boolean Indicates whether the web part is located in the vertical section.
webPartIndex object Index of the current web part. Represents the order of the web part in this column or section.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphwebpartposition-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.webPartPosition",
  "title": "webPartPosition",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "columnId": {
      "oneOf": [
        {
          "type": "number",
          "format": "double",
          "nullable": true
        },
        {
          "type": "string",
          "nullable": true
        },
        {
          "$ref": "#/components/schemas/ReferenceNumeric"
        }
      ],
      "description": "Indicates the identifier of the column where the web part is located."
    },
    "horizontalSectionId": {
      "oneOf": [
        {
          "type": "number",
          "format": "double",
          "nullable": true
        },
        {
          "type": "string",
          "nullable": true
        },
        {
          "$ref": "#/components/schemas/ReferenceNumeric"
        }
      ],
      "description": "Indicates the horizontal section where the web part is located."
    },
    "isInVerticalSection": {
      "type": "boolean",
      "description": "Indicates whether the web part is located in the vertical section.",
      "nullable": true
    },
    "webPartIndex": {
      "oneOf": [
        {
          "type": "number",
          "format": "double",
          "nullable": true
        },
        {
          "type": "string",
          "nullable": true
        },
        {
          "$ref": "#/components/schemas/ReferenceNumeric"
        }
      ],
      "description": "Index of the current web part. Represents the order of the web part in this column or section."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}