Microsoft Entra · Schema

WebApplication

Web application configuration including redirect URIs

Access ManagementAuthenticationAzure ADEntraIdentityIdentity GovernanceMicrosoftNetwork SecuritySecurityZero Trust

Properties

Name Type Description
redirectUris array URIs to which Microsoft Entra ID will redirect after authentication
homePageUrl stringnull Home page URL of the application
logoutUrl stringnull URL used by the authorization service to sign out the user
implicitGrantSettings object Settings for implicit grant flow tokens
View JSON Schema on GitHub

JSON Schema

microsoft-entra-webapplication-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WebApplication",
  "title": "WebApplication",
  "type": "object",
  "description": "Web application configuration including redirect URIs",
  "properties": {
    "redirectUris": {
      "type": "array",
      "description": "URIs to which Microsoft Entra ID will redirect after authentication",
      "items": {
        "type": "string",
        "format": "uri"
      },
      "example": []
    },
    "homePageUrl": {
      "type": [
        "string",
        "null"
      ],
      "description": "Home page URL of the application",
      "format": "uri",
      "example": "https://www.example.com"
    },
    "logoutUrl": {
      "type": [
        "string",
        "null"
      ],
      "description": "URL used by the authorization service to sign out the user",
      "format": "uri",
      "example": "https://www.example.com"
    },
    "implicitGrantSettings": {
      "type": "object",
      "description": "Settings for implicit grant flow tokens",
      "properties": {
        "enableIdTokenIssuance": {
          "type": "boolean",
          "description": "Whether ID tokens can be issued using the implicit flow",
          "default": false
        },
        "enableAccessTokenIssuance": {
          "type": "boolean",
          "description": "Whether access tokens can be issued using the implicit flow",
          "default": false
        }
      },
      "example": "example_value"
    }
  }
}