{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.attributeMappingParameterSchema", "title": "attributeMappingParameterSchema", "required": [ "@odata.type" ], "type": "object", "properties": { "allowMultipleOccurrences": { "type": "boolean", "description": "The given parameter can be provided multiple times (for example, multiple input strings in the Concatenate(string,string,...) function)." }, "name": { "type": "string", "description": "Parameter name.", "nullable": true }, "required": { "type": "boolean", "description": "true if the parameter is required; otherwise false." }, "type": { "$ref": "#/components/schemas/microsoft.graph.attributeType" }, "@odata.type": { "type": "string" } } }