Microsoft Azure Active Directory · Schema
ApplicationCreate
Properties required when creating a new application registration.
AuthenticationAuthorizationIdentityMicrosoftMicrosoft EntraOAuthOpenID ConnectSAMLSCIMSingle Sign-OnZero Trust
Properties
| Name | Type | Description |
|---|---|---|
| displayName | string | The display name for the application. |
| description | string | |
| signInAudience | string | |
| identifierUris | array | |
| web | object | |
| spa | object | |
| publicClient | object | |
| api | object | |
| appRoles | array | |
| requiredResourceAccess | array | |
| tags | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ApplicationCreate",
"title": "ApplicationCreate",
"type": "object",
"description": "Properties required when creating a new application registration.",
"required": [
"displayName"
],
"properties": {
"displayName": {
"type": "string",
"description": "The display name for the application.",
"example": "example_value"
},
"description": {
"type": "string",
"example": "A sample description."
},
"signInAudience": {
"type": "string",
"enum": [
"AzureADMyOrg",
"AzureADMultipleOrgs",
"AzureADandPersonalMicrosoftAccount",
"PersonalMicrosoftAccount"
],
"example": "AzureADMyOrg"
},
"identifierUris": {
"type": "array",
"items": {
"type": "string"
},
"example": []
},
"web": {
"$ref": "#/components/schemas/WebApplication"
},
"spa": {
"$ref": "#/components/schemas/SpaApplication"
},
"publicClient": {
"$ref": "#/components/schemas/PublicClientApplication"
},
"api": {
"$ref": "#/components/schemas/ApiApplication"
},
"appRoles": {
"type": "array",
"items": {
"$ref": "#/components/schemas/AppRole"
},
"example": []
},
"requiredResourceAccess": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RequiredResourceAccess"
},
"example": []
},
"tags": {
"type": "array",
"items": {
"type": "string"
},
"example": []
}
}
}