Microsoft Graph · Schema

attributeMappingParameterSchema

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name 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 object
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphattributemappingparameterschema-schema.json Raw ↑
{
  "$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"
    }
  }
}