eventDay
Retrieve and filter events for a specific day on Routine, including options to show all-day events, non-all-day events, or both, with customizable date parameters.
Instructions
The events on a given day.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date | Yes | ||
filter | Yes | ||
secondary | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"date": {
"items": [
{
"type": "integer"
},
{
"type": "integer"
},
{
"type": "integer"
}
],
"maxItems": 3,
"minItems": 3,
"type": "array"
},
"filter": {
"enum": [
"only-all-day",
"with-all-day",
"without-all-day"
],
"type": "string"
},
"secondary": {
"type": "boolean"
}
},
"required": [
"date",
"filter",
"secondary"
],
"type": "object"
}