PublicClientApplication

Configuration for a public client (mobile/desktop) application.

AuthenticationAuthorizationIdentityMicrosoftMicrosoft EntraOAuthOpenID ConnectSAMLSCIMSingle Sign-OnZero Trust

Properties

Name Type Description
redirectUris array Redirect URIs for the public client application.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-active-directory-publicclientapplication-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PublicClientApplication",
  "title": "PublicClientApplication",
  "type": "object",
  "description": "Configuration for a public client (mobile/desktop) application.",
  "properties": {
    "redirectUris": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "uri"
      },
      "description": "Redirect URIs for the public client application.",
      "example": []
    }
  }
}