Microsoft Graph · Schema

microsoft.graph.standardWebPart

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphstandardwebpart-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.standardWebPart",
  "title": "microsoft.graph.standardWebPart",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.webPart"
    },
    {
      "title": "standardWebPart",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "containerTextWebPartId": {
          "type": "string",
          "description": "The instance identifier of the container text webPart. It only works for inline standard webPart in rich text webParts.",
          "nullable": true
        },
        "data": {
          "anyOf": [
            {
              "$ref": "#/components/schemas/microsoft.graph.webPartData"
            },
            {
              "type": "object",
              "nullable": true
            }
          ],
          "description": "Data of the webPart."
        },
        "webPartType": {
          "type": "string",
          "description": "A Guid that indicates the webPart type.",
          "nullable": true
        },
        "@odata.type": {
          "type": "string",
          "default": "#microsoft.graph.standardWebPart"
        }
      }
    }
  ],
  "x-ms-discriminator-value": "#microsoft.graph.standardWebPart"
}