1+ // app/views/my-event/view.json
2+ {
3+ // Required: page and view title.
4+ "title": "Sigma Quickstarts",
5+
6+ // Required: Text description of the event. This will appear in the view
7+ // landing page.
8+ "description": "Follow along in step-by-step tutorials to begin exploring your own data in Sigma.",
9+
10+ // Required: list of string tags by which to include codelabs. Tags are
11+ // specified in the codelab by the codelab author.
12+ "tags": [],
13+
14+ // Optional: list of string categories by which to include codelabs.
15+ // Categories are specified in the codelab by the codelab author.
16+ "categories": [],
17+
18+ // Optional: name of a custom stylesheet to include. See also: point below
19+ // about custom styles.
20+ //"customStyle": "style.css",
21+
22+ // Optional: list of regular expressions to exclude particular codelabs.
23+ "exclude": [],
24+
25+ // Optional: URL to a custom logo for the codelab. If provided, this logo
26+ // must be placed in app/views/<view-id>/ and referenced as such. For
27+ // example, if the event was named "my-event", this logo would exist at
28+ // app/views/my-event/my-event-logo.svg.
29+ //
30+ // Where possible, please use SVG logos. When SVG logos are not available,
31+ // please size images to be 125px high at 72 DPI.
32+ //
33+ // Minify images before uploading using a tool like ImageOptim.
34+ "logoUrl": "/images/og-image.png",
35+
36+ "toolbarBgColor": "#37474F",
37+
38+ // Optional: category level to use for iconography
39+ "catLevel": 0,
40+
41+ // Optional: Method for sorting codelabs.
42+ "sort": "mainCategory",
43+
44+ // Optional: List of codelab IDs that should be "pinned" at the start.
45+ // This is useful for "getting started" codelabs or when users should
46+ // complete codelabs in a specific order.
47+ "pins": [],
48+
49+ // Optional: custom google analytics tracking code. By default, all
50+ // codelab views are tracked on the main codelab analytics.
51+ //"ga": "",
52+
53+ // Optional: If true, do not include this view in the list of views on
54+ // the home page. It will still be accessible via the direct URL.
55+ "hidden": false,
56+ }
0 commit comments