Microsoft Graph · Schema

preAuthorizedApplication

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
appId string The unique identifier for the application.
delegatedPermissionIds array The unique identifier for the oauth2PermissionScopes the application requires.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphpreauthorizedapplication-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.preAuthorizedApplication",
  "title": "preAuthorizedApplication",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "appId": {
      "type": "string",
      "description": "The unique identifier for the application.",
      "nullable": true
    },
    "delegatedPermissionIds": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "The unique identifier for the oauth2PermissionScopes the application requires."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}