SpaApplication

Configuration for a single-page application.

AuthenticationAuthorizationIdentityMicrosoftMicrosoft EntraOAuthOpenID ConnectSAMLSCIMSingle Sign-OnZero Trust

Properties

Name Type Description
redirectUris array Redirect URIs for the single-page application using authorization code flow with PKCE.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-active-directory-spaapplication-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SpaApplication",
  "title": "SpaApplication",
  "type": "object",
  "description": "Configuration for a single-page application.",
  "properties": {
    "redirectUris": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "uri"
      },
      "description": "Redirect URIs for the single-page application using authorization code flow with PKCE.",
      "example": []
    }
  }
}