AssignedLicense

Represents a license assigned to a user.

AuthenticationAuthorizationIdentityMicrosoftMicrosoft EntraOAuthOpenID ConnectSAMLSCIMSingle Sign-OnZero Trust

Properties

Name Type Description
disabledPlans array A collection of the unique identifiers for plans that have been disabled.
skuId string The unique identifier for the SKU.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-active-directory-assignedlicense-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AssignedLicense",
  "title": "AssignedLicense",
  "type": "object",
  "description": "Represents a license assigned to a user.",
  "properties": {
    "disabledPlans": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "uuid"
      },
      "description": "A collection of the unique identifiers for plans that have been disabled.",
      "example": []
    },
    "skuId": {
      "type": "string",
      "format": "uuid",
      "description": "The unique identifier for the SKU.",
      "example": "500123"
    }
  }
}