Microsoft Graph · Schema

workbookFilterDatetime

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
date string The date in ISO 8601 format used to filter data.
specificity string Defines how specific you should use the date to keep data. For example, if the date is 2005-04-02 and the specificity property is set to month, the filter operation keeps all rows with a date in the m
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphworkbookfilterdatetime-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.workbookFilterDatetime",
  "title": "workbookFilterDatetime",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "date": {
      "type": "string",
      "description": "The date in ISO 8601 format used to filter data.",
      "nullable": true
    },
    "specificity": {
      "type": "string",
      "description": "Defines how specific you should use the date to keep data. For example, if the date is 2005-04-02 and the specificity property is set to month, the filter operation keeps all rows with a date in the month of April 2009. The possible values are: Year, Month, Day, Hour, Minute, Second."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}