attributeMappingParameterSchema resource type

Namespace: microsoft.graph

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

Describes a single parameter used in an attributeMappingFunctionSchema.

Properties

Property Type Description
allowMultipleOccurrences Boolean The given parameter can be provided multiple times (for example, multiple input strings in the Concatenate(string,string,...) function).
name String Parameter name.
required Boolean true if the parameter is required; otherwise false.
type attributeType The possible values are: String, Integer, Reference, Binary, Boolean, DateTime. Default is String.

JSON representation

The following is a JSON representation of the resource.

{
  "allowMultipleOccurrences": "Boolean",
  "name": "String",
  "required": "Boolean",
  "type": "String"
}