Microsoft Entra · Schema

SpaApplication

Single-page application configuration

Access ManagementAuthenticationAzure ADEntraIdentityIdentity GovernanceMicrosoftNetwork SecuritySecurityZero Trust

Properties

Name Type Description
redirectUris array Redirect URIs for single-page application authentication
View JSON Schema on GitHub

JSON Schema

microsoft-entra-spaapplication-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SpaApplication",
  "title": "SpaApplication",
  "type": "object",
  "description": "Single-page application configuration",
  "properties": {
    "redirectUris": {
      "type": "array",
      "description": "Redirect URIs for single-page application authentication",
      "items": {
        "type": "string",
        "format": "uri"
      },
      "example": []
    }
  }
}