Microsoft Graph · Schema

tenantRelationship

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
delegatedAdminCustomers array The customer who has a delegated admin relationship with a Microsoft partner.
delegatedAdminRelationships array The details of the delegated administrative privileges that a Microsoft partner has in a customer tenant.
multiTenantOrganization object Defines an organization with more than one instance of Microsoft Entra ID.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphtenantrelationship-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.tenantRelationship",
  "title": "tenantRelationship",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "delegatedAdminCustomers": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/microsoft.graph.delegatedAdminCustomer"
      },
      "description": "The customer who has a delegated admin relationship with a Microsoft partner.",
      "x-ms-navigationProperty": true
    },
    "delegatedAdminRelationships": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/microsoft.graph.delegatedAdminRelationship"
      },
      "description": "The details of the delegated administrative privileges that a Microsoft partner has in a customer tenant.",
      "x-ms-navigationProperty": true
    },
    "multiTenantOrganization": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.multiTenantOrganization"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "Defines an organization with more than one instance of Microsoft Entra ID.",
      "x-ms-navigationProperty": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}