Microsoft Graph · Schema

microsoft.graph.customTrainingSetting

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphcustomtrainingsetting-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.customTrainingSetting",
  "title": "microsoft.graph.customTrainingSetting",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.trainingSetting"
    },
    {
      "title": "customTrainingSetting",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "assignedTo": {
          "type": "array",
          "items": {
            "anyOf": [
              {
                "$ref": "#/components/schemas/microsoft.graph.trainingAssignedTo"
              },
              {
                "type": "object",
                "nullable": true
              }
            ]
          },
          "description": "A user collection that specifies to whom the training should be assigned. The possible values are: none, allUsers, clickedPayload, compromised, reportedPhish, readButNotClicked, didNothing, unknownFutureValue."
        },
        "description": {
          "type": "string",
          "description": "The description of the custom training setting.",
          "nullable": true
        },
        "displayName": {
          "type": "string",
          "description": "The display name of the custom training setting.",
          "nullable": true
        },
        "durationInMinutes": {
          "maximum": 2147483647,
          "minimum": -2147483648,
          "type": "number",
          "description": "Training duration.",
          "format": "int32",
          "nullable": true
        },
        "url": {
          "type": "string",
          "description": "The training URL.",
          "nullable": true
        },
        "@odata.type": {
          "type": "string",
          "default": "#microsoft.graph.customTrainingSetting"
        }
      }
    }
  ],
  "x-ms-discriminator-value": "#microsoft.graph.customTrainingSetting"
}