-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSpreadsheetProperties.json
More file actions
43 lines (43 loc) · 1.61 KB
/
SpreadsheetProperties.json
File metadata and controls
43 lines (43 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "SpreadsheetProperties",
"description": "Properties of a spreadsheet.",
"type": "object",
"properties": {
"title": {
"type": "string",
"description": "The title of the spreadsheet."
},
"locale": {
"type": "string",
"description": "The locale of the spreadsheet in BCP 47 format (e.g., 'en', 'fil', 'en_US')."
},
"autoRecalc": {
"$ref": "RecalculationInterval.json",
"description": "The amount of time to wait before volatile functions are recalculated."
},
"timeZone": {
"type": "string",
"description": "The time zone of the spreadsheet, in CLDR format (e.g., 'America/New_York') or custom (e.g., 'GMT-07:00')."
},
"defaultFormat": {
"$ref": "CellFormat.json",
"description": "The default format of all cells in the spreadsheet. Read-only.",
"readOnly": true
},
"iterativeCalculationSettings": {
"$ref": "IterativeCalculationSettings.json",
"description": "Determines whether and how circular references are resolved with iterative calculation. Absence means circular references cause errors."
},
"spreadsheetTheme": {
"$ref": "SpreadsheetTheme.json",
"description": "Theme applied to the spreadsheet."
},
"importFunctionsExternalUrlAccessAllowed": {
"type": "boolean",
"description": "Whether to allow external URL access for image and import functions. Read only when true. Can be set to true if false. May be bypassed by admin allowlist.",
"readOnly": true
}
},
"additionalProperties": false
}