Microsoft Graph · Schema

iosNetworkUsageRule

Network Usage Rules allow enterprises to specify how managed apps use networks, such as cellular data networks.

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
cellularDataBlocked boolean If set to true, corresponding managed apps will not be allowed to use cellular data at any time.
cellularDataBlockWhenRoaming boolean If set to true, corresponding managed apps will not be allowed to use cellular data when roaming.
managedApps array Information about the managed apps that this rule is going to apply to. This collection can contain a maximum of 500 elements.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphiosnetworkusagerule-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.iosNetworkUsageRule",
  "title": "iosNetworkUsageRule",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "cellularDataBlocked": {
      "type": "boolean",
      "description": "If set to true, corresponding managed apps will not be allowed to use cellular data at any time."
    },
    "cellularDataBlockWhenRoaming": {
      "type": "boolean",
      "description": "If set to true, corresponding managed apps will not be allowed to use cellular data when roaming."
    },
    "managedApps": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/microsoft.graph.appListItem"
      },
      "description": "Information about the managed apps that this rule is going to apply to. This collection can contain a maximum of 500 elements."
    },
    "@odata.type": {
      "type": "string"
    }
  },
  "description": "Network Usage Rules allow enterprises to specify how managed apps use networks, such as cellular data networks."
}