Microsoft Graph · Schema

timeRange

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
endTime string End time for the time range.
startTime string Start time for the time range.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphtimerange-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.timeRange",
  "title": "timeRange",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "endTime": {
      "pattern": "^([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?$",
      "type": "string",
      "description": "End time for the time range.",
      "format": "time",
      "nullable": true
    },
    "startTime": {
      "pattern": "^([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?$",
      "type": "string",
      "description": "Start time for the time range.",
      "format": "time",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}