forked from jtrim-ons/accessible-spreadsheet-creator
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexample-input.json
More file actions
94 lines (94 loc) · 1.91 KB
/
Copy pathexample-input.json
File metadata and controls
94 lines (94 loc) · 1.91 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
{
"coverSheetTitle": "Some pretend data",
"coverSheetContents": [
"## Subtitle 1",
"Text 1a",
"Text 1b",
"## Subtitle 2",
"Text 2a",
"Text 2b",
"[Office for National Statistics](https://www.ons.gov.uk)"
],
"notes": [
{
"name": "note_1",
"text": "Here is a note"
},
{
"name": "another_note",
"text": "Here is another note"
},
{
"name": "note C",
"text": "Another note"
}
],
"sheets": [
{
"sheetName": "Age",
"tableName": "Age",
"sheetIntroText": [
"Some introductory text [[another_note]][[note_1]]"
],
"columns": [
{
"style": "text",
"heading": "Category [[note_1]]",
"values": [
"First category [[note_1]]",
"Second category"
]
},
{
"style": "number_with_commas",
"heading": "Selected group",
"values": [
12345,
1234567
]
},
{
"style": "number_1dp",
"heading": "England and Wales with a really long title",
"values": [
45.6,
45.6
]
}
]
},
{
"sheetName": "Ethnicity",
"tableName": "Ethnicity",
"columns": [
{
"style": "text",
"heading": "Category",
"values": [
"First category",
"Second category",
"Really long looooooong category"
]
},
{
"style": "number_1dp",
"heading": "Selected group",
"values": [
12.3,
12.3,
78.9
]
},
{
"style": "number_1dp",
"heading": "England and Wales with a really long title\n(units)",
"values": [
45.6,
45.6,
45.6
]
}
]
}
]
}