-
Notifications
You must be signed in to change notification settings - Fork 467
/
gallery.json
104 lines (104 loc) · 3.28 KB
/
gallery.json
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
95
96
97
98
99
100
101
102
103
104
{
"definitions": {},
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://github.com/Microsoft/Application-Insights-Workbooks/blob/master/schema/gallery.json",
"type": "object",
"description": "Workbook template gallery schema",
"required": [
"$schema",
"categories",
"version"
],
"properties": {
"$schema": {
"$id": "#/$schema",
"type": "string",
"default": "https://github.com/Microsoft/Application-Insights-Workbooks/blob/master/schema/gallery.json"
},
"version": {
"$id": "#/properties/version",
"type": "string",
"description": "Gallery version",
"default": "TemplateGallery/1.0"
},
"categories": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"$id": "#/categories/id",
"type": "string",
"description": "ID for the category"
},
"name": {
"$id": "#/categories/name",
"type": "string",
"description": "Name for the category. This field will be localized"
},
"templates": {
"type": "array",
"items": [
{
"type": "object",
"properties": {
"id": {
"$id": "#/categories/templates/id",
"type": "string",
"description": "The folder where the template resides relative to the root repository",
"examples": [
"Workbooks/Performance/Apdex"
]
},
"author": {
"$id": "#/categories/templates/author",
"type": "string",
"description": "Author of the template",
"examples": [
"Microsoft"
]
},
"name": {
"$id": "#/categories/templates/name",
"type": "string",
"description": "Name for the template. This field will be localized"
},
"description": {
"$id": "#/categories/templates/description",
"type": "string",
"description": "Description for the template. This field will be localized"
},
"isPreview": {
"$id": "#/categories/templates/ispreview",
"type": "boolean",
"description": "Optional flag to mark the template as preview"
},
"tags": {
"$id": "#/categories/templates/tags",
"type": "array",
"description": "Optional list of tags that describes the template",
"items": [
{
"type": "string"
}
]
}
},
"required": [
"id",
"author",
"name"
]
}
]
}
},
"required": [
"id",
"name",
"templates"
]
}
}
}
}