Microsoft Graph · Schema

coachmarkLocation

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
length number Length of coachmark.
offset number Offset of coachmark.
type object Type of coachmark location. The possible values are: unknown, fromEmail, subject, externalTag, displayName, messageBody, unknownFutureValue.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphcoachmarklocation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.coachmarkLocation",
  "title": "coachmarkLocation",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "length": {
      "maximum": 2147483647,
      "minimum": -2147483648,
      "type": "number",
      "description": "Length of coachmark.",
      "format": "int32",
      "nullable": true
    },
    "offset": {
      "maximum": 2147483647,
      "minimum": -2147483648,
      "type": "number",
      "description": "Offset of coachmark.",
      "format": "int32",
      "nullable": true
    },
    "type": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.coachmarkLocationType"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "Type of coachmark location. The possible values are: unknown, fromEmail, subject, externalTag, displayName, messageBody, unknownFutureValue."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}