Microsoft Graph · Schema

dateTimeColumn

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
displayAs string How the value should be presented in the UX. Must be one of default, friendly, or standard. See below for more details. If unspecified, treated as default.
format string Indicates whether the value should be presented as a date only or a date and time. Must be one of dateOnly or dateTime
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphdatetimecolumn-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.dateTimeColumn",
  "title": "dateTimeColumn",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "displayAs": {
      "type": "string",
      "description": "How the value should be presented in the UX. Must be one of default, friendly, or standard. See below for more details. If unspecified, treated as default.",
      "nullable": true
    },
    "format": {
      "type": "string",
      "description": "Indicates whether the value should be presented as a date only or a date and time. Must be one of dateOnly or dateTime",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}