Azure Monitor · Schema

TimeWindow

Application InsightsCloudLogsMetricsMonitoringObservability

Properties

Name Type Description
timeZone string The timezone of the start and end times.
start string The start time for the profile.
end string The end time for the profile.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-monitor-timewindow-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TimeWindow",
  "title": "TimeWindow",
  "type": "object",
  "required": [
    "start",
    "end"
  ],
  "properties": {
    "timeZone": {
      "type": "string",
      "description": "The timezone of the start and end times."
    },
    "start": {
      "type": "string",
      "format": "date-time",
      "description": "The start time for the profile."
    },
    "end": {
      "type": "string",
      "format": "date-time",
      "description": "The end time for the profile."
    }
  }
}