Applications Application Structure
A Microsoft Entra application registration managed via Microsoft Graph
Applications Application Structure is a JSON Structure definition published by Microsoft Active Directory. It conforms to the https://json-structure.org/meta/extended/v0/# meta-schema.
Meta-schema: https://json-structure.org/meta/extended/v0/#
JSON Structure
{
"$schema": "https://json-structure.org/meta/extended/v0/#",
"$id": "https://raw.githubusercontent.com/api-evangelist/active-directory/main/json-structure/applications-application-structure.json",
"title": "Application",
"description": "A Microsoft Entra application registration managed via Microsoft Graph",
"type": "record",
"fields": [
{ "name": "id", "type": "string", "description": "Unique identifier for the application object (UUID, read-only)" },
{ "name": "appId", "type": "string", "description": "Application (client) ID used in OAuth2 flows (UUID, read-only)" },
{ "name": "displayName", "type": "string", "description": "Display name of the application" },
{ "name": "description", "type": "string", "optional": true, "description": "Free text description" },
{ "name": "signInAudience", "type": "string", "description": "Supported Microsoft account types: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, PersonalMicrosoftAccount" },
{ "name": "identifierUris", "type": "array", "items": { "type": "string" }, "optional": true, "description": "URIs identifying the application in the tenant" },
{ "name": "web", "type": "record", "optional": true, "description": "Web platform configuration", "fields": [
{ "name": "redirectUris", "type": "array", "items": { "type": "string" }, "optional": true },
{ "name": "logoutUrl", "type": "string", "optional": true },
{ "name": "implicitGrantSettings", "type": "record", "optional": true, "fields": [
{ "name": "enableAccessTokenIssuance", "type": "boolean", "optional": true },
{ "name": "enableIdTokenIssuance", "type": "boolean", "optional": true }
]}
]},
{ "name": "requiredResourceAccess", "type": "array", "optional": true, "description": "API permissions required by the application", "items": {
"type": "record",
"fields": [
{ "name": "resourceAppId", "type": "string" },
{ "name": "resourceAccess", "type": "array", "items": {
"type": "record",
"fields": [
{ "name": "id", "type": "string" },
{ "name": "type", "type": "string", "description": "Role or Scope" }
]
}}
]
}},
{ "name": "keyCredentials", "type": "array", "optional": true, "description": "Certificate credentials", "items": {
"type": "record",
"fields": [
{ "name": "keyId", "type": "string" },
{ "name": "type", "type": "string" },
{ "name": "usage", "type": "string" },
{ "name": "displayName", "type": "string", "optional": true },
{ "name": "startDateTime", "type": "timestamp", "optional": true },
{ "name": "endDateTime", "type": "timestamp", "optional": true }
]
}},
{ "name": "createdDateTime", "type": "timestamp", "optional": true, "description": "When the application was registered" },
{ "name": "deletedDateTime", "type": "timestamp", "optional": true, "description": "When the application was soft-deleted" }
]
}
Work with this as data
Every JSON Structure here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for json structure
4 MCP tools reach this
find_json_structuresBrowse and filter every JSON Structure in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
curl "https://apis.io/api/v1/json-structures/applications-application-structure"
curl "https://apis.io/api/v1/json-structures?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.