@arcgis/languages-sdk-spec 4.33.0-next.99 → 4.34.0-next.1

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.
@@ -14,23 +14,31 @@
14
14
  "description": "Union of API items that can be used in any sdk schema"
15
15
  },
16
16
  "ArcadeApiItem": {
17
- "$ref": "#/definitions/BaseSchemaApiItem<ArcadeBundleType,ArcadeProfileType>"
17
+ "$ref": "#/definitions/BaseSchemaApiItem<ArcadeApiFunction,ArcadeApiConstant>",
18
+ "description": "Arcade Api Item can be either a constant, a function, or an array of functions"
18
19
  },
19
- "BaseSchemaApiItem<ArcadeBundleType,ArcadeProfileType>": {
20
+ "BaseSchemaApiItem<ArcadeApiFunction,ArcadeApiConstant>": {
20
21
  "anyOf": [
22
+ {
23
+ "$ref": "#/definitions/ArcadeApiFunction"
24
+ },
21
25
  {
22
26
  "type": "array",
23
27
  "items": {
24
- "$ref": "#/definitions/BaseSchemaApiFunction<ArcadeBundleType,ArcadeProfileType>"
28
+ "$ref": "#/definitions/ArcadeApiFunction"
25
29
  }
26
30
  },
27
31
  {
28
- "$ref": "#/definitions/SchemaSimpleApiItem<ArcadeBundleType,ArcadeProfileType>"
32
+ "$ref": "#/definitions/ArcadeApiConstant"
29
33
  }
30
34
  ],
31
35
  "description": "Definition for a constant or a function. An Api Item can be either a constant, a function, or an array of functions"
32
36
  },
33
- "BaseSchemaApiFunction<ArcadeBundleType,ArcadeProfileType>": {
37
+ "ArcadeApiFunction": {
38
+ "$ref": "#/definitions/BaseSchemaApiFunction<ArcadeBundleType,ArcadeProfileType,ArcadeValueType>",
39
+ "description": "Definition for Arcade Api function"
40
+ },
41
+ "BaseSchemaApiFunction<ArcadeBundleType,ArcadeProfileType,ArcadeValueType>": {
34
42
  "type": "object",
35
43
  "properties": {
36
44
  "name": {
@@ -97,18 +105,17 @@
97
105
  },
98
106
  "isConstant": {
99
107
  "type": "boolean",
100
- "const": false,
101
108
  "description": "For function this property is optional and always false."
102
109
  },
103
110
  "parameters": {
104
111
  "type": "array",
105
112
  "items": {
106
- "$ref": "#/definitions/SchemaProperty"
113
+ "$ref": "#/definitions/SchemaProperty<ArcadeValueType>"
107
114
  },
108
115
  "description": "The set of function parameters."
109
116
  },
110
117
  "returnValue": {
111
- "$ref": "#/definitions/SchemaReturnValue",
118
+ "$ref": "#/definitions/SchemaReturnValue<ArcadeValueType>",
112
119
  "description": "The type of data returned by the function."
113
120
  }
114
121
  },
@@ -139,6 +146,7 @@
139
146
  "ArcadeBundleType": {
140
147
  "type": "string",
141
148
  "enum": [
149
+ "ai",
142
150
  "core",
143
151
  "data-access",
144
152
  "database",
@@ -206,7 +214,7 @@
206
214
  "additionalProperties": false,
207
215
  "description": "Describes a link to additional resources"
208
216
  },
209
- "SchemaProperty": {
217
+ "SchemaProperty<ArcadeValueType>": {
210
218
  "type": "object",
211
219
  "properties": {
212
220
  "name": {
@@ -217,12 +225,12 @@
217
225
  "type": {
218
226
  "anyOf": [
219
227
  {
220
- "$ref": "#/definitions/SchemaValueType"
228
+ "$ref": "#/definitions/ArcadeValueType"
221
229
  },
222
230
  {
223
231
  "type": "array",
224
232
  "items": {
225
- "$ref": "#/definitions/SchemaValueType"
233
+ "$ref": "#/definitions/ArcadeValueType"
226
234
  }
227
235
  }
228
236
  ],
@@ -249,7 +257,7 @@
249
257
  "properties": {
250
258
  "type": "array",
251
259
  "items": {
252
- "$ref": "#/definitions/SchemaProperty"
260
+ "$ref": "#/definitions/SchemaProperty<ArcadeValueType>"
253
261
  },
254
262
  "description": "The properties if the type is Dictionary."
255
263
  }
@@ -262,7 +270,7 @@
262
270
  "additionalProperties": false,
263
271
  "description": "Describes the properties for the type Property"
264
272
  },
265
- "SchemaValueType": {
273
+ "ArcadeValueType": {
266
274
  "type": "string",
267
275
  "enum": [
268
276
  "Any",
@@ -306,30 +314,29 @@
306
314
  "Text",
307
315
  "Time",
308
316
  "Voxel"
309
- ],
310
- "description": "The collection of supported types."
317
+ ]
311
318
  },
312
- "SchemaReturnValue": {
319
+ "SchemaReturnValue<ArcadeValueType>": {
313
320
  "anyOf": [
314
321
  {
315
- "$ref": "#/definitions/SchemaReturnDefinition"
322
+ "$ref": "#/definitions/SchemaReturnDefinition<ArcadeValueType>"
316
323
  },
317
324
  {
318
- "$ref": "#/definitions/SchemaValueType"
325
+ "$ref": "#/definitions/ArcadeValueType"
319
326
  },
320
327
  {
321
328
  "type": "array",
322
329
  "items": {
323
- "$ref": "#/definitions/SchemaValueType"
330
+ "$ref": "#/definitions/ArcadeValueType"
324
331
  }
325
332
  }
326
333
  ]
327
334
  },
328
- "SchemaReturnDefinition": {
335
+ "SchemaReturnDefinition<ArcadeValueType>": {
329
336
  "type": "object",
330
337
  "properties": {
331
338
  "type": {
332
- "$ref": "#/definitions/SchemaValueType",
339
+ "$ref": "#/definitions/ArcadeValueType",
333
340
  "description": "The data type of the value returned."
334
341
  },
335
342
  "description": {
@@ -349,7 +356,7 @@
349
356
  "properties": {
350
357
  "type": "array",
351
358
  "items": {
352
- "$ref": "#/definitions/SchemaProperty"
359
+ "$ref": "#/definitions/SchemaProperty<ArcadeValueType>"
353
360
  },
354
361
  "description": "The properties if the type returned is a Dictionary"
355
362
  }
@@ -360,16 +367,9 @@
360
367
  "additionalProperties": false,
361
368
  "description": "Describes the type fo data returned by a function."
362
369
  },
363
- "SchemaSimpleApiItem<ArcadeBundleType,ArcadeProfileType>": {
364
- "anyOf": [
365
- {
366
- "$ref": "#/definitions/BaseSchemaApiConstant<ArcadeBundleType,ArcadeProfileType>"
367
- },
368
- {
369
- "$ref": "#/definitions/BaseSchemaApiFunction<ArcadeBundleType,ArcadeProfileType>"
370
- }
371
- ],
372
- "description": "Definition for simple item"
370
+ "ArcadeApiConstant": {
371
+ "$ref": "#/definitions/BaseSchemaApiConstant<ArcadeBundleType,ArcadeProfileType>",
372
+ "description": "Definition for Arcade Api constant"
373
373
  },
374
374
  "BaseSchemaApiConstant<ArcadeBundleType,ArcadeProfileType>": {
375
375
  "type": "object",
@@ -453,31 +453,63 @@
453
453
  "description": "Describes an Api Constant"
454
454
  },
455
455
  "SqlApiItem": {
456
- "$ref": "#/definitions/BaseSchemaApiItem<SqlBundleType,SqlProfileType>",
457
- "description": "Narrowed api item type for sql"
456
+ "$ref": "#/definitions/BaseSchemaApiItem<SqlApiFunction>",
457
+ "description": "Narrowed api item type for sql. Sql does not have constants so all sql items are \"functions\"."
458
458
  },
459
- "BaseSchemaApiItem<SqlBundleType,SqlProfileType>": {
459
+ "BaseSchemaApiItem<SqlApiFunction>": {
460
460
  "anyOf": [
461
+ {
462
+ "$ref": "#/definitions/SqlApiFunction"
463
+ },
461
464
  {
462
465
  "type": "array",
463
466
  "items": {
464
- "$ref": "#/definitions/BaseSchemaApiFunction<SqlBundleType,SqlProfileType>"
467
+ "$ref": "#/definitions/SqlApiFunction"
465
468
  }
466
- },
467
- {
468
- "$ref": "#/definitions/SchemaSimpleApiItem<SqlBundleType,SqlProfileType>"
469
469
  }
470
470
  ],
471
471
  "description": "Definition for a constant or a function. An Api Item can be either a constant, a function, or an array of functions"
472
472
  },
473
- "BaseSchemaApiFunction<SqlBundleType,SqlProfileType>": {
473
+ "SqlApiFunction": {
474
474
  "type": "object",
475
+ "additionalProperties": false,
475
476
  "properties": {
476
477
  "name": {
477
478
  "type": "string",
478
479
  "description": "The name of the function or constant. Must start with a capital letter.",
479
480
  "pattern": "^[A-Z]+[a-zA-Z0-9.]*$"
480
481
  },
482
+ "isSpecialRegister": {
483
+ "type": "boolean",
484
+ "description": "SQL functions may be \"special registers\" that are not called like regular functions. For example, CURRENT_DATE is a special register. These functions are not called with parentheses or arguments."
485
+ },
486
+ "keywords": {
487
+ "type": "array",
488
+ "items": {
489
+ "type": "object",
490
+ "properties": {
491
+ "name": {
492
+ "type": "string",
493
+ "description": "The name of the keyword."
494
+ },
495
+ "description": {
496
+ "type": "string",
497
+ "description": "The description for the keyword."
498
+ },
499
+ "position": {
500
+ "type": "number",
501
+ "description": "(optional) position of the keyword in the function signature, default is to interlace with parameters"
502
+ }
503
+ },
504
+ "required": [
505
+ "name",
506
+ "description"
507
+ ],
508
+ "additionalProperties": false,
509
+ "description": "Describes a keyword used in a function"
510
+ },
511
+ "description": "The set of keywords that are used in the function."
512
+ },
481
513
  "description": {
482
514
  "anyOf": [
483
515
  {
@@ -537,29 +569,27 @@
537
569
  },
538
570
  "isConstant": {
539
571
  "type": "boolean",
540
- "const": false,
541
572
  "description": "For function this property is optional and always false."
542
573
  },
543
574
  "parameters": {
544
575
  "type": "array",
545
576
  "items": {
546
- "$ref": "#/definitions/SchemaProperty"
577
+ "$ref": "#/definitions/SchemaProperty<SqlValueType>"
547
578
  },
548
579
  "description": "The set of function parameters."
549
580
  },
550
581
  "returnValue": {
551
- "$ref": "#/definitions/SchemaReturnValue",
582
+ "$ref": "#/definitions/SchemaReturnValue<SqlValueType>",
552
583
  "description": "The type of data returned by the function."
553
584
  }
554
585
  },
555
- "additionalProperties": false,
556
586
  "required": [
557
587
  "bundle",
558
588
  "description",
559
589
  "name",
560
590
  "snippet"
561
591
  ],
562
- "description": "Describes an Api Function."
592
+ "description": "Narrowed api function type for sql"
563
593
  },
564
594
  "SqlProfileType": {
565
595
  "type": "string",
@@ -568,27 +598,34 @@
568
598
  },
569
599
  "SqlBundleType": {
570
600
  "type": "string",
571
- "const": "core",
572
- "description": "Supported function bundles"
573
- },
574
- "SchemaSimpleApiItem<SqlBundleType,SqlProfileType>": {
575
- "anyOf": [
576
- {
577
- "$ref": "#/definitions/BaseSchemaApiConstant<SqlBundleType,SqlProfileType>"
578
- },
579
- {
580
- "$ref": "#/definitions/BaseSchemaApiFunction<SqlBundleType,SqlProfileType>"
581
- }
601
+ "enum": [
602
+ "date",
603
+ "numeric",
604
+ "string"
582
605
  ],
583
- "description": "Definition for simple item"
606
+ "description": "Supported function bundles"
584
607
  },
585
- "BaseSchemaApiConstant<SqlBundleType,SqlProfileType>": {
608
+ "SchemaProperty<SqlValueType>": {
586
609
  "type": "object",
587
610
  "properties": {
588
611
  "name": {
589
612
  "type": "string",
590
- "description": "The name of the function or constant. Must start with a capital letter.",
591
- "pattern": "^[A-Z]+[a-zA-Z0-9.]*$"
613
+ "description": "The name of the property.",
614
+ "pattern": "^([a-z]+[a-zA-Z0-9_]*|\\[.*\\])$"
615
+ },
616
+ "type": {
617
+ "anyOf": [
618
+ {
619
+ "$ref": "#/definitions/SqlValueType"
620
+ },
621
+ {
622
+ "type": "array",
623
+ "items": {
624
+ "$ref": "#/definitions/SqlValueType"
625
+ }
626
+ }
627
+ ],
628
+ "description": "The data type of the property value. If the property supports more than one type then use an array."
592
629
  },
593
630
  "description": {
594
631
  "anyOf": [
@@ -602,66 +639,86 @@
602
639
  "type": "string"
603
640
  }
604
641
  ],
605
- "description": "A nice description for the constant or function. It can leverage Github Flavored Markdown formatting."
606
- },
607
- "sinceVersion": {
608
- "type": "string",
609
- "description": "Version string. Format x.y.",
610
- "pattern": "^1\\.\\d+$"
642
+ "description": "The description for the property."
611
643
  },
612
- "disableDocumentation": {
644
+ "optional": {
613
645
  "type": "boolean",
614
- "description": "Indicates if the item should not be documented."
646
+ "description": "Indicates if the property is optional."
615
647
  },
616
- "profiles": {
648
+ "properties": {
617
649
  "type": "array",
618
650
  "items": {
619
- "$ref": "#/definitions/SqlProfileType"
651
+ "$ref": "#/definitions/SchemaProperty<SqlValueType>"
620
652
  },
621
- "description": "The profiles the constant or the function belongs to."
622
- },
623
- "bundle": {
624
- "$ref": "#/definitions/SqlBundleType",
625
- "description": "The bundle the constant or the function belongs to."
626
- },
627
- "image": {
628
- "type": "string",
629
- "description": "The relative path to an image to illustate the constant or the function."
653
+ "description": "The properties if the type is Dictionary."
654
+ }
655
+ },
656
+ "required": [
657
+ "name",
658
+ "type",
659
+ "description"
660
+ ],
661
+ "additionalProperties": false,
662
+ "description": "Describes the properties for the type Property"
663
+ },
664
+ "SqlValueType": {
665
+ "type": "string",
666
+ "enum": [
667
+ "Datetime",
668
+ "Number",
669
+ "String"
670
+ ]
671
+ },
672
+ "SchemaReturnValue<SqlValueType>": {
673
+ "anyOf": [
674
+ {
675
+ "$ref": "#/definitions/SchemaReturnDefinition<SqlValueType>"
630
676
  },
631
- "snippet": {
632
- "type": "string",
633
- "description": "The code that will be injected in the classic editor. Must start with a capital letter and match the name of the funtion or constant.",
634
- "pattern": "^[A-Z]+.*$"
677
+ {
678
+ "$ref": "#/definitions/SqlValueType"
635
679
  },
636
- "examples": {
680
+ {
637
681
  "type": "array",
638
682
  "items": {
639
- "$ref": "#/definitions/SchemaExample"
640
- },
641
- "description": "The collection of examples"
683
+ "$ref": "#/definitions/SqlValueType"
684
+ }
685
+ }
686
+ ]
687
+ },
688
+ "SchemaReturnDefinition<SqlValueType>": {
689
+ "type": "object",
690
+ "properties": {
691
+ "type": {
692
+ "$ref": "#/definitions/SqlValueType",
693
+ "description": "The data type of the value returned."
642
694
  },
643
- "resourceLinks": {
695
+ "description": {
696
+ "anyOf": [
697
+ {
698
+ "type": "array",
699
+ "items": {
700
+ "type": "string"
701
+ }
702
+ },
703
+ {
704
+ "type": "string"
705
+ }
706
+ ],
707
+ "description": "A description for for the value returned."
708
+ },
709
+ "properties": {
644
710
  "type": "array",
645
711
  "items": {
646
- "$ref": "#/definitions/SchemaResourceLink"
712
+ "$ref": "#/definitions/SchemaProperty<SqlValueType>"
647
713
  },
648
- "description": "A collection of links to resources"
649
- },
650
- "isConstant": {
651
- "type": "boolean",
652
- "const": true,
653
- "description": "For constant, the property is mandatory and always true"
714
+ "description": "The properties if the type returned is a Dictionary"
654
715
  }
655
716
  },
656
717
  "required": [
657
- "bundle",
658
- "description",
659
- "isConstant",
660
- "name",
661
- "snippet"
718
+ "type"
662
719
  ],
663
720
  "additionalProperties": false,
664
- "description": "Describes an Api Constant"
721
+ "description": "Describes the type fo data returned by a function."
665
722
  }
666
723
  }
667
724
  }
@@ -3,23 +3,31 @@
3
3
  "$ref": "#/definitions/ArcadeApiItem",
4
4
  "definitions": {
5
5
  "ArcadeApiItem": {
6
- "$ref": "#/definitions/BaseSchemaApiItem<ArcadeBundleType,ArcadeProfileType>"
6
+ "$ref": "#/definitions/BaseSchemaApiItem<ArcadeApiFunction,ArcadeApiConstant>",
7
+ "description": "Arcade Api Item can be either a constant, a function, or an array of functions"
7
8
  },
8
- "BaseSchemaApiItem<ArcadeBundleType,ArcadeProfileType>": {
9
+ "BaseSchemaApiItem<ArcadeApiFunction,ArcadeApiConstant>": {
9
10
  "anyOf": [
11
+ {
12
+ "$ref": "#/definitions/ArcadeApiFunction"
13
+ },
10
14
  {
11
15
  "type": "array",
12
16
  "items": {
13
- "$ref": "#/definitions/BaseSchemaApiFunction<ArcadeBundleType,ArcadeProfileType>"
17
+ "$ref": "#/definitions/ArcadeApiFunction"
14
18
  }
15
19
  },
16
20
  {
17
- "$ref": "#/definitions/SchemaSimpleApiItem<ArcadeBundleType,ArcadeProfileType>"
21
+ "$ref": "#/definitions/ArcadeApiConstant"
18
22
  }
19
23
  ],
20
24
  "description": "Definition for a constant or a function. An Api Item can be either a constant, a function, or an array of functions"
21
25
  },
22
- "BaseSchemaApiFunction<ArcadeBundleType,ArcadeProfileType>": {
26
+ "ArcadeApiFunction": {
27
+ "$ref": "#/definitions/BaseSchemaApiFunction<ArcadeBundleType,ArcadeProfileType,ArcadeValueType>",
28
+ "description": "Definition for Arcade Api function"
29
+ },
30
+ "BaseSchemaApiFunction<ArcadeBundleType,ArcadeProfileType,ArcadeValueType>": {
23
31
  "type": "object",
24
32
  "properties": {
25
33
  "name": {
@@ -86,18 +94,17 @@
86
94
  },
87
95
  "isConstant": {
88
96
  "type": "boolean",
89
- "const": false,
90
97
  "description": "For function this property is optional and always false."
91
98
  },
92
99
  "parameters": {
93
100
  "type": "array",
94
101
  "items": {
95
- "$ref": "#/definitions/SchemaProperty"
102
+ "$ref": "#/definitions/SchemaProperty<ArcadeValueType>"
96
103
  },
97
104
  "description": "The set of function parameters."
98
105
  },
99
106
  "returnValue": {
100
- "$ref": "#/definitions/SchemaReturnValue",
107
+ "$ref": "#/definitions/SchemaReturnValue<ArcadeValueType>",
101
108
  "description": "The type of data returned by the function."
102
109
  }
103
110
  },
@@ -128,6 +135,7 @@
128
135
  "ArcadeBundleType": {
129
136
  "type": "string",
130
137
  "enum": [
138
+ "ai",
131
139
  "core",
132
140
  "data-access",
133
141
  "database",
@@ -195,7 +203,7 @@
195
203
  "additionalProperties": false,
196
204
  "description": "Describes a link to additional resources"
197
205
  },
198
- "SchemaProperty": {
206
+ "SchemaProperty<ArcadeValueType>": {
199
207
  "type": "object",
200
208
  "properties": {
201
209
  "name": {
@@ -206,12 +214,12 @@
206
214
  "type": {
207
215
  "anyOf": [
208
216
  {
209
- "$ref": "#/definitions/SchemaValueType"
217
+ "$ref": "#/definitions/ArcadeValueType"
210
218
  },
211
219
  {
212
220
  "type": "array",
213
221
  "items": {
214
- "$ref": "#/definitions/SchemaValueType"
222
+ "$ref": "#/definitions/ArcadeValueType"
215
223
  }
216
224
  }
217
225
  ],
@@ -238,7 +246,7 @@
238
246
  "properties": {
239
247
  "type": "array",
240
248
  "items": {
241
- "$ref": "#/definitions/SchemaProperty"
249
+ "$ref": "#/definitions/SchemaProperty<ArcadeValueType>"
242
250
  },
243
251
  "description": "The properties if the type is Dictionary."
244
252
  }
@@ -251,7 +259,7 @@
251
259
  "additionalProperties": false,
252
260
  "description": "Describes the properties for the type Property"
253
261
  },
254
- "SchemaValueType": {
262
+ "ArcadeValueType": {
255
263
  "type": "string",
256
264
  "enum": [
257
265
  "Any",
@@ -295,30 +303,29 @@
295
303
  "Text",
296
304
  "Time",
297
305
  "Voxel"
298
- ],
299
- "description": "The collection of supported types."
306
+ ]
300
307
  },
301
- "SchemaReturnValue": {
308
+ "SchemaReturnValue<ArcadeValueType>": {
302
309
  "anyOf": [
303
310
  {
304
- "$ref": "#/definitions/SchemaReturnDefinition"
311
+ "$ref": "#/definitions/SchemaReturnDefinition<ArcadeValueType>"
305
312
  },
306
313
  {
307
- "$ref": "#/definitions/SchemaValueType"
314
+ "$ref": "#/definitions/ArcadeValueType"
308
315
  },
309
316
  {
310
317
  "type": "array",
311
318
  "items": {
312
- "$ref": "#/definitions/SchemaValueType"
319
+ "$ref": "#/definitions/ArcadeValueType"
313
320
  }
314
321
  }
315
322
  ]
316
323
  },
317
- "SchemaReturnDefinition": {
324
+ "SchemaReturnDefinition<ArcadeValueType>": {
318
325
  "type": "object",
319
326
  "properties": {
320
327
  "type": {
321
- "$ref": "#/definitions/SchemaValueType",
328
+ "$ref": "#/definitions/ArcadeValueType",
322
329
  "description": "The data type of the value returned."
323
330
  },
324
331
  "description": {
@@ -338,7 +345,7 @@
338
345
  "properties": {
339
346
  "type": "array",
340
347
  "items": {
341
- "$ref": "#/definitions/SchemaProperty"
348
+ "$ref": "#/definitions/SchemaProperty<ArcadeValueType>"
342
349
  },
343
350
  "description": "The properties if the type returned is a Dictionary"
344
351
  }
@@ -349,16 +356,9 @@
349
356
  "additionalProperties": false,
350
357
  "description": "Describes the type fo data returned by a function."
351
358
  },
352
- "SchemaSimpleApiItem<ArcadeBundleType,ArcadeProfileType>": {
353
- "anyOf": [
354
- {
355
- "$ref": "#/definitions/BaseSchemaApiConstant<ArcadeBundleType,ArcadeProfileType>"
356
- },
357
- {
358
- "$ref": "#/definitions/BaseSchemaApiFunction<ArcadeBundleType,ArcadeProfileType>"
359
- }
360
- ],
361
- "description": "Definition for simple item"
359
+ "ArcadeApiConstant": {
360
+ "$ref": "#/definitions/BaseSchemaApiConstant<ArcadeBundleType,ArcadeProfileType>",
361
+ "description": "Definition for Arcade Api constant"
362
362
  },
363
363
  "BaseSchemaApiConstant<ArcadeBundleType,ArcadeProfileType>": {
364
364
  "type": "object",
@@ -87,6 +87,7 @@
87
87
  "ArcadeBundleType": {
88
88
  "type": "string",
89
89
  "enum": [
90
+ "ai",
90
91
  "core",
91
92
  "data-access",
92
93
  "database",
@@ -101,6 +101,7 @@
101
101
  "ArcadeBundleType": {
102
102
  "type": "string",
103
103
  "enum": [
104
+ "ai",
104
105
  "core",
105
106
  "data-access",
106
107
  "database",
@@ -237,7 +238,11 @@
237
238
  },
238
239
  "SqlBundleType": {
239
240
  "type": "string",
240
- "const": "core",
241
+ "enum": [
242
+ "date",
243
+ "numeric",
244
+ "string"
245
+ ],
241
246
  "description": "Supported function bundles"
242
247
  }
243
248
  }