Microsoft Graph · Schema

microsoft.graph.tenantAppManagementPolicy

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphtenantappmanagementpolicy-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.tenantAppManagementPolicy",
  "title": "microsoft.graph.tenantAppManagementPolicy",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.policyBase"
    },
    {
      "title": "tenantAppManagementPolicy",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "applicationRestrictions": {
          "anyOf": [
            {
              "$ref": "#/components/schemas/microsoft.graph.appManagementApplicationConfiguration"
            },
            {
              "type": "object",
              "nullable": true
            }
          ],
          "description": "Restrictions that apply as default to all application objects in the tenant."
        },
        "isEnabled": {
          "type": "boolean",
          "description": "Denotes whether the policy is enabled. Default value is false."
        },
        "servicePrincipalRestrictions": {
          "anyOf": [
            {
              "$ref": "#/components/schemas/microsoft.graph.appManagementServicePrincipalConfiguration"
            },
            {
              "type": "object",
              "nullable": true
            }
          ],
          "description": "Restrictions that apply as default to all service principal objects in the tenant."
        },
        "@odata.type": {
          "type": "string",
          "default": "#microsoft.graph.tenantAppManagementPolicy"
        }
      }
    }
  ],
  "x-ms-discriminator-value": "#microsoft.graph.tenantAppManagementPolicy"
}