androidManagedStoreAppConfigurationSchema resource type

Namespace: microsoft.graph

Important: Microsoft Graph APIs under the /beta version are subject to change; production use is not supported.

Note: The Microsoft Graph API for Intune requires an active Intune license for the tenant.

Schema describing an Android application's custom configurations.

Methods

Method Return Type Description
List androidManagedStoreAppConfigurationSchemas androidManagedStoreAppConfigurationSchema collection List properties and relationships of the androidManagedStoreAppConfigurationSchema objects.
Get androidManagedStoreAppConfigurationSchema androidManagedStoreAppConfigurationSchema Read properties and relationships of the androidManagedStoreAppConfigurationSchema object.
Create androidManagedStoreAppConfigurationSchema androidManagedStoreAppConfigurationSchema Create a new androidManagedStoreAppConfigurationSchema object.
Delete androidManagedStoreAppConfigurationSchema None Deletes a androidManagedStoreAppConfigurationSchema.
Update androidManagedStoreAppConfigurationSchema androidManagedStoreAppConfigurationSchema Update the properties of a androidManagedStoreAppConfigurationSchema object.

Properties

Property Type Description
id String Key of the entity the Android package name for the application the schema corresponds to
exampleJson Binary UTF8 encoded byte array containing example JSON string conforming to this schema that demonstrates how to set the configuration for this app
schemaItems androidManagedStoreAppConfigurationSchemaItem collection Collection of items each representing a named configuration option in the schema. It only contains the root-level configuration.
nestedSchemaItems androidManagedStoreAppConfigurationSchemaItem collection Collection of items each representing a named configuration option in the schema. It contains a flat list of all configuration.

Relationships

None

JSON Representation

Here is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.androidManagedStoreAppConfigurationSchema",
  "id": "String (identifier)",
  "exampleJson": "binary",
  "schemaItems": [
    {
      "@odata.type": "microsoft.graph.androidManagedStoreAppConfigurationSchemaItem",
      "index": 1024,
      "parentIndex": 1024,
      "schemaItemKey": "String",
      "displayName": "String",
      "description": "String",
      "defaultBoolValue": true,
      "defaultIntValue": 1024,
      "defaultStringValue": "String",
      "defaultStringArrayValue": [
        "String"
      ],
      "dataType": "String",
      "selections": [
        {
          "@odata.type": "microsoft.graph.keyValuePair",
          "name": "String",
          "value": "String"
        }
      ]
    }
  ],
  "nestedSchemaItems": [
    {
      "@odata.type": "microsoft.graph.androidManagedStoreAppConfigurationSchemaItem",
      "index": 1024,
      "parentIndex": 1024,
      "schemaItemKey": "String",
      "displayName": "String",
      "description": "String",
      "defaultBoolValue": true,
      "defaultIntValue": 1024,
      "defaultStringValue": "String",
      "defaultStringArrayValue": [
        "String"
      ],
      "dataType": "String",
      "selections": [
        {
          "@odata.type": "microsoft.graph.keyValuePair",
          "name": "String",
          "value": "String"
        }
      ]
    }
  ]
}