Microsoft Graph · Schema

microsoft.graph.localizedNotificationMessage

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphlocalizednotificationmessage-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.localizedNotificationMessage",
  "title": "microsoft.graph.localizedNotificationMessage",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.entity"
    },
    {
      "title": "localizedNotificationMessage",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "isDefault": {
          "type": "boolean",
          "description": "Flag to indicate whether or not this is the default locale for language fallback. This flag can only be set. To unset, set this property to true on another Localized Notification Message."
        },
        "lastModifiedDateTime": {
          "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$",
          "type": "string",
          "description": "DateTime the object was last modified.",
          "format": "date-time"
        },
        "locale": {
          "type": "string",
          "description": "The Locale for which this message is destined."
        },
        "messageTemplate": {
          "type": "string",
          "description": "The Message Template content."
        },
        "subject": {
          "type": "string",
          "description": "The Message Template Subject."
        },
        "@odata.type": {
          "type": "string"
        }
      },
      "description": "The text content of a Notification Message Template for the specified locale."
    }
  ],
  "x-ms-discriminator-value": "#microsoft.graph.localizedNotificationMessage"
}