Principal

Represents a principal (user or service principal) that performed an action.

Business ApplicationsCopilot StudioDataverseLow-CodeMicrosoftNo-CodePower PagesPower Platform

Properties

Name Type Description
id string The unique identifier of the principal.
displayName ['string', 'null'] The display name of the principal.
type string The type of principal.
tenantId ['string', 'null'] The tenant ID of the principal.
View JSON Schema on GitHub

JSON Schema

power-platform-principal-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Principal",
  "type": "object",
  "description": "Represents a principal (user or service principal) that performed an action.",
  "properties": {
    "id": {
      "type": "string",
      "description": "The unique identifier of the principal."
    },
    "displayName": {
      "type": "['string', 'null']",
      "description": "The display name of the principal."
    },
    "type": {
      "type": "string",
      "description": "The type of principal."
    },
    "tenantId": {
      "type": "['string', 'null']",
      "description": "The tenant ID of the principal."
    }
  }
}