Google Sheets · Schema
DataSourceRefreshSchedule
Schedule for refreshing a data source.
Google WorkspaceProductivitySpreadsheets
Properties
| Name | Type | Description |
|---|---|---|
| enabled | boolean | True if the refresh schedule is enabled. |
| refreshScope | string | The scope of the refresh. |
| nextRun | object | Output only. The time interval of the next run. |
| dailySchedule | object | Daily refresh schedule. |
| weeklySchedule | object | Weekly refresh schedule. |
| monthlySchedule | object | Monthly refresh schedule. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "DataSourceRefreshSchedule",
"type": "object",
"description": "Schedule for refreshing a data source.",
"properties": {
"enabled": {
"type": "boolean",
"description": "True if the refresh schedule is enabled."
},
"refreshScope": {
"type": "string",
"description": "The scope of the refresh."
},
"nextRun": {
"type": "object",
"description": "Output only. The time interval of the next run."
},
"dailySchedule": {
"type": "object",
"description": "Daily refresh schedule."
},
"weeklySchedule": {
"type": "object",
"description": "Weekly refresh schedule."
},
"monthlySchedule": {
"type": "object",
"description": "Monthly refresh schedule."
}
}
}