Microsoft Graph · Schema

microsoft.graph.targetedManagedAppConfiguration

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphtargetedmanagedappconfiguration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.targetedManagedAppConfiguration",
  "title": "microsoft.graph.targetedManagedAppConfiguration",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.managedAppConfiguration"
    },
    {
      "title": "targetedManagedAppConfiguration",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "deployedAppCount": {
          "maximum": 2147483647,
          "minimum": -2147483648,
          "type": "number",
          "description": "Count of apps to which the current policy is deployed.",
          "format": "int32"
        },
        "isAssigned": {
          "type": "boolean",
          "description": "Indicates if the policy is deployed to any inclusion groups or not."
        },
        "apps": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/microsoft.graph.managedMobileApp"
          },
          "description": "List of apps to which the policy is deployed.",
          "x-ms-navigationProperty": true
        },
        "assignments": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment"
          },
          "description": "Navigation property to list of inclusion and exclusion groups to which the policy is deployed.",
          "x-ms-navigationProperty": true
        },
        "deploymentSummary": {
          "anyOf": [
            {
              "$ref": "#/components/schemas/microsoft.graph.managedAppPolicyDeploymentSummary"
            },
            {
              "type": "object",
              "nullable": true
            }
          ],
          "description": "Navigation property to deployment summary of the configuration.",
          "x-ms-navigationProperty": true
        },
        "@odata.type": {
          "type": "string",
          "default": "#microsoft.graph.targetedManagedAppConfiguration"
        }
      },
      "description": "Configuration used to deliver a set of custom settings as-is to all users in the targeted security group"
    }
  ],
  "x-ms-discriminator-value": "#microsoft.graph.targetedManagedAppConfiguration"
}