Microsoft Graph · Schema

loginPageLayoutConfiguration

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
isFooterShown boolean Option to show the footer on the sign-in page.
isHeaderShown boolean Option to show the header on the sign-in page.
layoutTemplateType object Represents the layout template to be displayed on the login page for a tenant. The possible values are default - Represents the default Microsoft layout with a centered lightbox. verticalSplit - Repre
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphloginpagelayoutconfiguration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.loginPageLayoutConfiguration",
  "title": "loginPageLayoutConfiguration",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "isFooterShown": {
      "type": "boolean",
      "description": "Option to show the footer on the sign-in page.",
      "nullable": true
    },
    "isHeaderShown": {
      "type": "boolean",
      "description": "Option to show the header on the sign-in page.",
      "nullable": true
    },
    "layoutTemplateType": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.layoutTemplateType"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "Represents the layout template to be displayed on the login page for a tenant. The possible values are  default - Represents the default Microsoft layout with a centered lightbox.  verticalSplit - Represents a layout with a background on the left side and a full-height lightbox to the right.  unknownFutureValue - Evolvable enumeration sentinel value. Don't use."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}