{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "weekly-frequency",
"type": "object",
"required": [
"time_of_day",
"day_of_week"
],
"properties": {
"time_of_day": {
"type": "string",
"description": "The time of day to run the export, in `HH:mm` format."
},
"day_of_week": {
"type": "string",
"description": "The day of week to run the export. One of `monday`, `tuesday`, `wednesday`, `thursday`, `friday`, `saturday`, or `sunday`."
}
}
}