androidForWorkAppConfigurationSchema 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 for Work application's custom configurations.

Methods

Method Return Type Description
List androidForWorkAppConfigurationSchemas androidForWorkAppConfigurationSchema collection List properties and relationships of the androidForWorkAppConfigurationSchema objects.
Get androidForWorkAppConfigurationSchema androidForWorkAppConfigurationSchema Read properties and relationships of the androidForWorkAppConfigurationSchema object.
Create androidForWorkAppConfigurationSchema androidForWorkAppConfigurationSchema Create a new androidForWorkAppConfigurationSchema object.
Delete androidForWorkAppConfigurationSchema None Deletes a androidForWorkAppConfigurationSchema.
Update androidForWorkAppConfigurationSchema androidForWorkAppConfigurationSchema Update the properties of a androidForWorkAppConfigurationSchema 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 androidForWorkAppConfigurationSchemaItem collection Collection of items each representing a named configuration option in the schema

Relationships

None

JSON Representation

Here is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.androidForWorkAppConfigurationSchema",
  "id": "String (identifier)",
  "exampleJson": "binary",
  "schemaItems": [
    {
      "@odata.type": "microsoft.graph.androidForWorkAppConfigurationSchemaItem",
      "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"
        }
      ]
    }
  ]
}