Microsoft Graph · Schema

parameter

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
name string The name of the parameter.
values array The values of the parameter.
valueType object
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphidentitygovernanceparameter-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.identityGovernance.parameter",
  "title": "parameter",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the parameter."
    },
    "values": {
      "type": "array",
      "items": {
        "type": "string",
        "nullable": true
      },
      "description": "The values of the parameter."
    },
    "valueType": {
      "$ref": "#/components/schemas/microsoft.graph.identityGovernance.valueType"
    },
    "@odata.type": {
      "type": "string"
    }
  }
}