-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSheet.json
More file actions
94 lines (94 loc) · 2.4 KB
/
Sheet.json
File metadata and controls
94 lines (94 loc) · 2.4 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Sheet",
"description": "A sheet in a spreadsheet.",
"type": "object",
"properties": {
"properties": {
"$ref": "SheetProperties.json",
"description": "The properties of the sheet."
},
"data": {
"type": "array",
"items": {
"$ref": "GridData.json"
},
"description": "Data in the grid, if this is a grid sheet. The number of GridData objects returned depends on the ranges requested."
},
"merges": {
"type": "array",
"items": {
"$ref": "GridRange.json"
},
"description": "The ranges that are merged together."
},
"conditionalFormats": {
"type": "array",
"items": {
"$ref": "ConditionalFormatRule.json"
},
"description": "The conditional format rules in this sheet."
},
"filterViews": {
"type": "array",
"items": {
"type": "object"
},
"description": "The filter views in this sheet."
},
"protectedRanges": {
"type": "array",
"items": {
"type": "object"
},
"description": "The protected ranges in this sheet."
},
"basicFilter": {
"type": "object",
"description": "The filter on this sheet, if any."
},
"charts": {
"type": "array",
"items": {
"type": "object"
},
"description": "The specifications of every chart on this sheet."
},
"bandedRanges": {
"type": "array",
"items": {
"type": "object"
},
"description": "The banded (alternating colors) ranges on this sheet."
},
"developerMetadata": {
"type": "array",
"items": {
"type": "object"
},
"description": "The developer metadata associated with a sheet."
},
"rowGroups": {
"type": "array",
"items": {
"type": "object"
},
"description": "All row groups on this sheet, ordered by increasing range start index, then by group depth."
},
"columnGroups": {
"type": "array",
"items": {
"type": "object"
},
"description": "All column groups on this sheet, ordered by increasing range start index, then by group depth."
},
"slicers": {
"type": "array",
"items": {
"type": "object"
},
"description": "The slicers on this sheet."
}
},
"additionalProperties": false
}