Microsoft Graph · Schema

multiTenantOrganizationMemberTransitionDetails

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
desiredRole object Role of the tenant in the multitenant organization. The possible values are: owner, member, unknownFutureValue.
desiredState object State of the tenant in the multitenant organization currently being processed. The possible values are: pending, active, removed, unknownFutureValue. Read-only.
details string Details that explain the processing status if any. Read-only.
status object Processing state of the asynchronous job. The possible values are: notStarted, running, succeeded, failed, unknownFutureValue. Read-only.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphmultitenantorganizationmembertransitiondetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.multiTenantOrganizationMemberTransitionDetails",
  "title": "multiTenantOrganizationMemberTransitionDetails",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "desiredRole": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.multiTenantOrganizationMemberRole"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "Role of the tenant in the multitenant organization. The possible values are: owner, member, unknownFutureValue."
    },
    "desiredState": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.multiTenantOrganizationMemberState"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "State of the tenant in the multitenant organization currently being processed. The possible values are: pending, active, removed, unknownFutureValue. Read-only."
    },
    "details": {
      "type": "string",
      "description": "Details that explain the processing status if any. Read-only.",
      "nullable": true
    },
    "status": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.multiTenantOrganizationMemberProcessingStatus"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "Processing state of the asynchronous job. The possible values are: notStarted, running, succeeded, failed, unknownFutureValue. Read-only."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}