@digipair/skill-web-spectrum 0.25.6 → 0.27.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/schema.fr.json +1095 -0
- package/schema.json +217 -217
package/schema.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"info": {
|
|
4
4
|
"title": "@digipair/skill-web-spectrum",
|
|
5
5
|
"summary": "Design System Spectrum",
|
|
6
|
-
"description": "
|
|
6
|
+
"description": "This skill allows users to create web interfaces using the Spectrum design system.",
|
|
7
7
|
"version": "0.1.0",
|
|
8
8
|
"x-icon": "🎨"
|
|
9
9
|
},
|
|
@@ -11,41 +11,41 @@
|
|
|
11
11
|
"/sp-theme": {
|
|
12
12
|
"post": {
|
|
13
13
|
"tags": ["web", "needPins", "requirePins"],
|
|
14
|
-
"summary": "
|
|
15
|
-
"description": "
|
|
14
|
+
"summary": "Theme",
|
|
15
|
+
"description": "Interface theme",
|
|
16
16
|
"parameters": [
|
|
17
17
|
{
|
|
18
18
|
"name": "theme",
|
|
19
|
-
"summary": "
|
|
19
|
+
"summary": "Name",
|
|
20
20
|
"required": false,
|
|
21
|
-
"description": "
|
|
21
|
+
"description": "Name of the theme to apply",
|
|
22
22
|
"schema": {
|
|
23
23
|
"type": "string"
|
|
24
24
|
}
|
|
25
25
|
},
|
|
26
26
|
{
|
|
27
27
|
"name": "color",
|
|
28
|
-
"summary": "
|
|
28
|
+
"summary": "Color",
|
|
29
29
|
"required": false,
|
|
30
|
-
"description": "
|
|
30
|
+
"description": "Theme color",
|
|
31
31
|
"schema": {
|
|
32
32
|
"type": "string"
|
|
33
33
|
}
|
|
34
34
|
},
|
|
35
35
|
{
|
|
36
36
|
"name": "scale",
|
|
37
|
-
"summary": "
|
|
37
|
+
"summary": "Size",
|
|
38
38
|
"required": false,
|
|
39
|
-
"description": "
|
|
39
|
+
"description": "Theme scale",
|
|
40
40
|
"schema": {
|
|
41
41
|
"type": "string"
|
|
42
42
|
}
|
|
43
43
|
},
|
|
44
44
|
{
|
|
45
45
|
"name": "style",
|
|
46
|
-
"summary": "
|
|
46
|
+
"summary": "Custom style",
|
|
47
47
|
"required": false,
|
|
48
|
-
"description": "
|
|
48
|
+
"description": "Customization of theme styles",
|
|
49
49
|
"schema": {
|
|
50
50
|
"type": "string"
|
|
51
51
|
}
|
|
@@ -57,23 +57,23 @@
|
|
|
57
57
|
"/sp-table": {
|
|
58
58
|
"post": {
|
|
59
59
|
"tags": ["web", "needPins", "requirePins"],
|
|
60
|
-
"summary": "
|
|
61
|
-
"description": "
|
|
60
|
+
"summary": "Table",
|
|
61
|
+
"description": "Table of elements",
|
|
62
62
|
"parameters": [
|
|
63
63
|
{
|
|
64
64
|
"name": "selects",
|
|
65
|
-
"summary": "
|
|
65
|
+
"summary": "Selection type",
|
|
66
66
|
"required": false,
|
|
67
|
-
"description": "Type
|
|
67
|
+
"description": "Type of row selection in the table",
|
|
68
68
|
"schema": {
|
|
69
69
|
"type": "string"
|
|
70
70
|
}
|
|
71
71
|
},
|
|
72
72
|
{
|
|
73
73
|
"name": "selected",
|
|
74
|
-
"summary": "
|
|
74
|
+
"summary": "Selected rows",
|
|
75
75
|
"required": false,
|
|
76
|
-
"description": "
|
|
76
|
+
"description": "Rows selected at table initialization",
|
|
77
77
|
"schema": {
|
|
78
78
|
"type": "string"
|
|
79
79
|
}
|
|
@@ -82,9 +82,9 @@
|
|
|
82
82
|
"x-events": [
|
|
83
83
|
{
|
|
84
84
|
"name": "change",
|
|
85
|
-
"summary": "
|
|
85
|
+
"summary": "On change",
|
|
86
86
|
"required": false,
|
|
87
|
-
"description": "Action
|
|
87
|
+
"description": "Action triggered when the selection of rows in the table changes",
|
|
88
88
|
"schema": {
|
|
89
89
|
"type": "array",
|
|
90
90
|
"items": {
|
|
@@ -98,8 +98,8 @@
|
|
|
98
98
|
"/sp-table-head": {
|
|
99
99
|
"post": {
|
|
100
100
|
"tags": ["web", "needPins", "requirePins"],
|
|
101
|
-
"summary": "
|
|
102
|
-
"description": "
|
|
101
|
+
"summary": "Header",
|
|
102
|
+
"description": "Table header",
|
|
103
103
|
"parameters": [],
|
|
104
104
|
"x-events": []
|
|
105
105
|
}
|
|
@@ -107,14 +107,14 @@
|
|
|
107
107
|
"/sp-table-head-cell": {
|
|
108
108
|
"post": {
|
|
109
109
|
"tags": ["web", "needPins"],
|
|
110
|
-
"summary": "
|
|
111
|
-
"description": "
|
|
110
|
+
"summary": "Header cell",
|
|
111
|
+
"description": "Header cell of a table",
|
|
112
112
|
"parameters": [
|
|
113
113
|
{
|
|
114
114
|
"name": "textContent",
|
|
115
|
-
"summary": "
|
|
115
|
+
"summary": "Text",
|
|
116
116
|
"required": false,
|
|
117
|
-
"description": "
|
|
117
|
+
"description": "Text of the header cell",
|
|
118
118
|
"schema": {
|
|
119
119
|
"type": "string"
|
|
120
120
|
}
|
|
@@ -126,8 +126,8 @@
|
|
|
126
126
|
"/sp-table-body": {
|
|
127
127
|
"post": {
|
|
128
128
|
"tags": ["web", "needPins", "requirePins"],
|
|
129
|
-
"summary": "
|
|
130
|
-
"description": "
|
|
129
|
+
"summary": "Table content",
|
|
130
|
+
"description": "Content of a table",
|
|
131
131
|
"parameters": [],
|
|
132
132
|
"x-events": []
|
|
133
133
|
}
|
|
@@ -135,14 +135,14 @@
|
|
|
135
135
|
"/sp-table-row": {
|
|
136
136
|
"post": {
|
|
137
137
|
"tags": ["web", "needPins", "requirePins"],
|
|
138
|
-
"summary": "
|
|
139
|
-
"description": "
|
|
138
|
+
"summary": "Row",
|
|
139
|
+
"description": "Row of a table",
|
|
140
140
|
"parameters": [
|
|
141
141
|
{
|
|
142
142
|
"name": "value",
|
|
143
|
-
"summary": "
|
|
143
|
+
"summary": "Identifier",
|
|
144
144
|
"required": false,
|
|
145
|
-
"description": "
|
|
145
|
+
"description": "Identifier of the table row",
|
|
146
146
|
"schema": {
|
|
147
147
|
"type": "string"
|
|
148
148
|
}
|
|
@@ -154,14 +154,14 @@
|
|
|
154
154
|
"/sp-table-cell": {
|
|
155
155
|
"post": {
|
|
156
156
|
"tags": ["web", "needPins"],
|
|
157
|
-
"summary": "
|
|
158
|
-
"description": "
|
|
157
|
+
"summary": "Cell",
|
|
158
|
+
"description": "Cell of a table",
|
|
159
159
|
"parameters": [
|
|
160
160
|
{
|
|
161
161
|
"name": "textContent",
|
|
162
|
-
"summary": "
|
|
162
|
+
"summary": "Text",
|
|
163
163
|
"required": false,
|
|
164
|
-
"description": "
|
|
164
|
+
"description": "Text of the cell",
|
|
165
165
|
"schema": {
|
|
166
166
|
"type": "string"
|
|
167
167
|
}
|
|
@@ -173,23 +173,23 @@
|
|
|
173
173
|
"/sp-action-group": {
|
|
174
174
|
"post": {
|
|
175
175
|
"tags": ["web", "needPins", "requirePins"],
|
|
176
|
-
"summary": "
|
|
177
|
-
"description": "
|
|
176
|
+
"summary": "Action group",
|
|
177
|
+
"description": "Group of actions",
|
|
178
178
|
"parameters": [
|
|
179
179
|
{
|
|
180
180
|
"name": "id",
|
|
181
|
-
"summary": "
|
|
181
|
+
"summary": "Identifier",
|
|
182
182
|
"required": false,
|
|
183
|
-
"description": "
|
|
183
|
+
"description": "Identifier of the action group",
|
|
184
184
|
"schema": {
|
|
185
185
|
"type": "string"
|
|
186
186
|
}
|
|
187
187
|
},
|
|
188
188
|
{
|
|
189
189
|
"name": "size",
|
|
190
|
-
"summary": "
|
|
190
|
+
"summary": "Size",
|
|
191
191
|
"required": false,
|
|
192
|
-
"description": "
|
|
192
|
+
"description": "Size of the action group buttons",
|
|
193
193
|
"schema": {
|
|
194
194
|
"type": "string"
|
|
195
195
|
}
|
|
@@ -198,16 +198,16 @@
|
|
|
198
198
|
"name": "dir",
|
|
199
199
|
"summary": "Direction",
|
|
200
200
|
"required": false,
|
|
201
|
-
"description": "
|
|
201
|
+
"description": "Text writing direction (ltr or rtl)",
|
|
202
202
|
"schema": {
|
|
203
203
|
"type": "string"
|
|
204
204
|
}
|
|
205
205
|
},
|
|
206
206
|
{
|
|
207
207
|
"name": "style",
|
|
208
|
-
"summary": "
|
|
208
|
+
"summary": "Custom style",
|
|
209
209
|
"required": false,
|
|
210
|
-
"description": "
|
|
210
|
+
"description": "Customization of theme styles",
|
|
211
211
|
"schema": {
|
|
212
212
|
"type": "string"
|
|
213
213
|
}
|
|
@@ -219,50 +219,50 @@
|
|
|
219
219
|
"/sp-action-button": {
|
|
220
220
|
"post": {
|
|
221
221
|
"tags": ["web", "needPins"],
|
|
222
|
-
"summary": "
|
|
223
|
-
"description": "
|
|
222
|
+
"summary": "Action button",
|
|
223
|
+
"description": "Action button to integrate into an action group",
|
|
224
224
|
"parameters": [
|
|
225
225
|
{
|
|
226
226
|
"name": "textContent",
|
|
227
|
-
"summary": "
|
|
227
|
+
"summary": "Text",
|
|
228
228
|
"required": false,
|
|
229
|
-
"description": "
|
|
229
|
+
"description": "Text of the button",
|
|
230
230
|
"schema": {
|
|
231
231
|
"type": "string"
|
|
232
232
|
}
|
|
233
233
|
},
|
|
234
234
|
{
|
|
235
235
|
"name": "selected",
|
|
236
|
-
"summary": "
|
|
236
|
+
"summary": "Selected",
|
|
237
237
|
"required": false,
|
|
238
|
-
"description": "
|
|
238
|
+
"description": "Selected button",
|
|
239
239
|
"schema": {
|
|
240
240
|
"type": "boolean"
|
|
241
241
|
}
|
|
242
242
|
},
|
|
243
243
|
{
|
|
244
244
|
"name": "disabled",
|
|
245
|
-
"summary": "
|
|
245
|
+
"summary": "Disabled",
|
|
246
246
|
"required": false,
|
|
247
|
-
"description": "
|
|
247
|
+
"description": "Disabled button",
|
|
248
248
|
"schema": {
|
|
249
249
|
"type": "boolean"
|
|
250
250
|
}
|
|
251
251
|
},
|
|
252
252
|
{
|
|
253
253
|
"name": "hold-affordance",
|
|
254
|
-
"summary": "
|
|
254
|
+
"summary": "Action check",
|
|
255
255
|
"required": false,
|
|
256
|
-
"description": "
|
|
256
|
+
"description": "Displays a check indicating the presence of a list of actions",
|
|
257
257
|
"schema": {
|
|
258
258
|
"type": "boolean"
|
|
259
259
|
}
|
|
260
260
|
},
|
|
261
261
|
{
|
|
262
262
|
"name": "quiet",
|
|
263
|
-
"summary": "
|
|
263
|
+
"summary": "Quiet",
|
|
264
264
|
"required": false,
|
|
265
|
-
"description": "
|
|
265
|
+
"description": "Displays the button in quiet mode",
|
|
266
266
|
"schema": {
|
|
267
267
|
"type": "boolean"
|
|
268
268
|
}
|
|
@@ -271,7 +271,7 @@
|
|
|
271
271
|
"name": "toggle",
|
|
272
272
|
"summary": "Toggle",
|
|
273
273
|
"required": false,
|
|
274
|
-
"description": "
|
|
274
|
+
"description": "Displays a toggleable button",
|
|
275
275
|
"schema": {
|
|
276
276
|
"type": "boolean"
|
|
277
277
|
}
|
|
@@ -280,16 +280,16 @@
|
|
|
280
280
|
"name": "slot",
|
|
281
281
|
"summary": "Slot",
|
|
282
282
|
"required": false,
|
|
283
|
-
"description": "
|
|
283
|
+
"description": "Icon placement",
|
|
284
284
|
"schema": {
|
|
285
285
|
"type": "string"
|
|
286
286
|
}
|
|
287
287
|
},
|
|
288
288
|
{
|
|
289
289
|
"name": "size",
|
|
290
|
-
"summary": "
|
|
290
|
+
"summary": "Size",
|
|
291
291
|
"required": false,
|
|
292
|
-
"description": "
|
|
292
|
+
"description": "Size of the button",
|
|
293
293
|
"schema": {
|
|
294
294
|
"type": "string"
|
|
295
295
|
}
|
|
@@ -298,9 +298,9 @@
|
|
|
298
298
|
"x-events": [
|
|
299
299
|
{
|
|
300
300
|
"name": "click",
|
|
301
|
-
"summary": "
|
|
301
|
+
"summary": "On click",
|
|
302
302
|
"required": false,
|
|
303
|
-
"description": "Action
|
|
303
|
+
"description": "Action triggered when clicking the button",
|
|
304
304
|
"schema": {
|
|
305
305
|
"type": "array",
|
|
306
306
|
"items": {
|
|
@@ -314,32 +314,32 @@
|
|
|
314
314
|
"/sp-icon": {
|
|
315
315
|
"post": {
|
|
316
316
|
"tags": ["web"],
|
|
317
|
-
"summary": "
|
|
318
|
-
"description": "
|
|
317
|
+
"summary": "Icon",
|
|
318
|
+
"description": "Displays an icon",
|
|
319
319
|
"parameters": [
|
|
320
320
|
{
|
|
321
321
|
"name": "name",
|
|
322
|
-
"summary": "
|
|
322
|
+
"summary": "Name",
|
|
323
323
|
"required": false,
|
|
324
|
-
"description": "
|
|
324
|
+
"description": "Name of the icon",
|
|
325
325
|
"schema": {
|
|
326
326
|
"type": "string"
|
|
327
327
|
}
|
|
328
328
|
},
|
|
329
329
|
{
|
|
330
330
|
"name": "size",
|
|
331
|
-
"summary": "
|
|
331
|
+
"summary": "Size",
|
|
332
332
|
"required": false,
|
|
333
|
-
"description": "
|
|
333
|
+
"description": "Size of the icon",
|
|
334
334
|
"schema": {
|
|
335
335
|
"type": "string"
|
|
336
336
|
}
|
|
337
337
|
},
|
|
338
338
|
{
|
|
339
339
|
"name": "label",
|
|
340
|
-
"summary": "
|
|
340
|
+
"summary": "Label",
|
|
341
341
|
"required": false,
|
|
342
|
-
"description": "
|
|
342
|
+
"description": "Label text of the icon",
|
|
343
343
|
"schema": {
|
|
344
344
|
"type": "string"
|
|
345
345
|
}
|
|
@@ -348,7 +348,7 @@
|
|
|
348
348
|
"name": "src",
|
|
349
349
|
"summary": "Image",
|
|
350
350
|
"required": false,
|
|
351
|
-
"description": "
|
|
351
|
+
"description": "Link to the image to display",
|
|
352
352
|
"schema": {
|
|
353
353
|
"type": "string"
|
|
354
354
|
}
|
|
@@ -357,7 +357,7 @@
|
|
|
357
357
|
"name": "slot",
|
|
358
358
|
"summary": "Slot",
|
|
359
359
|
"required": false,
|
|
360
|
-
"description": "
|
|
360
|
+
"description": "Icon placement",
|
|
361
361
|
"schema": {
|
|
362
362
|
"type": "string"
|
|
363
363
|
}
|
|
@@ -369,32 +369,32 @@
|
|
|
369
369
|
"/sp-divider": {
|
|
370
370
|
"post": {
|
|
371
371
|
"tags": ["web"],
|
|
372
|
-
"summary": "
|
|
373
|
-
"description": "
|
|
372
|
+
"summary": "Divider",
|
|
373
|
+
"description": "Divider bar",
|
|
374
374
|
"parameters": [
|
|
375
375
|
{
|
|
376
376
|
"name": "size",
|
|
377
|
-
"summary": "
|
|
377
|
+
"summary": "Size",
|
|
378
378
|
"required": false,
|
|
379
|
-
"description": "
|
|
379
|
+
"description": "Size of the divider bar",
|
|
380
380
|
"schema": {
|
|
381
381
|
"type": "string"
|
|
382
382
|
}
|
|
383
383
|
},
|
|
384
384
|
{
|
|
385
385
|
"name": "style",
|
|
386
|
-
"summary": "
|
|
386
|
+
"summary": "Custom style",
|
|
387
387
|
"required": false,
|
|
388
|
-
"description": "
|
|
388
|
+
"description": "Customization of theme styles",
|
|
389
389
|
"schema": {
|
|
390
390
|
"type": "string"
|
|
391
391
|
}
|
|
392
392
|
},
|
|
393
393
|
{
|
|
394
394
|
"name": "vertical",
|
|
395
|
-
"summary": "
|
|
395
|
+
"summary": "Vertical",
|
|
396
396
|
"required": false,
|
|
397
|
-
"description": "
|
|
397
|
+
"description": "Places the divider bar vertically",
|
|
398
398
|
"schema": {
|
|
399
399
|
"type": "boolean"
|
|
400
400
|
}
|
|
@@ -406,23 +406,23 @@
|
|
|
406
406
|
"/sp-search": {
|
|
407
407
|
"post": {
|
|
408
408
|
"tags": ["web"],
|
|
409
|
-
"summary": "
|
|
410
|
-
"description": "
|
|
409
|
+
"summary": "Search bar",
|
|
410
|
+
"description": "Search bar",
|
|
411
411
|
"parameters": [
|
|
412
412
|
{
|
|
413
413
|
"name": "disabled",
|
|
414
|
-
"summary": "
|
|
414
|
+
"summary": "Disabled",
|
|
415
415
|
"required": false,
|
|
416
|
-
"description": "
|
|
416
|
+
"description": "Disabled search bar",
|
|
417
417
|
"schema": {
|
|
418
418
|
"type": "boolean"
|
|
419
419
|
}
|
|
420
420
|
},
|
|
421
421
|
{
|
|
422
422
|
"name": "quiet",
|
|
423
|
-
"summary": "
|
|
423
|
+
"summary": "Quiet",
|
|
424
424
|
"required": false,
|
|
425
|
-
"description": "
|
|
425
|
+
"description": "Displays the search bar in quiet mode",
|
|
426
426
|
"schema": {
|
|
427
427
|
"type": "boolean"
|
|
428
428
|
}
|
|
@@ -431,9 +431,9 @@
|
|
|
431
431
|
"x-events": [
|
|
432
432
|
{
|
|
433
433
|
"name": "submit",
|
|
434
|
-
"summary": "
|
|
434
|
+
"summary": "On submission",
|
|
435
435
|
"required": false,
|
|
436
|
-
"description": "Action
|
|
436
|
+
"description": "Action triggered when submitting the search",
|
|
437
437
|
"schema": {
|
|
438
438
|
"type": "array",
|
|
439
439
|
"items": {
|
|
@@ -447,8 +447,8 @@
|
|
|
447
447
|
"/sp-top-nav": {
|
|
448
448
|
"post": {
|
|
449
449
|
"tags": ["web", "needPins", "requirePins"],
|
|
450
|
-
"summary": "
|
|
451
|
-
"description": "
|
|
450
|
+
"summary": "Navigation bar",
|
|
451
|
+
"description": "Horizontal navigation bar",
|
|
452
452
|
"parameters": [],
|
|
453
453
|
"x-events": []
|
|
454
454
|
}
|
|
@@ -456,32 +456,32 @@
|
|
|
456
456
|
"/sp-top-nav-item": {
|
|
457
457
|
"post": {
|
|
458
458
|
"tags": ["web", "needPins"],
|
|
459
|
-
"summary": "
|
|
460
|
-
"description": "
|
|
459
|
+
"summary": "Navigation item",
|
|
460
|
+
"description": "Item of the horizontal navigation bar",
|
|
461
461
|
"parameters": [
|
|
462
462
|
{
|
|
463
463
|
"name": "textContent",
|
|
464
|
-
"summary": "
|
|
464
|
+
"summary": "Text",
|
|
465
465
|
"required": false,
|
|
466
|
-
"description": "
|
|
466
|
+
"description": "Text of the navigation item",
|
|
467
467
|
"schema": {
|
|
468
468
|
"type": "string"
|
|
469
469
|
}
|
|
470
470
|
},
|
|
471
471
|
{
|
|
472
472
|
"name": "href",
|
|
473
|
-
"summary": "
|
|
473
|
+
"summary": "Address",
|
|
474
474
|
"required": false,
|
|
475
|
-
"description": "
|
|
475
|
+
"description": "Redirection address",
|
|
476
476
|
"schema": {
|
|
477
477
|
"type": "string"
|
|
478
478
|
}
|
|
479
479
|
},
|
|
480
480
|
{
|
|
481
481
|
"name": "style",
|
|
482
|
-
"summary": "
|
|
482
|
+
"summary": "Custom style",
|
|
483
483
|
"required": false,
|
|
484
|
-
"description": "
|
|
484
|
+
"description": "Customization of navigation bar styles",
|
|
485
485
|
"schema": {
|
|
486
486
|
"type": "string"
|
|
487
487
|
}
|
|
@@ -490,9 +490,9 @@
|
|
|
490
490
|
"x-events": [
|
|
491
491
|
{
|
|
492
492
|
"name": "click",
|
|
493
|
-
"summary": "
|
|
493
|
+
"summary": "On click",
|
|
494
494
|
"required": false,
|
|
495
|
-
"description": "Action
|
|
495
|
+
"description": "Action triggered when clicking the button",
|
|
496
496
|
"schema": {
|
|
497
497
|
"type": "array",
|
|
498
498
|
"items": {
|
|
@@ -506,50 +506,50 @@
|
|
|
506
506
|
"/sp-action-menu": {
|
|
507
507
|
"post": {
|
|
508
508
|
"tags": ["web", "needPins", "requirePins"],
|
|
509
|
-
"summary": "
|
|
510
|
-
"description": "Menu
|
|
509
|
+
"summary": "Action menu",
|
|
510
|
+
"description": "Menu of actions",
|
|
511
511
|
"parameters": [
|
|
512
512
|
{
|
|
513
513
|
"name": "label",
|
|
514
|
-
"summary": "
|
|
514
|
+
"summary": "Label",
|
|
515
515
|
"required": false,
|
|
516
|
-
"description": "
|
|
516
|
+
"description": "Description label of the menu",
|
|
517
517
|
"schema": {
|
|
518
518
|
"type": "string"
|
|
519
519
|
}
|
|
520
520
|
},
|
|
521
521
|
{
|
|
522
522
|
"name": "placement",
|
|
523
|
-
"summary": "
|
|
523
|
+
"summary": "Placement",
|
|
524
524
|
"required": false,
|
|
525
|
-
"description": "
|
|
525
|
+
"description": "Placement of the menu",
|
|
526
526
|
"schema": {
|
|
527
527
|
"type": "string"
|
|
528
528
|
}
|
|
529
529
|
},
|
|
530
530
|
{
|
|
531
531
|
"name": "style",
|
|
532
|
-
"summary": "
|
|
532
|
+
"summary": "Custom style",
|
|
533
533
|
"required": false,
|
|
534
|
-
"description": "
|
|
534
|
+
"description": "Customization of navigation bar styles",
|
|
535
535
|
"schema": {
|
|
536
536
|
"type": "string"
|
|
537
537
|
}
|
|
538
538
|
},
|
|
539
539
|
{
|
|
540
540
|
"name": "quiet",
|
|
541
|
-
"summary": "
|
|
541
|
+
"summary": "Quiet mode",
|
|
542
542
|
"required": false,
|
|
543
|
-
"description": "
|
|
543
|
+
"description": "Enables quiet mode for the menu",
|
|
544
544
|
"schema": {
|
|
545
545
|
"type": "boolean"
|
|
546
546
|
}
|
|
547
547
|
},
|
|
548
548
|
{
|
|
549
549
|
"name": "size",
|
|
550
|
-
"summary": "
|
|
550
|
+
"summary": "Size",
|
|
551
551
|
"required": false,
|
|
552
|
-
"description": "
|
|
552
|
+
"description": "Size of the action group buttons",
|
|
553
553
|
"schema": {
|
|
554
554
|
"type": "string"
|
|
555
555
|
}
|
|
@@ -568,25 +568,25 @@
|
|
|
568
568
|
"name": "slot",
|
|
569
569
|
"summary": "Position",
|
|
570
570
|
"required": false,
|
|
571
|
-
"description": "
|
|
571
|
+
"description": "Description label of the menu",
|
|
572
572
|
"schema": {
|
|
573
573
|
"type": "string"
|
|
574
574
|
}
|
|
575
575
|
},
|
|
576
576
|
{
|
|
577
577
|
"name": "style",
|
|
578
|
-
"summary": "
|
|
578
|
+
"summary": "Custom style",
|
|
579
579
|
"required": false,
|
|
580
|
-
"description": "
|
|
580
|
+
"description": "Customization of navigation bar styles",
|
|
581
581
|
"schema": {
|
|
582
582
|
"type": "string"
|
|
583
583
|
}
|
|
584
584
|
},
|
|
585
585
|
{
|
|
586
586
|
"name": "selectable",
|
|
587
|
-
"summary": "
|
|
587
|
+
"summary": "Selectable",
|
|
588
588
|
"required": false,
|
|
589
|
-
"description": "
|
|
589
|
+
"description": "Enables selectable mode for the menu",
|
|
590
590
|
"schema": {
|
|
591
591
|
"type": "boolean"
|
|
592
592
|
}
|
|
@@ -598,50 +598,50 @@
|
|
|
598
598
|
"/sp-menu-item": {
|
|
599
599
|
"post": {
|
|
600
600
|
"tags": ["web", "needPins"],
|
|
601
|
-
"summary": "
|
|
602
|
-
"description": "
|
|
601
|
+
"summary": "Menu item",
|
|
602
|
+
"description": "Item of the menu",
|
|
603
603
|
"parameters": [
|
|
604
604
|
{
|
|
605
605
|
"name": "textContent",
|
|
606
|
-
"summary": "
|
|
606
|
+
"summary": "Text",
|
|
607
607
|
"required": false,
|
|
608
|
-
"description": "
|
|
608
|
+
"description": "Text of the menu item",
|
|
609
609
|
"schema": {
|
|
610
610
|
"type": "string"
|
|
611
611
|
}
|
|
612
612
|
},
|
|
613
613
|
{
|
|
614
614
|
"name": "href",
|
|
615
|
-
"summary": "
|
|
615
|
+
"summary": "Link",
|
|
616
616
|
"required": false,
|
|
617
|
-
"description": "
|
|
617
|
+
"description": "Link of the menu item",
|
|
618
618
|
"schema": {
|
|
619
619
|
"type": "string"
|
|
620
620
|
}
|
|
621
621
|
},
|
|
622
622
|
{
|
|
623
623
|
"name": "value",
|
|
624
|
-
"summary": "
|
|
624
|
+
"summary": "Value",
|
|
625
625
|
"required": false,
|
|
626
|
-
"description": "
|
|
626
|
+
"description": "Value of the menu item",
|
|
627
627
|
"schema": {
|
|
628
628
|
"type": "string"
|
|
629
629
|
}
|
|
630
630
|
},
|
|
631
631
|
{
|
|
632
632
|
"name": "disabled",
|
|
633
|
-
"summary": "
|
|
633
|
+
"summary": "Disabled",
|
|
634
634
|
"required": false,
|
|
635
|
-
"description": "
|
|
635
|
+
"description": "Disabled item",
|
|
636
636
|
"schema": {
|
|
637
637
|
"type": "boolean"
|
|
638
638
|
}
|
|
639
639
|
},
|
|
640
640
|
{
|
|
641
641
|
"name": "selected",
|
|
642
|
-
"summary": "
|
|
642
|
+
"summary": "Selected",
|
|
643
643
|
"required": false,
|
|
644
|
-
"description": "
|
|
644
|
+
"description": "Selects the item in the menu",
|
|
645
645
|
"schema": {
|
|
646
646
|
"type": "boolean"
|
|
647
647
|
}
|
|
@@ -650,9 +650,9 @@
|
|
|
650
650
|
"x-events": [
|
|
651
651
|
{
|
|
652
652
|
"name": "click",
|
|
653
|
-
"summary": "
|
|
653
|
+
"summary": "On click",
|
|
654
654
|
"required": false,
|
|
655
|
-
"description": "Action
|
|
655
|
+
"description": "Action triggered when clicking the menu item",
|
|
656
656
|
"schema": {
|
|
657
657
|
"type": "array",
|
|
658
658
|
"items": {
|
|
@@ -666,8 +666,8 @@
|
|
|
666
666
|
"sp-menu-divider": {
|
|
667
667
|
"post": {
|
|
668
668
|
"tags": ["web"],
|
|
669
|
-
"summary": "
|
|
670
|
-
"description": "
|
|
669
|
+
"summary": "Menu divider",
|
|
670
|
+
"description": "Menu divider",
|
|
671
671
|
"parameters": [],
|
|
672
672
|
"x-events": []
|
|
673
673
|
}
|
|
@@ -675,14 +675,14 @@
|
|
|
675
675
|
"/sp-illustrated-message": {
|
|
676
676
|
"post": {
|
|
677
677
|
"tags": ["web", "needPins", "requirePins"],
|
|
678
|
-
"summary": "
|
|
679
|
-
"description": "
|
|
678
|
+
"summary": "Illustrated message",
|
|
679
|
+
"description": "Illustrated message",
|
|
680
680
|
"parameters": [
|
|
681
681
|
{
|
|
682
682
|
"name": "heading",
|
|
683
|
-
"summary": "
|
|
683
|
+
"summary": "Title",
|
|
684
684
|
"required": true,
|
|
685
|
-
"description": "
|
|
685
|
+
"description": "Title of the illustrated message",
|
|
686
686
|
"schema": {
|
|
687
687
|
"type": "string"
|
|
688
688
|
}
|
|
@@ -691,7 +691,7 @@
|
|
|
691
691
|
"name": "description",
|
|
692
692
|
"summary": "Description",
|
|
693
693
|
"required": true,
|
|
694
|
-
"description": "Description
|
|
694
|
+
"description": "Description of the illustrated message",
|
|
695
695
|
"schema": {
|
|
696
696
|
"type": "string"
|
|
697
697
|
}
|
|
@@ -702,41 +702,41 @@
|
|
|
702
702
|
"/sp-field-label": {
|
|
703
703
|
"post": {
|
|
704
704
|
"tags": ["web"],
|
|
705
|
-
"summary": "
|
|
706
|
-
"description": "
|
|
705
|
+
"summary": "Field label",
|
|
706
|
+
"description": "Form field label",
|
|
707
707
|
"parameters": [
|
|
708
708
|
{
|
|
709
709
|
"name": "textContent",
|
|
710
|
-
"summary": "
|
|
710
|
+
"summary": "Text",
|
|
711
711
|
"required": true,
|
|
712
|
-
"description": "
|
|
712
|
+
"description": "Text of the element",
|
|
713
713
|
"schema": {
|
|
714
714
|
"type": "string"
|
|
715
715
|
}
|
|
716
716
|
},
|
|
717
717
|
{
|
|
718
718
|
"name": "for",
|
|
719
|
-
"summary": "
|
|
719
|
+
"summary": "For",
|
|
720
720
|
"required": true,
|
|
721
|
-
"description": "
|
|
721
|
+
"description": "Identifier of the associated field",
|
|
722
722
|
"schema": {
|
|
723
723
|
"type": "string"
|
|
724
724
|
}
|
|
725
725
|
},
|
|
726
726
|
{
|
|
727
727
|
"name": "required",
|
|
728
|
-
"summary": "
|
|
728
|
+
"summary": "Required",
|
|
729
729
|
"required": false,
|
|
730
|
-
"description": "
|
|
730
|
+
"description": "Required field",
|
|
731
731
|
"schema": {
|
|
732
732
|
"type": "boolean"
|
|
733
733
|
}
|
|
734
734
|
},
|
|
735
735
|
{
|
|
736
736
|
"name": "size",
|
|
737
|
-
"summary": "
|
|
737
|
+
"summary": "Size",
|
|
738
738
|
"required": false,
|
|
739
|
-
"description": "
|
|
739
|
+
"description": "Size of the field",
|
|
740
740
|
"schema": {
|
|
741
741
|
"type": "string"
|
|
742
742
|
}
|
|
@@ -747,23 +747,23 @@
|
|
|
747
747
|
"/sp-textfield": {
|
|
748
748
|
"post": {
|
|
749
749
|
"tags": ["web", "needPins"],
|
|
750
|
-
"summary": "
|
|
751
|
-
"description": "
|
|
750
|
+
"summary": "Text field",
|
|
751
|
+
"description": "Form text field",
|
|
752
752
|
"parameters": [
|
|
753
753
|
{
|
|
754
754
|
"name": "id",
|
|
755
|
-
"summary": "
|
|
755
|
+
"summary": "Identifier",
|
|
756
756
|
"required": false,
|
|
757
|
-
"description": "
|
|
757
|
+
"description": "Identifier of the field",
|
|
758
758
|
"schema": {
|
|
759
759
|
"type": "string"
|
|
760
760
|
}
|
|
761
761
|
},
|
|
762
762
|
{
|
|
763
763
|
"name": "name",
|
|
764
|
-
"summary": "
|
|
764
|
+
"summary": "Name",
|
|
765
765
|
"required": false,
|
|
766
|
-
"description": "
|
|
766
|
+
"description": "Name of the field",
|
|
767
767
|
"schema": {
|
|
768
768
|
"type": "string"
|
|
769
769
|
}
|
|
@@ -772,43 +772,43 @@
|
|
|
772
772
|
"name": "placeholder",
|
|
773
773
|
"summary": "Placeholder",
|
|
774
774
|
"required": false,
|
|
775
|
-
"description": "
|
|
775
|
+
"description": "Placeholder text of the field",
|
|
776
776
|
"schema": {
|
|
777
777
|
"type": "string"
|
|
778
778
|
}
|
|
779
779
|
},
|
|
780
780
|
{
|
|
781
781
|
"name": "valide",
|
|
782
|
-
"summary": "
|
|
782
|
+
"summary": "Valid",
|
|
783
783
|
"required": false,
|
|
784
|
-
"description": "
|
|
784
|
+
"description": "Valid field",
|
|
785
785
|
"schema": {
|
|
786
786
|
"type": "boolean"
|
|
787
787
|
}
|
|
788
788
|
},
|
|
789
789
|
{
|
|
790
790
|
"name": "invalide",
|
|
791
|
-
"summary": "
|
|
791
|
+
"summary": "Invalid",
|
|
792
792
|
"required": false,
|
|
793
|
-
"description": "
|
|
793
|
+
"description": "Invalid field",
|
|
794
794
|
"schema": {
|
|
795
795
|
"type": "boolean"
|
|
796
796
|
}
|
|
797
797
|
},
|
|
798
798
|
{
|
|
799
799
|
"name": "value",
|
|
800
|
-
"summary": "
|
|
800
|
+
"summary": "Value",
|
|
801
801
|
"required": false,
|
|
802
|
-
"description": "
|
|
802
|
+
"description": "Value of the field",
|
|
803
803
|
"schema": {
|
|
804
804
|
"type": "string"
|
|
805
805
|
}
|
|
806
806
|
},
|
|
807
807
|
{
|
|
808
808
|
"name": "quiet",
|
|
809
|
-
"summary": "
|
|
809
|
+
"summary": "Quiet",
|
|
810
810
|
"required": false,
|
|
811
|
-
"description": "
|
|
811
|
+
"description": "Field in quiet mode",
|
|
812
812
|
"schema": {
|
|
813
813
|
"type": "boolean"
|
|
814
814
|
}
|
|
@@ -817,25 +817,25 @@
|
|
|
817
817
|
"name": "type",
|
|
818
818
|
"summary": "Type",
|
|
819
819
|
"required": false,
|
|
820
|
-
"description": "Type
|
|
820
|
+
"description": "Type of the field",
|
|
821
821
|
"schema": {
|
|
822
822
|
"type": "string"
|
|
823
823
|
}
|
|
824
824
|
},
|
|
825
825
|
{
|
|
826
826
|
"name": "multiline",
|
|
827
|
-
"summary": "
|
|
827
|
+
"summary": "Multiline",
|
|
828
828
|
"required": false,
|
|
829
|
-
"description": "
|
|
829
|
+
"description": "Multiline field",
|
|
830
830
|
"schema": {
|
|
831
831
|
"type": "boolean"
|
|
832
832
|
}
|
|
833
833
|
},
|
|
834
834
|
{
|
|
835
835
|
"name": "grows",
|
|
836
|
-
"summary": "
|
|
836
|
+
"summary": "Grows automatically",
|
|
837
837
|
"required": false,
|
|
838
|
-
"description": "
|
|
838
|
+
"description": "Field that grows automatically",
|
|
839
839
|
"schema": {
|
|
840
840
|
"type": "boolean"
|
|
841
841
|
}
|
|
@@ -844,25 +844,25 @@
|
|
|
844
844
|
"name": "pattern",
|
|
845
845
|
"summary": "Pattern",
|
|
846
846
|
"required": false,
|
|
847
|
-
"description": "Pattern
|
|
847
|
+
"description": "Pattern of the field",
|
|
848
848
|
"schema": {
|
|
849
849
|
"type": "string"
|
|
850
850
|
}
|
|
851
851
|
},
|
|
852
852
|
{
|
|
853
853
|
"name": "size",
|
|
854
|
-
"summary": "
|
|
854
|
+
"summary": "Size",
|
|
855
855
|
"required": false,
|
|
856
|
-
"description": "
|
|
856
|
+
"description": "Size of the field",
|
|
857
857
|
"schema": {
|
|
858
858
|
"type": "string"
|
|
859
859
|
}
|
|
860
860
|
},
|
|
861
861
|
{
|
|
862
862
|
"name": "style",
|
|
863
|
-
"summary": "
|
|
863
|
+
"summary": "Custom style",
|
|
864
864
|
"required": false,
|
|
865
|
-
"description": "
|
|
865
|
+
"description": "Customization of styles",
|
|
866
866
|
"schema": {
|
|
867
867
|
"type": "string"
|
|
868
868
|
}
|
|
@@ -871,9 +871,9 @@
|
|
|
871
871
|
"x-events": [
|
|
872
872
|
{
|
|
873
873
|
"name": "input",
|
|
874
|
-
"summary": "
|
|
874
|
+
"summary": "On input",
|
|
875
875
|
"required": false,
|
|
876
|
-
"description": "Action
|
|
876
|
+
"description": "Action triggered when typing in the field",
|
|
877
877
|
"schema": {
|
|
878
878
|
"type": "array",
|
|
879
879
|
"items": {
|
|
@@ -887,23 +887,23 @@
|
|
|
887
887
|
"/sp-help-text": {
|
|
888
888
|
"post": {
|
|
889
889
|
"tags": ["web"],
|
|
890
|
-
"summary": "
|
|
891
|
-
"description": "
|
|
890
|
+
"summary": "Help text",
|
|
891
|
+
"description": "Help text",
|
|
892
892
|
"parameters": [
|
|
893
893
|
{
|
|
894
894
|
"name": "textContent",
|
|
895
|
-
"summary": "
|
|
895
|
+
"summary": "Text",
|
|
896
896
|
"required": true,
|
|
897
|
-
"description": "
|
|
897
|
+
"description": "Text of the element",
|
|
898
898
|
"schema": {
|
|
899
899
|
"type": "string"
|
|
900
900
|
}
|
|
901
901
|
},
|
|
902
902
|
{
|
|
903
903
|
"name": "slot",
|
|
904
|
-
"summary": "
|
|
904
|
+
"summary": "Placement",
|
|
905
905
|
"required": false,
|
|
906
|
-
"description": "
|
|
906
|
+
"description": "Placement of the help text",
|
|
907
907
|
"schema": {
|
|
908
908
|
"type": "string"
|
|
909
909
|
}
|
|
@@ -914,41 +914,41 @@
|
|
|
914
914
|
"/sp-button": {
|
|
915
915
|
"post": {
|
|
916
916
|
"tags": ["web", "needPins"],
|
|
917
|
-
"summary": "
|
|
918
|
-
"description": "
|
|
917
|
+
"summary": "Button",
|
|
918
|
+
"description": "Button",
|
|
919
919
|
"parameters": [
|
|
920
920
|
{
|
|
921
921
|
"name": "id",
|
|
922
|
-
"summary": "
|
|
922
|
+
"summary": "Identifier",
|
|
923
923
|
"required": false,
|
|
924
|
-
"description": "
|
|
924
|
+
"description": "Identifier of the field",
|
|
925
925
|
"schema": {
|
|
926
926
|
"type": "string"
|
|
927
927
|
}
|
|
928
928
|
},
|
|
929
929
|
{
|
|
930
930
|
"name": "textContent",
|
|
931
|
-
"summary": "
|
|
931
|
+
"summary": "Text",
|
|
932
932
|
"required": false,
|
|
933
|
-
"description": "
|
|
933
|
+
"description": "Text of the element",
|
|
934
934
|
"schema": {
|
|
935
935
|
"type": "string"
|
|
936
936
|
}
|
|
937
937
|
},
|
|
938
938
|
{
|
|
939
939
|
"name": "href",
|
|
940
|
-
"summary": "
|
|
940
|
+
"summary": "Address",
|
|
941
941
|
"required": false,
|
|
942
|
-
"description": "
|
|
942
|
+
"description": "Redirection address of the button",
|
|
943
943
|
"schema": {
|
|
944
944
|
"type": "string"
|
|
945
945
|
}
|
|
946
946
|
},
|
|
947
947
|
{
|
|
948
948
|
"name": "target",
|
|
949
|
-
"summary": "
|
|
949
|
+
"summary": "Target",
|
|
950
950
|
"required": false,
|
|
951
|
-
"description": "
|
|
951
|
+
"description": "Redirection target of the button",
|
|
952
952
|
"schema": {
|
|
953
953
|
"type": "string"
|
|
954
954
|
}
|
|
@@ -957,7 +957,7 @@
|
|
|
957
957
|
"name": "autofocus",
|
|
958
958
|
"summary": "Autofocus",
|
|
959
959
|
"required": false,
|
|
960
|
-
"description": "
|
|
960
|
+
"description": "Automatic selection of the button",
|
|
961
961
|
"schema": {
|
|
962
962
|
"type": "boolean"
|
|
963
963
|
}
|
|
@@ -966,61 +966,61 @@
|
|
|
966
966
|
"name": "type",
|
|
967
967
|
"summary": "Type",
|
|
968
968
|
"required": false,
|
|
969
|
-
"description": "Type
|
|
969
|
+
"description": "Type of the button",
|
|
970
970
|
"schema": {
|
|
971
971
|
"type": "string"
|
|
972
972
|
}
|
|
973
973
|
},
|
|
974
974
|
{
|
|
975
975
|
"name": "size",
|
|
976
|
-
"summary": "
|
|
976
|
+
"summary": "Size",
|
|
977
977
|
"required": false,
|
|
978
|
-
"description": "
|
|
978
|
+
"description": "Size of the button",
|
|
979
979
|
"schema": {
|
|
980
980
|
"type": "string"
|
|
981
981
|
}
|
|
982
982
|
},
|
|
983
983
|
{
|
|
984
984
|
"name": "variant",
|
|
985
|
-
"summary": "
|
|
985
|
+
"summary": "Variant",
|
|
986
986
|
"required": false,
|
|
987
|
-
"description": "
|
|
987
|
+
"description": "Variant of the button",
|
|
988
988
|
"schema": {
|
|
989
989
|
"type": "string"
|
|
990
990
|
}
|
|
991
991
|
},
|
|
992
992
|
{
|
|
993
993
|
"name": "label",
|
|
994
|
-
"summary": "
|
|
994
|
+
"summary": "Label",
|
|
995
995
|
"required": false,
|
|
996
|
-
"description": "
|
|
996
|
+
"description": "Label of the button",
|
|
997
997
|
"schema": {
|
|
998
998
|
"type": "string"
|
|
999
999
|
}
|
|
1000
1000
|
},
|
|
1001
1001
|
{
|
|
1002
1002
|
"name": "icon-only",
|
|
1003
|
-
"summary": "
|
|
1003
|
+
"summary": "Icon only",
|
|
1004
1004
|
"required": false,
|
|
1005
|
-
"description": "
|
|
1005
|
+
"description": "Displays the icon only",
|
|
1006
1006
|
"schema": {
|
|
1007
1007
|
"type": "boolean"
|
|
1008
1008
|
}
|
|
1009
1009
|
},
|
|
1010
1010
|
{
|
|
1011
1011
|
"name": "treatment",
|
|
1012
|
-
"summary": "
|
|
1012
|
+
"summary": "Treatment",
|
|
1013
1013
|
"required": false,
|
|
1014
|
-
"description": "
|
|
1014
|
+
"description": "Treatment of the button",
|
|
1015
1015
|
"schema": {
|
|
1016
1016
|
"type": "string"
|
|
1017
1017
|
}
|
|
1018
1018
|
},
|
|
1019
1019
|
{
|
|
1020
1020
|
"name": "disabled",
|
|
1021
|
-
"summary": "
|
|
1021
|
+
"summary": "Disabled",
|
|
1022
1022
|
"required": false,
|
|
1023
|
-
"description": "
|
|
1023
|
+
"description": "Disabled button",
|
|
1024
1024
|
"schema": {
|
|
1025
1025
|
"type": "boolean"
|
|
1026
1026
|
}
|
|
@@ -1029,9 +1029,9 @@
|
|
|
1029
1029
|
"x-events": [
|
|
1030
1030
|
{
|
|
1031
1031
|
"name": "click",
|
|
1032
|
-
"summary": "
|
|
1032
|
+
"summary": "On click",
|
|
1033
1033
|
"required": false,
|
|
1034
|
-
"description": "Action
|
|
1034
|
+
"description": "Action triggered when clicking the button",
|
|
1035
1035
|
"schema": {
|
|
1036
1036
|
"type": "array",
|
|
1037
1037
|
"items": {
|
|
@@ -1045,41 +1045,41 @@
|
|
|
1045
1045
|
"/sp-toast": {
|
|
1046
1046
|
"post": {
|
|
1047
1047
|
"tags": ["web"],
|
|
1048
|
-
"summary": "
|
|
1049
|
-
"description": "
|
|
1048
|
+
"summary": "Alert message",
|
|
1049
|
+
"description": "Alert message",
|
|
1050
1050
|
"parameters": [
|
|
1051
1051
|
{
|
|
1052
1052
|
"name": "textContent",
|
|
1053
|
-
"summary": "
|
|
1053
|
+
"summary": "Text",
|
|
1054
1054
|
"required": true,
|
|
1055
|
-
"description": "
|
|
1055
|
+
"description": "Text of the element",
|
|
1056
1056
|
"schema": {
|
|
1057
1057
|
"type": "string"
|
|
1058
1058
|
}
|
|
1059
1059
|
},
|
|
1060
1060
|
{
|
|
1061
1061
|
"name": "open",
|
|
1062
|
-
"summary": "
|
|
1062
|
+
"summary": "Open",
|
|
1063
1063
|
"required": true,
|
|
1064
|
-
"description": "
|
|
1064
|
+
"description": "Displays the alert message",
|
|
1065
1065
|
"schema": {
|
|
1066
1066
|
"type": "boolean"
|
|
1067
1067
|
}
|
|
1068
1068
|
},
|
|
1069
1069
|
{
|
|
1070
1070
|
"name": "variant",
|
|
1071
|
-
"summary": "
|
|
1071
|
+
"summary": "Variant",
|
|
1072
1072
|
"required": false,
|
|
1073
|
-
"description": "
|
|
1073
|
+
"description": "Variant of the alert message",
|
|
1074
1074
|
"schema": {
|
|
1075
1075
|
"type": "string"
|
|
1076
1076
|
}
|
|
1077
1077
|
},
|
|
1078
1078
|
{
|
|
1079
1079
|
"name": "id",
|
|
1080
|
-
"summary": "
|
|
1080
|
+
"summary": "Identifier",
|
|
1081
1081
|
"required": false,
|
|
1082
|
-
"description": "
|
|
1082
|
+
"description": "Identifier of the alert message",
|
|
1083
1083
|
"schema": {
|
|
1084
1084
|
"type": "string"
|
|
1085
1085
|
}
|