Microsoft Graph · Schema

titleArea

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
alternativeText string Alternative text on the title area.
enableGradientEffect boolean Indicates whether the title area has a gradient effect enabled.
imageWebUrl string URL of the image in the title area.
layout object Enumeration value that indicates the layout of the title area. The possible values are: imageAndTitle, plain, colorBlock, overlap, unknownFutureValue.
serverProcessedContent object Contains collections of data that can be processed by server side services like search index and link fixup.
showAuthor boolean Indicates whether the author should be shown in title area.
showPublishedDate boolean Indicates whether the published date should be shown in title area.
showTextBlockAboveTitle boolean Indicates whether the text block above title should be shown in title area.
textAboveTitle string The text above title line.
textAlignment object Enumeration value that indicates the text alignment of the title area. The possible values are: left, center, unknownFutureValue.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphtitlearea-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.titleArea",
  "title": "titleArea",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "alternativeText": {
      "type": "string",
      "description": "Alternative text on the title area.",
      "nullable": true
    },
    "enableGradientEffect": {
      "type": "boolean",
      "description": "Indicates whether the title area has a gradient effect enabled.",
      "nullable": true
    },
    "imageWebUrl": {
      "type": "string",
      "description": "URL of the image in the title area.",
      "nullable": true
    },
    "layout": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.titleAreaLayoutType"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "Enumeration value that indicates the layout of the title area. The possible values are: imageAndTitle, plain, colorBlock, overlap, unknownFutureValue."
    },
    "serverProcessedContent": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.serverProcessedContent"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "Contains collections of data that can be processed by server side services like search index and link fixup."
    },
    "showAuthor": {
      "type": "boolean",
      "description": "Indicates whether the author should be shown in title area.",
      "nullable": true
    },
    "showPublishedDate": {
      "type": "boolean",
      "description": "Indicates whether the published date should be shown in title area.",
      "nullable": true
    },
    "showTextBlockAboveTitle": {
      "type": "boolean",
      "description": "Indicates whether the text block above title should be shown in title area.",
      "nullable": true
    },
    "textAboveTitle": {
      "type": "string",
      "description": "The text above title line.",
      "nullable": true
    },
    "textAlignment": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.titleAreaTextAlignmentType"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "Enumeration value that indicates the text alignment of the title area. The possible values are: left, center, unknownFutureValue."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}