Properties
| Name | Type | Description |
|---|---|---|
| start | string | A datetime that represents the start of a custom time frame. Offset is ignored and the company timezone is used. |
| end | string | A datetime that represents the end of a custom time frame. Offset is ignored and the company timezone is used. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CustomTimeframe",
"title": "CustomTimeframe",
"type": "object",
"properties": {
"start": {
"description": "A datetime that represents the start of a custom time frame. Offset is ignored and the company timezone is used.",
"type": "string",
"format": "date-time",
"example": "2022-11-08T00:00:00+00:00"
},
"end": {
"description": "A datetime that represents the end of a custom time frame. Offset is ignored and the company timezone is used.",
"type": "string",
"format": "date-time",
"example": "2022-11-08T00:00:00+00:00"
}
},
"required": [
"start",
"end"
]
}