@vertigis/viewer-spec 60.9.1 → 61.0.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.
Files changed (36) hide show
  1. package/app-config/schema/common-app-config.schema.json +1 -1
  2. package/app-config/schema/mobile-app-config.schema.json +1 -1
  3. package/app-config/schema/web-app-config.schema.json +1 -1
  4. package/messaging/Event.d.ts +2 -1
  5. package/messaging/registry/geometry.d.ts +2 -3
  6. package/messaging/registry/map.d.ts +1 -1
  7. package/messaging/schema/common-action.schema.json +1834 -575
  8. package/messaging/schema/common-event.schema.json +1639 -305
  9. package/messaging/schema/mobile-action.schema.json +1912 -639
  10. package/messaging/schema/mobile-event.schema.json +1680 -381
  11. package/messaging/schema/web-action.schema.json +2258 -1092
  12. package/messaging/schema/web-charts-command-definitions.md +210 -3
  13. package/messaging/schema/web-drawing-command-definitions.md +18 -57
  14. package/messaging/schema/web-drawing-operation-definitions.md +114 -63
  15. package/messaging/schema/web-edit-command-definitions.md +212 -5
  16. package/messaging/schema/web-event.schema.json +1810 -412
  17. package/messaging/schema/web-geocode-operation-definitions.md +1 -1
  18. package/messaging/schema/web-geolocation-operation-definitions.md +1 -1
  19. package/messaging/schema/web-geometry-operation-definitions.md +77 -16
  20. package/messaging/schema/web-kpi-command-definitions.md +210 -3
  21. package/messaging/schema/web-layer-comparison-command-definitions.md +8 -8
  22. package/messaging/schema/web-layers-command-definitions.md +104 -104
  23. package/messaging/schema/web-layers-operation-definitions.md +37 -37
  24. package/messaging/schema/web-location-marker-command-definitions.md +68 -6
  25. package/messaging/schema/web-map-command-definitions.md +234 -27
  26. package/messaging/schema/web-map-operation-definitions.md +1 -1
  27. package/messaging/schema/web-measurement-command-definitions.md +18 -57
  28. package/messaging/schema/web-measurement-operation-definitions.md +17 -38
  29. package/messaging/schema/web-portal-operation-definitions.md +1 -1
  30. package/messaging/schema/web-results-command-definitions.md +280 -4
  31. package/messaging/schema/web-results-operation-definitions.md +289 -13
  32. package/messaging/schema/web-sketching-command-definitions.md +2 -2
  33. package/messaging/schema/web-sketching-operation-definitions.md +24 -24
  34. package/package.json +2 -2
  35. package/version.d.ts +1 -1
  36. package/version.js +1 -1
@@ -1,28 +1,1175 @@
1
1
  {
2
2
  "$ref": "#/definitions/viewer-spec.Event",
3
3
  "definitions": {
4
+ "@arcgis.core.Color.Color": {
5
+ "$ref": "esri.Color"
6
+ },
7
+ "@arcgis.core.Graphic.Graphic": {
8
+ "$ref": "esri.Graphic"
9
+ },
10
+ "@arcgis.core.Graphic.GraphicProperties": {
11
+ "$ref": "esri.Graphic"
12
+ },
13
+ "@arcgis.core.Map.Map": {
14
+ "$ref": "esri.Map"
15
+ },
16
+ "@arcgis.core.PopupTemplate.PopupTemplate": {
17
+ "$ref": "esri.PopupTemplate"
18
+ },
19
+ "@arcgis.core.analysis.Analysis.Analysis": {
20
+ "$ref": "esri.analysis.Analysis"
21
+ },
22
+ "@arcgis.core.analysis.ElevationProfile.ElevationProfileLineGround.ElevationProfileLineGround": {
23
+ "$ref": "esri.analysis.ElevationProfile.ElevationProfileLineGround"
24
+ },
25
+ "@arcgis.core.analysis.ElevationProfile.ElevationProfileLineInput.ElevationProfileLineInput": {
26
+ "$ref": "esri.analysis.ElevationProfile.ElevationProfileLineInput"
27
+ },
28
+ "@arcgis.core.analysis.ElevationProfile.ElevationProfileLineQuery.ElevationProfileLineQuery": {
29
+ "$ref": "esri.analysis.ElevationProfile.ElevationProfileLineQuery"
30
+ },
31
+ "@arcgis.core.analysis.ElevationProfile.ElevationProfileLineScene.ElevationProfileLineScene": {
32
+ "$ref": "esri.analysis.ElevationProfile.ElevationProfileLineScene"
33
+ },
34
+ "@arcgis.core.analysis.ElevationProfile.types.ElevationProfileLineUnion": {
35
+ "$ref": "esri.analysis.ElevationProfile.types"
36
+ },
37
+ "@arcgis.core.analysis.VolumeMeasurement.types.VolumeMeasureType": {
38
+ "$ref": "esri.analysis.VolumeMeasurement.types"
39
+ },
40
+ "@arcgis.core.core.Collection.CollectionAfterEvent": {
41
+ "properties": {},
42
+ "type": "object"
43
+ },
44
+ "@arcgis.core.core.Collection.CollectionAfterItemEvent": {
45
+ "additionalProperties": false,
46
+ "properties": {
47
+ "item": {
48
+ "$ref": "T_1",
49
+ "description": "The item to add or remove from the collection."
50
+ }
51
+ },
52
+ "required": [
53
+ "item"
54
+ ],
55
+ "type": "object"
56
+ },
57
+ "@arcgis.core.core.Collection.CollectionChangeEvent": {
58
+ "additionalProperties": false,
59
+ "description": "Event object emitted when a [Collection](https://developers.arcgis.com/javascript/latest/references/core/core/Collection/) changes. It contains arrays of added, removed, and moved items.",
60
+ "properties": {
61
+ "added": {
62
+ "description": "An array of items added to the collection using either [add()](https://developers.arcgis.com/javascript/latest/references/core/core/Collection/#add) or [addMany()](https://developers.arcgis.com/javascript/latest/references/core/core/Collection/#addMany).",
63
+ "items": {
64
+ "$ref": "@vertigis.arcgis-extensions.data.PopupContentExtension.PopupContentExtension"
65
+ },
66
+ "type": "array"
67
+ },
68
+ "moved": {
69
+ "description": "An array of items that moved in the collection using [reorder()](https://developers.arcgis.com/javascript/latest/references/core/core/Collection/#reorder).",
70
+ "items": {
71
+ "$ref": "@vertigis.arcgis-extensions.data.PopupContentExtension.PopupContentExtension"
72
+ },
73
+ "type": "array"
74
+ },
75
+ "removed": {
76
+ "description": "An array of items removed from the collection using either [remove()](https://developers.arcgis.com/javascript/latest/references/core/core/Collection/#remove), [removeMany()](https://developers.arcgis.com/javascript/latest/references/core/core/Collection/#removeMany), [removeAt()](https://developers.arcgis.com/javascript/latest/references/core/core/Collection/#removeAt), or [removeAll()](https://developers.arcgis.com/javascript/latest/references/core/core/Collection/#removeAll).",
77
+ "items": {
78
+ "$ref": "@vertigis.arcgis-extensions.data.PopupContentExtension.PopupContentExtension"
79
+ },
80
+ "type": "array"
81
+ }
82
+ },
83
+ "required": [
84
+ "added",
85
+ "moved",
86
+ "removed"
87
+ ],
88
+ "type": "object"
89
+ },
90
+ "@arcgis.core.core.Error.Error": {
91
+ "$ref": "esri.core.Error"
92
+ },
93
+ "@arcgis.core.core.quantity.Area": {
94
+ "$ref": "esri.core.quantity"
95
+ },
96
+ "@arcgis.core.core.quantity.Length": {
97
+ "$ref": "esri.core.quantity"
98
+ },
99
+ "@arcgis.core.core.quantity.Volume": {
100
+ "$ref": "esri.core.quantity"
101
+ },
102
+ "@arcgis.core.editing.types.EditedFeatureResult": {
103
+ "$ref": "esri.editing.types"
104
+ },
105
+ "@arcgis.core.editing.types.EditedFeatures": {
106
+ "$ref": "esri.editing.types"
107
+ },
108
+ "@arcgis.core.editing.types.EditsResultEvent": {
109
+ "additionalProperties": false,
110
+ "properties": {
111
+ "addedAttachments": {
112
+ "description": "An array of successfully added attachments.",
113
+ "items": {
114
+ "$ref": "#/definitions/@arcgis.core.editing.types.FeatureEditResult"
115
+ },
116
+ "type": "array"
117
+ },
118
+ "addedFeatures": {
119
+ "description": "An array of successfully added features.",
120
+ "items": {
121
+ "$ref": "#/definitions/@arcgis.core.editing.types.FeatureEditResult"
122
+ },
123
+ "type": "array"
124
+ },
125
+ "deletedAttachments": {
126
+ "description": "An array of successfully deleted attachments.",
127
+ "items": {
128
+ "$ref": "#/definitions/@arcgis.core.editing.types.FeatureEditResult"
129
+ },
130
+ "type": "array"
131
+ },
132
+ "deletedFeatures": {
133
+ "description": "An array of successfully deleted features.",
134
+ "items": {
135
+ "$ref": "#/definitions/@arcgis.core.editing.types.FeatureEditResult"
136
+ },
137
+ "type": "array"
138
+ },
139
+ "editedFeatures": {
140
+ "description": "Edited features as result of editing a feature that participates in composite relationships in a database. This parameter is returned only when the `returnServiceEditsOption` parameter of the [FeatureLayer.applyEdits()](https://developers.arcgis.com/javascript/latest/references/core/layers/FeatureLayer/#applyEdits) method is set to `original-and-current-features`. This parameter was added at 4.20.",
141
+ "items": {
142
+ "$ref": "#/definitions/@arcgis.core.editing.types.EditedFeatureResult"
143
+ },
144
+ "type": "array"
145
+ },
146
+ "exceededTransferLimit": {
147
+ "description": "Returns `true` when the number of records returned exceeds the maximum number configured on the service.",
148
+ "type": "boolean"
149
+ },
150
+ "updatedAttachments": {
151
+ "description": "An array of successfully updated attachments.",
152
+ "items": {
153
+ "$ref": "#/definitions/@arcgis.core.editing.types.FeatureEditResult"
154
+ },
155
+ "type": "array"
156
+ },
157
+ "updatedFeatures": {
158
+ "description": "An array of successfully updated features.",
159
+ "items": {
160
+ "$ref": "#/definitions/@arcgis.core.editing.types.FeatureEditResult"
161
+ },
162
+ "type": "array"
163
+ }
164
+ },
165
+ "required": [
166
+ "addedAttachments",
167
+ "addedFeatures",
168
+ "deletedAttachments",
169
+ "deletedFeatures",
170
+ "exceededTransferLimit",
171
+ "updatedAttachments",
172
+ "updatedFeatures"
173
+ ],
174
+ "type": "object"
175
+ },
176
+ "@arcgis.core.editing.types.FeatureEditResult": {
177
+ "$ref": "esri.editing.types"
178
+ },
179
+ "@arcgis.core.form.elements.AttachmentElement.AttachmentElement": {
180
+ "$ref": "esri.form.elements.AttachmentElement"
181
+ },
182
+ "@arcgis.core.form.elements.FieldElement.FieldElement": {
183
+ "$ref": "esri.form.elements.FieldElement"
184
+ },
185
+ "@arcgis.core.form.elements.GroupElement.GroupElement": {
186
+ "$ref": "esri.form.elements.GroupElement"
187
+ },
188
+ "@arcgis.core.form.elements.RelationshipElement.RelationshipElement": {
189
+ "$ref": "esri.form.elements.RelationshipElement"
190
+ },
191
+ "@arcgis.core.form.elements.TextElement.TextElement": {
192
+ "$ref": "esri.form.elements.TextElement"
193
+ },
194
+ "@arcgis.core.form.elements.UtilityNetworkAssociationsElement.UtilityNetworkAssociationsElement": {
195
+ "$ref": "esri.form.elements.UtilityNetworkAssociationsElement"
196
+ },
197
+ "@arcgis.core.form.elements.inputs.attachments.AttachmentInput.AttachmentInput": {
198
+ "$ref": "esri.form.elements.inputs.attachments.AttachmentInput"
199
+ },
200
+ "@arcgis.core.form.elements.inputs.attachments.AudioInput.AudioInput": {
201
+ "$ref": "esri.form.elements.inputs.attachments.AudioInput"
202
+ },
203
+ "@arcgis.core.form.elements.inputs.attachments.DocumentInput.DocumentInput": {
204
+ "$ref": "esri.form.elements.inputs.attachments.DocumentInput"
205
+ },
206
+ "@arcgis.core.form.elements.inputs.attachments.ImageInput.ImageInput": {
207
+ "$ref": "esri.form.elements.inputs.attachments.ImageInput"
208
+ },
209
+ "@arcgis.core.form.elements.inputs.attachments.SignatureInput.SignatureInput": {
210
+ "$ref": "esri.form.elements.inputs.attachments.SignatureInput"
211
+ },
212
+ "@arcgis.core.form.elements.inputs.attachments.VideoInput.VideoInput": {
213
+ "$ref": "esri.form.elements.inputs.attachments.VideoInput"
214
+ },
215
+ "@arcgis.core.geometry.Extent.Extent": {
216
+ "$ref": "esri.geometry.Extent"
217
+ },
218
+ "@arcgis.core.geometry.Mesh.Mesh": {
219
+ "$ref": "esri.geometry.Mesh"
220
+ },
221
+ "@arcgis.core.geometry.Multipoint.Multipoint": {
222
+ "$ref": "esri.geometry.Multipoint"
223
+ },
224
+ "@arcgis.core.geometry.Point.Point": {
225
+ "$ref": "esri.geometry.Point"
226
+ },
227
+ "@arcgis.core.geometry.Point.PointProperties": {
228
+ "$ref": "esri.geometry.Point"
229
+ },
230
+ "@arcgis.core.geometry.Polygon.Polygon": {
231
+ "$ref": "esri.geometry.Polygon"
232
+ },
233
+ "@arcgis.core.geometry.Polyline.Polyline": {
234
+ "$ref": "esri.geometry.Polyline"
235
+ },
236
+ "@arcgis.core.geometry.SpatialReference.SpatialReference": {
237
+ "$ref": "esri.geometry.SpatialReference"
238
+ },
239
+ "@arcgis.core.geometry.SpatialReference.SpatialReferenceProperties": {
240
+ "$ref": "esri.geometry.SpatialReference"
241
+ },
242
+ "@arcgis.core.geometry.support.MeshGeoreferencedVertexSpace.MeshGeoreferencedVertexSpace": {
243
+ "$ref": "esri.geometry.support.MeshGeoreferencedVertexSpace"
244
+ },
245
+ "@arcgis.core.geometry.support.MeshLocalVertexSpace.MeshLocalVertexSpace": {
246
+ "$ref": "esri.geometry.support.MeshLocalVertexSpace"
247
+ },
248
+ "@arcgis.core.geometry.types.MeshVertexSpaceUnion": {
249
+ "anyOf": [
250
+ {
251
+ "$ref": "#/definitions/@arcgis.core.geometry.support.MeshLocalVertexSpace.MeshLocalVertexSpace"
252
+ },
253
+ {
254
+ "$ref": "#/definitions/@arcgis.core.geometry.support.MeshGeoreferencedVertexSpace.MeshGeoreferencedVertexSpace"
255
+ }
256
+ ]
257
+ },
258
+ "@arcgis.core.layers.BaseElevationLayer.BaseElevationLayer": {
259
+ "$ref": "esri.layers.BaseElevationLayer"
260
+ },
261
+ "@arcgis.core.layers.ElevationLayer.ElevationLayer": {
262
+ "$ref": "esri.layers.ElevationLayer"
263
+ },
264
+ "@arcgis.core.layers.Layer.Layer": {
265
+ "$ref": "esri.layers.Layer"
266
+ },
267
+ "@arcgis.core.layers.Layer.LayerLayerviewCreateErrorEvent": {
268
+ "additionalProperties": false,
269
+ "properties": {
270
+ "error": {
271
+ "$ref": "#/definitions/Error",
272
+ "description": "An error object describing why the layer view failed to create."
273
+ },
274
+ "view": {
275
+ "$ref": "#/definitions/@arcgis.core.views.View.View",
276
+ "description": "The view that failed to create a layerview for the layer emitting this event."
277
+ }
278
+ },
279
+ "required": [
280
+ "error",
281
+ "view"
282
+ ],
283
+ "type": "object"
284
+ },
285
+ "@arcgis.core.layers.Layer.LayerLayerviewCreateEvent": {
286
+ "additionalProperties": false,
287
+ "properties": {
288
+ "layerView": {
289
+ "$ref": "#/definitions/@arcgis.core.views.layers.LayerView.LayerView",
290
+ "description": "The LayerView rendered in the view representing the layer in `layer`."
291
+ },
292
+ "view": {
293
+ "$ref": "#/definitions/@arcgis.core.views.View.View",
294
+ "description": "The view in which the `layerView` was created."
295
+ }
296
+ },
297
+ "required": [
298
+ "layerView",
299
+ "view"
300
+ ],
301
+ "type": "object"
302
+ },
303
+ "@arcgis.core.layers.Layer.LayerLayerviewDestroyEvent": {
304
+ "additionalProperties": false,
305
+ "properties": {
306
+ "layerView": {
307
+ "$ref": "#/definitions/@arcgis.core.views.layers.LayerView.LayerView",
308
+ "description": "The destroyed LayerView representing the layer."
309
+ },
310
+ "view": {
311
+ "$ref": "#/definitions/@arcgis.core.views.View.View",
312
+ "description": "The view in which the `layerView` was destroyed."
313
+ }
314
+ },
315
+ "required": [
316
+ "layerView",
317
+ "view"
318
+ ],
319
+ "type": "object"
320
+ },
321
+ "@arcgis.core.layers.LinkChartLayer.InitializationLinkChartConfig": {
322
+ "additionalProperties": false,
323
+ "description": "Defines the initial layout for the link chart and any layout settings for newly created link chart layers.",
324
+ "properties": {
325
+ "doNotRecalculateLayout": {
326
+ "description": "By default, the layout algorithm always runs on link charts when they are first created. If all diagram locations are set for every entity in the inclusion definition, this property can be set to `true` which skips the layout algorithm step and increases the performance of larger link charts.",
327
+ "type": "boolean"
328
+ },
329
+ "layoutMode": {
330
+ "$ref": "#/definitions/@arcgis.core.layers.knowledgeGraph.types.LayoutMode",
331
+ "description": "The layout mode to be applied by default. The system default is `organic-standard`."
332
+ },
333
+ "layoutSettings": {
334
+ "$ref": "#/definitions/@arcgis.core.linkChart.LayoutSettings.LayoutSettings",
335
+ "description": "Additional layout options for the default layout configuration."
336
+ }
337
+ },
338
+ "type": "object"
339
+ },
340
+ "@arcgis.core.layers.buildingSublayers.BuildingComponentSublayer.BuildingComponentSublayer": {
341
+ "$ref": "esri.layers.buildingSublayers.BuildingComponentSublayer"
342
+ },
343
+ "@arcgis.core.layers.buildingSublayers.BuildingGroupSublayer.BuildingGroupSublayer": {
344
+ "$ref": "esri.layers.buildingSublayers.BuildingGroupSublayer"
345
+ },
346
+ "@arcgis.core.layers.knowledgeGraph.types.LayoutMode": {
347
+ "$ref": "esri.layers.knowledgeGraph.types"
348
+ },
349
+ "@arcgis.core.layers.mixins.RefreshableLayer.RefreshEvent": {
350
+ "additionalProperties": false,
351
+ "properties": {
352
+ "dataChanged": {
353
+ "description": "Indicates if the layer's data has changed.",
354
+ "type": "boolean"
355
+ }
356
+ },
357
+ "type": "object"
358
+ },
359
+ "@arcgis.core.layers.support.CodedValueDomain.CodedValueDomain": {
360
+ "$ref": "esri.layers.support.CodedValueDomain"
361
+ },
362
+ "@arcgis.core.layers.support.DateTimeFieldFormat.DateTimeFieldFormat": {
363
+ "$ref": "esri.layers.support.DateTimeFieldFormat"
364
+ },
365
+ "@arcgis.core.layers.support.FeatureReductionBinning.FeatureReductionBinning": {
366
+ "$ref": "esri.layers.support.FeatureReductionBinning"
367
+ },
368
+ "@arcgis.core.layers.support.FeatureReductionCluster.FeatureReductionCluster": {
369
+ "$ref": "esri.layers.support.FeatureReductionCluster"
370
+ },
371
+ "@arcgis.core.layers.support.FeatureReductionSelection.FeatureReductionSelection": {
372
+ "$ref": "esri.layers.support.FeatureReductionSelection"
373
+ },
374
+ "@arcgis.core.layers.support.FeatureType.FeatureType": {
375
+ "$ref": "esri.layers.support.FeatureType"
376
+ },
377
+ "@arcgis.core.layers.support.InheritedDomain.InheritedDomain": {
378
+ "$ref": "esri.layers.support.InheritedDomain"
379
+ },
380
+ "@arcgis.core.layers.support.NumberFieldFormat.NumberFieldFormat": {
381
+ "$ref": "esri.layers.support.NumberFieldFormat"
382
+ },
383
+ "@arcgis.core.layers.support.ParquetGeometryEncodingLocation.ParquetGeometryEncodingLocation": {
384
+ "$ref": "esri.layers.support.ParquetGeometryEncodingLocation"
385
+ },
386
+ "@arcgis.core.layers.support.ParquetGeometryEncodingWkb.ParquetGeometryEncodingWkb": {
387
+ "$ref": "esri.layers.support.ParquetGeometryEncodingWkb"
388
+ },
389
+ "@arcgis.core.layers.support.RangeDomain.RangeDomain": {
390
+ "$ref": "esri.layers.support.RangeDomain"
391
+ },
392
+ "@arcgis.core.linkChart.LayoutSettings.LayoutSettings": {
393
+ "$ref": "esri.linkChart.LayoutSettings"
394
+ },
395
+ "@arcgis.core.popup.content.Content.Content": {
396
+ "$ref": "esri.popup.content.Content"
397
+ },
398
+ "@arcgis.core.portal.PortalItem.PortalItem": {
399
+ "$ref": "esri.portal.PortalItem"
400
+ },
401
+ "@arcgis.core.renderers.ClassBreaksRenderer.ClassBreaksRenderer": {
402
+ "$ref": "esri.renderers.ClassBreaksRenderer"
403
+ },
404
+ "@arcgis.core.renderers.DictionaryRenderer.DictionaryRenderer": {
405
+ "$ref": "esri.renderers.DictionaryRenderer"
406
+ },
407
+ "@arcgis.core.renderers.DotDensityRenderer.DotDensityRenderer": {
408
+ "$ref": "esri.renderers.DotDensityRenderer"
409
+ },
410
+ "@arcgis.core.renderers.HeatmapRenderer.HeatmapRenderer": {
411
+ "$ref": "esri.renderers.HeatmapRenderer"
412
+ },
413
+ "@arcgis.core.renderers.PieChartRenderer.PieChartRenderer": {
414
+ "$ref": "esri.renderers.PieChartRenderer"
415
+ },
416
+ "@arcgis.core.renderers.SimpleRenderer.SimpleRenderer": {
417
+ "$ref": "esri.renderers.SimpleRenderer"
418
+ },
419
+ "@arcgis.core.renderers.UniqueValueRenderer.UniqueValueRenderer": {
420
+ "$ref": "esri.renderers.UniqueValueRenderer"
421
+ },
422
+ "@arcgis.core.renderers.types.RendererUnion": {
423
+ "anyOf": [
424
+ {
425
+ "$ref": "#/definitions/@arcgis.core.renderers.SimpleRenderer.SimpleRenderer"
426
+ },
427
+ {
428
+ "$ref": "#/definitions/@arcgis.core.renderers.ClassBreaksRenderer.ClassBreaksRenderer"
429
+ },
430
+ {
431
+ "$ref": "#/definitions/@arcgis.core.renderers.UniqueValueRenderer.UniqueValueRenderer"
432
+ },
433
+ {
434
+ "$ref": "#/definitions/@arcgis.core.renderers.DotDensityRenderer.DotDensityRenderer"
435
+ },
436
+ {
437
+ "$ref": "#/definitions/@arcgis.core.renderers.DictionaryRenderer.DictionaryRenderer"
438
+ },
439
+ {
440
+ "$ref": "#/definitions/@arcgis.core.renderers.PieChartRenderer.PieChartRenderer"
441
+ },
442
+ {
443
+ "$ref": "#/definitions/@arcgis.core.renderers.HeatmapRenderer.HeatmapRenderer"
444
+ }
445
+ ],
446
+ "description": "Union of renderers."
447
+ },
448
+ "@arcgis.core.rest.support.FeatureSet.FeatureSet": {
449
+ "$ref": "esri.rest.support.FeatureSet"
450
+ },
451
+ "@arcgis.core.symbols.CIMSymbol.CIMSymbol": {
452
+ "$ref": "esri.symbols.CIMSymbol"
453
+ },
454
+ "@arcgis.core.symbols.LabelSymbol3D.LabelSymbol3D": {
455
+ "$ref": "esri.symbols.LabelSymbol3D"
456
+ },
457
+ "@arcgis.core.symbols.LineSymbol3D.LineSymbol3D": {
458
+ "$ref": "esri.symbols.LineSymbol3D"
459
+ },
460
+ "@arcgis.core.symbols.MeshSymbol3D.MeshSymbol3D": {
461
+ "$ref": "esri.symbols.MeshSymbol3D"
462
+ },
463
+ "@arcgis.core.symbols.PictureFillSymbol.PictureFillSymbol": {
464
+ "$ref": "esri.symbols.PictureFillSymbol"
465
+ },
466
+ "@arcgis.core.symbols.PictureMarkerSymbol.PictureMarkerSymbol": {
467
+ "$ref": "esri.symbols.PictureMarkerSymbol"
468
+ },
469
+ "@arcgis.core.symbols.PointSymbol3D.PointSymbol3D": {
470
+ "$ref": "esri.symbols.PointSymbol3D"
471
+ },
472
+ "@arcgis.core.symbols.PolygonSymbol3D.PolygonSymbol3D": {
473
+ "$ref": "esri.symbols.PolygonSymbol3D"
474
+ },
475
+ "@arcgis.core.symbols.SimpleFillSymbol.SimpleFillSymbol": {
476
+ "$ref": "esri.symbols.SimpleFillSymbol"
477
+ },
478
+ "@arcgis.core.symbols.SimpleLineSymbol.SimpleLineSymbol": {
479
+ "$ref": "esri.symbols.SimpleLineSymbol"
480
+ },
481
+ "@arcgis.core.symbols.SimpleMarkerSymbol.SimpleMarkerSymbol": {
482
+ "$ref": "esri.symbols.SimpleMarkerSymbol"
483
+ },
484
+ "@arcgis.core.symbols.TextSymbol.TextSymbol": {
485
+ "$ref": "esri.symbols.TextSymbol"
486
+ },
487
+ "@arcgis.core.symbols.WebStyleSymbol.WebStyleSymbol": {
488
+ "$ref": "esri.symbols.WebStyleSymbol"
489
+ },
490
+ "@arcgis.core.symbols.cim.types.CIMAnimatedSymbolEasingType": {
491
+ "$ref": "esri.symbols.cim.types"
492
+ },
493
+ "@arcgis.core.symbols.cim.types.CIMAnimatedSymbolProperties": {
494
+ "additionalProperties": false,
495
+ "description": "Represents animated symbol properties, a collection of symbol properties that apply when the symbol layer has animation data.",
496
+ "properties": {
497
+ "duration": {
498
+ "description": "The time (in seconds) it take to play through the symbol's animation once. This determines a symbol's playback speed.",
499
+ "type": "number"
500
+ },
501
+ "easing": {
502
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMAnimatedSymbolEasingType",
503
+ "description": "The easing method to use when animating the symbol. Only for use with [CIMSymbolAnimation](https://developers.arcgis.com/javascript/latest/references/core/symbols/cim/types/#CIMSymbolAnimation), not animated GIFs/PNGs."
504
+ },
505
+ "playAnimation": {
506
+ "description": "Indicates whether the animated symbol should play its animation.",
507
+ "type": "boolean"
508
+ },
509
+ "randomizeStartSeed": {
510
+ "description": "The starting value for generating a random number. Used by the `randomizeStartTime` property to determine the time offset for each feature.",
511
+ "type": "number"
512
+ },
513
+ "randomizeStartTime": {
514
+ "description": "Indicates whether to generate a randomized start offset in seconds to apply to the symbol animation of each feature.",
515
+ "type": "boolean"
516
+ },
517
+ "repeatDelay": {
518
+ "description": "The number of seconds to delay before repeating an animation cycle.",
519
+ "type": "number"
520
+ },
521
+ "repeatType": {
522
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMAnimatedSymbolRepeatType",
523
+ "description": "Determines how to repeat the animation of a symbol when the animation cycle ends."
524
+ },
525
+ "reverseAnimation": {
526
+ "description": "Indicates whether the animated symbol should play back in reverse.",
527
+ "type": "boolean"
528
+ },
529
+ "startTimeOffset": {
530
+ "description": "The time offset in seconds to use as the starting point of the symbol animation. This is used if `randomizeStartTime` is `false`.",
531
+ "type": "number"
532
+ }
533
+ },
534
+ "type": "object"
535
+ },
536
+ "@arcgis.core.symbols.cim.types.CIMAnimatedSymbolRepeatType": {
537
+ "$ref": "esri.symbols.cim.types"
538
+ },
539
+ "@arcgis.core.symbols.cim.types.CIMColorRampUnion": {
540
+ "anyOf": [
541
+ {
542
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMFixedColorRamp"
543
+ },
544
+ {
545
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMLinearContinuousColorRamp"
546
+ },
547
+ {
548
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMMultipartColorRamp"
549
+ }
550
+ ],
551
+ "description": "Represents a color ramp."
552
+ },
553
+ "@arcgis.core.symbols.cim.types.CIMFixedColorRamp": {
554
+ "$ref": "esri.symbols.cim.types"
555
+ },
556
+ "@arcgis.core.symbols.cim.types.CIMGradientFill": {
557
+ "$ref": "esri.symbols.cim.types"
558
+ },
559
+ "@arcgis.core.symbols.cim.types.CIMGradientStroke": {
560
+ "$ref": "esri.symbols.cim.types"
561
+ },
562
+ "@arcgis.core.symbols.cim.types.CIMHatchFill": {
563
+ "$ref": "esri.symbols.cim.types"
564
+ },
565
+ "@arcgis.core.symbols.cim.types.CIMLineSymbol": {
566
+ "$ref": "esri.symbols.cim.types"
567
+ },
568
+ "@arcgis.core.symbols.cim.types.CIMLinearContinuousColorRamp": {
569
+ "$ref": "esri.symbols.cim.types"
570
+ },
571
+ "@arcgis.core.symbols.cim.types.CIMMultipartColorRamp": {
572
+ "$ref": "esri.symbols.cim.types"
573
+ },
574
+ "@arcgis.core.symbols.cim.types.CIMPictureFill": {
575
+ "$ref": "esri.symbols.cim.types"
576
+ },
577
+ "@arcgis.core.symbols.cim.types.CIMPictureMarker": {
578
+ "$ref": "esri.symbols.cim.types"
579
+ },
580
+ "@arcgis.core.symbols.cim.types.CIMPictureStroke": {
581
+ "$ref": "esri.symbols.cim.types"
582
+ },
583
+ "@arcgis.core.symbols.cim.types.CIMPointSymbol": {
584
+ "$ref": "esri.symbols.cim.types"
585
+ },
586
+ "@arcgis.core.symbols.cim.types.CIMPolygonSymbol": {
587
+ "$ref": "esri.symbols.cim.types"
588
+ },
589
+ "@arcgis.core.symbols.cim.types.CIMSolidFill": {
590
+ "$ref": "esri.symbols.cim.types"
591
+ },
592
+ "@arcgis.core.symbols.cim.types.CIMSolidStroke": {
593
+ "$ref": "esri.symbols.cim.types"
594
+ },
595
+ "@arcgis.core.symbols.cim.types.CIMSymbolUnion": {
596
+ "anyOf": [
597
+ {
598
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMLineSymbol"
599
+ },
600
+ {
601
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMPointSymbol"
602
+ },
603
+ {
604
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMPolygonSymbol"
605
+ },
606
+ {
607
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMTextSymbol"
608
+ }
609
+ ],
610
+ "description": "Represents a union type of all CIM symbol types."
611
+ },
612
+ "@arcgis.core.symbols.cim.types.CIMTextSymbol": {
613
+ "$ref": "esri.symbols.cim.types"
614
+ },
615
+ "@arcgis.core.symbols.cim.types.CIMVectorMarker": {
616
+ "$ref": "esri.symbols.cim.types"
617
+ },
618
+ "@arcgis.core.symbols.types.SymbolUnion": {
619
+ "anyOf": [
620
+ {
621
+ "$ref": "#/definitions/@arcgis.core.symbols.PictureFillSymbol.PictureFillSymbol"
622
+ },
623
+ {
624
+ "$ref": "#/definitions/@arcgis.core.symbols.PictureMarkerSymbol.PictureMarkerSymbol"
625
+ },
626
+ {
627
+ "$ref": "#/definitions/@arcgis.core.symbols.SimpleFillSymbol.SimpleFillSymbol"
628
+ },
629
+ {
630
+ "$ref": "#/definitions/@arcgis.core.symbols.SimpleLineSymbol.SimpleLineSymbol"
631
+ },
632
+ {
633
+ "$ref": "#/definitions/@arcgis.core.symbols.SimpleMarkerSymbol.SimpleMarkerSymbol"
634
+ },
635
+ {
636
+ "$ref": "#/definitions/@arcgis.core.symbols.TextSymbol.TextSymbol"
637
+ },
638
+ {
639
+ "$ref": "#/definitions/@arcgis.core.symbols.CIMSymbol.CIMSymbol"
640
+ },
641
+ {
642
+ "$ref": "#/definitions/@arcgis.core.symbols.LabelSymbol3D.LabelSymbol3D"
643
+ },
644
+ {
645
+ "$ref": "#/definitions/@arcgis.core.symbols.LineSymbol3D.LineSymbol3D"
646
+ },
647
+ {
648
+ "$ref": "#/definitions/@arcgis.core.symbols.MeshSymbol3D.MeshSymbol3D"
649
+ },
650
+ {
651
+ "$ref": "#/definitions/@arcgis.core.symbols.PointSymbol3D.PointSymbol3D"
652
+ },
653
+ {
654
+ "$ref": "#/definitions/@arcgis.core.symbols.PolygonSymbol3D.PolygonSymbol3D"
655
+ },
656
+ {
657
+ "$ref": "#/definitions/@arcgis.core.symbols.WebStyleSymbol.WebStyleSymbol"
658
+ }
659
+ ],
660
+ "description": "Union of all symbols."
661
+ },
4
662
  "@arcgis.core.unionTypes.GeometryUnion": {
663
+ "$ref": "esri.unionTypes"
664
+ },
665
+ "@arcgis.core.views.2d.analysis.AreaMeasurementAnalysisView2D.AreaMeasurementAnalysisView2D": {
666
+ "$ref": "esri.views.2d.analysis.AreaMeasurementAnalysisView2D"
667
+ },
668
+ "@arcgis.core.views.2d.analysis.DistanceMeasurementAnalysisView2D.DistanceMeasurementAnalysisView2D": {
669
+ "$ref": "esri.views.2d.analysis.DistanceMeasurementAnalysisView2D"
670
+ },
671
+ "@arcgis.core.views.2d.analysis.ElevationProfileAnalysisView2D.ElevationProfileAnalysisView2D": {
672
+ "$ref": "esri.views.2d.analysis.ElevationProfileAnalysisView2D"
673
+ },
674
+ "@arcgis.core.views.3d.analysis.AreaMeasurementAnalysisView3D.AreaMeasurementAnalysisView3D": {
675
+ "$ref": "esri.views.3d.analysis.AreaMeasurementAnalysisView3D"
676
+ },
677
+ "@arcgis.core.views.3d.analysis.DimensionAnalysisView3D.DimensionAnalysisView3D": {
678
+ "$ref": "esri.views.3d.analysis.DimensionAnalysisView3D"
679
+ },
680
+ "@arcgis.core.views.3d.analysis.DirectLineMeasurement.types.DirectLineMeasurementAnalysisResult": {
681
+ "additionalProperties": false,
682
+ "description": "Result obtained from a [DirectLineMeasurementAnalysis](https://developers.arcgis.com/javascript/latest/references/core/analysis/DirectLineMeasurementAnalysis/).",
683
+ "properties": {
684
+ "directDistance": {
685
+ "$ref": "#/definitions/@arcgis.core.core.quantity.Length",
686
+ "description": "The 3D distance between the two points that is computed in a Euclidean manner."
687
+ },
688
+ "horizontalDistance": {
689
+ "$ref": "#/definitions/@arcgis.core.core.quantity.Length",
690
+ "description": "Horizontal distance between the two points. It can be measured as the euclidean distance or the geodesic distance depending on the configured measurement mode. In automatic mode, the distance is measured geodetically if the spatial reference is a GCS or WebMercator; otherwise (in non-WebMercator PCS) it is Euclidean."
691
+ },
692
+ "mode": {
693
+ "$ref": "#/definitions/@arcgis.core.views.analysis.types.MeasurementMode",
694
+ "description": "Describes how the `horizontalDistance` is computed.\n- In `euclidean` mode, the horizontal distance is the 2D distance between the two points, computed in a Euclidean manner. This mode is used in scenes with projected coordinate systems (PCS), apart from Web Mercator.\n- In `geodesic` mode, the horizontal distance is computed geodetically. This mode is used in scenes with geographic coordinate systems (GCS) or in Web Mercator."
695
+ },
696
+ "verticalDistance": {
697
+ "$ref": "#/definitions/@arcgis.core.core.quantity.Length",
698
+ "description": "Vertical distance measured as the absolute difference of the elevation of the two points."
699
+ }
700
+ },
701
+ "required": [
702
+ "directDistance",
703
+ "horizontalDistance",
704
+ "mode",
705
+ "verticalDistance"
706
+ ],
707
+ "type": "object"
708
+ },
709
+ "@arcgis.core.views.3d.analysis.DirectLineMeasurementAnalysisView3D.DirectLineMeasurementAnalysisView3D": {
710
+ "$ref": "esri.views.3d.analysis.DirectLineMeasurementAnalysisView3D"
711
+ },
712
+ "@arcgis.core.views.3d.analysis.ElevationProfileAnalysisView3D.ElevationProfileAnalysisView3D": {
713
+ "$ref": "esri.views.3d.analysis.ElevationProfileAnalysisView3D"
714
+ },
715
+ "@arcgis.core.views.3d.analysis.LineOfSightAnalysisResult.LineOfSightAnalysisResult": {
716
+ "additionalProperties": false,
717
+ "description": "Contains the result for a line of sight analysis from a [LineOfSightAnalysis](https://developers.arcgis.com/javascript/latest/references/core/analysis/LineOfSightAnalysis/).",
718
+ "properties": {
719
+ "declaredClass": {
720
+ "description": "The name of the class. The declared class name is formatted as `esri.folder.className`.",
721
+ "type": "string"
722
+ },
723
+ "destroyed": {
724
+ "type": "boolean"
725
+ },
726
+ "initialized": {
727
+ "description": "Set to `true` once the initialize function has executed.",
728
+ "type": "boolean"
729
+ },
730
+ "intersectedGraphic": {
731
+ "$ref": "T_36",
732
+ "description": "The first [Graphic](https://developers.arcgis.com/javascript/latest/references/core/Graphic/) intersected by the line of sight. If no graphic is intersected then this property is `null`."
733
+ },
734
+ "intersectedLocation": {
735
+ "$ref": "#/definitions/@arcgis.core.geometry.Point.Point",
736
+ "description": "A [Point](https://developers.arcgis.com/javascript/latest/references/core/geometry/Point/) representing the location where the line of sight first intersects the ground or 3D objects in the scene. If the target is visible this property is `null`."
737
+ },
738
+ "target": {
739
+ "$ref": "T_28",
740
+ "description": "Represents a target in a [LineOfSightAnalysis](https://developers.arcgis.com/javascript/latest/references/core/analysis/LineOfSightAnalysis/) which is used to calculate the visibility from the [LineOfSightAnalysis.observer](https://developers.arcgis.com/javascript/latest/references/core/analysis/LineOfSightAnalysis/#observer)."
741
+ },
742
+ "visible": {
743
+ "description": "Whether the target is visible from the observer or not.",
744
+ "type": "boolean"
745
+ }
746
+ },
747
+ "required": [
748
+ "declaredClass",
749
+ "destroyed",
750
+ "initialized",
751
+ "intersectedGraphic",
752
+ "intersectedLocation",
753
+ "target",
754
+ "visible"
755
+ ],
756
+ "type": "object"
757
+ },
758
+ "@arcgis.core.views.3d.analysis.LineOfSightAnalysisView3D.LineOfSightAnalysisView3D": {
759
+ "$ref": "esri.views.3d.analysis.LineOfSightAnalysisView3D"
760
+ },
761
+ "@arcgis.core.views.3d.analysis.ShadowCastAnalysisView3D.ShadowCastAnalysisView3D": {
762
+ "$ref": "esri.views.3d.analysis.ShadowCastAnalysisView3D"
763
+ },
764
+ "@arcgis.core.views.3d.analysis.SliceAnalysisView3D.SliceAnalysisView3D": {
765
+ "$ref": "esri.views.3d.analysis.SliceAnalysisView3D"
766
+ },
767
+ "@arcgis.core.views.3d.analysis.ViewshedAnalysisView3D.ViewshedAnalysisView3D": {
768
+ "$ref": "esri.views.3d.analysis.ViewshedAnalysisView3D"
769
+ },
770
+ "@arcgis.core.views.3d.analysis.VolumeMeasurement.VolumeMeasurementResult.VolumeMeasurementResult": {
771
+ "additionalProperties": false,
772
+ "description": "Result obtained from a [VolumeMeasurementAnalysisView3D.result](https://developers.arcgis.com/javascript/latest/references/core/views/3d/analysis/VolumeMeasurementAnalysisView3D/#result).\n\nIf the result is unavailable, the [VolumeMeasurementAnalysisView3D.error](https://developers.arcgis.com/javascript/latest/references/core/views/3d/analysis/VolumeMeasurementAnalysisView3D/#error) property provides the details on the cause.",
773
+ "properties": {
774
+ "area": {
775
+ "$ref": "#/definitions/@arcgis.core.core.quantity.Area",
776
+ "description": "The area of the measured volume."
777
+ },
778
+ "cutVolume": {
779
+ "$ref": "#/definitions/@arcgis.core.core.quantity.Volume",
780
+ "description": "Volume that needs to be removed to reach the target surface defined by the polygon."
781
+ },
782
+ "declaredClass": {
783
+ "description": "The name of the class. The declared class name is formatted as `esri.folder.className`.",
784
+ "type": "string"
785
+ },
786
+ "destroyed": {
787
+ "type": "boolean"
788
+ },
789
+ "fillVolume": {
790
+ "$ref": "#/definitions/@arcgis.core.core.quantity.Volume",
791
+ "description": "Volume that needs to be added to reach the target surface defined by the polygon."
792
+ },
793
+ "initialized": {
794
+ "description": "Set to `true` once the initialize function has executed.",
795
+ "type": "boolean"
796
+ },
797
+ "measureType": {
798
+ "$ref": "#/definitions/@arcgis.core.analysis.VolumeMeasurement.types.VolumeMeasureType",
799
+ "description": "Volume measure type."
800
+ },
801
+ "netVolume": {
802
+ "$ref": "#/definitions/@arcgis.core.core.quantity.Volume",
803
+ "description": "Difference between the cut volume and fill volume. A positive value indicates a surplus volume that needs to be removed."
804
+ },
805
+ "perimeter": {
806
+ "$ref": "#/definitions/@arcgis.core.core.quantity.Length",
807
+ "description": "The perimeter of the measured volume."
808
+ },
809
+ "totalVolume": {
810
+ "$ref": "#/definitions/@arcgis.core.core.quantity.Volume",
811
+ "description": "Sum of the cut volume and fill volume."
812
+ }
813
+ },
814
+ "required": [
815
+ "area",
816
+ "cutVolume",
817
+ "declaredClass",
818
+ "destroyed",
819
+ "fillVolume",
820
+ "initialized",
821
+ "measureType",
822
+ "netVolume",
823
+ "perimeter",
824
+ "totalVolume"
825
+ ],
826
+ "type": "object"
827
+ },
828
+ "@arcgis.core.views.3d.analysis.VolumeMeasurementAnalysisView3D.VolumeMeasurementAnalysisView3D": {
829
+ "$ref": "esri.views.3d.analysis.VolumeMeasurementAnalysisView3D"
830
+ },
831
+ "@arcgis.core.views.3d.environment.CloudyWeather.CloudyWeather": {
832
+ "$ref": "esri.views.3d.environment.CloudyWeather"
833
+ },
834
+ "@arcgis.core.views.3d.environment.FoggyWeather.FoggyWeather": {
835
+ "$ref": "esri.views.3d.environment.FoggyWeather"
836
+ },
837
+ "@arcgis.core.views.3d.environment.RainyWeather.RainyWeather": {
838
+ "$ref": "esri.views.3d.environment.RainyWeather"
839
+ },
840
+ "@arcgis.core.views.3d.environment.SnowyWeather.SnowyWeather": {
841
+ "$ref": "esri.views.3d.environment.SnowyWeather"
842
+ },
843
+ "@arcgis.core.views.3d.environment.SunLighting.SunLighting": {
844
+ "$ref": "esri.views.3d.environment.SunLighting"
845
+ },
846
+ "@arcgis.core.views.3d.environment.SunnyWeather.SunnyWeather": {
847
+ "$ref": "esri.views.3d.environment.SunnyWeather"
848
+ },
849
+ "@arcgis.core.views.3d.environment.VirtualLighting.VirtualLighting": {
850
+ "$ref": "esri.views.3d.environment.VirtualLighting"
851
+ },
852
+ "@arcgis.core.views.3d.environment.types.LightingUnion": {
853
+ "anyOf": [
854
+ {
855
+ "$ref": "#/definitions/@arcgis.core.views.3d.environment.SunLighting.SunLighting"
856
+ },
857
+ {
858
+ "$ref": "#/definitions/@arcgis.core.views.3d.environment.VirtualLighting.VirtualLighting"
859
+ }
860
+ ]
861
+ },
862
+ "@arcgis.core.views.3d.environment.types.WeatherUnion": {
5
863
  "anyOf": [
6
864
  {
7
- "$ref": "#/definitions/esri.Extent"
865
+ "$ref": "#/definitions/@arcgis.core.views.3d.environment.CloudyWeather.CloudyWeather"
8
866
  },
9
867
  {
10
- "$ref": "#/definitions/esri.Multipoint"
868
+ "$ref": "#/definitions/@arcgis.core.views.3d.environment.FoggyWeather.FoggyWeather"
11
869
  },
12
870
  {
13
- "$ref": "#/definitions/esri.Point"
871
+ "$ref": "#/definitions/@arcgis.core.views.3d.environment.RainyWeather.RainyWeather"
14
872
  },
15
873
  {
16
- "$ref": "#/definitions/esri.Polygon"
874
+ "$ref": "#/definitions/@arcgis.core.views.3d.environment.SnowyWeather.SnowyWeather"
875
+ },
876
+ {
877
+ "$ref": "#/definitions/@arcgis.core.views.3d.environment.SunnyWeather.SunnyWeather"
878
+ }
879
+ ]
880
+ },
881
+ "@arcgis.core.views.MapViewOrSceneView.MapViewOrSceneView": {
882
+ "$ref": "esri.views.MapViewOrSceneView"
883
+ },
884
+ "@arcgis.core.views.View.View": {
885
+ "$ref": "esri.views.View"
886
+ },
887
+ "@arcgis.core.views.analysis.AreaMeasurement.types.AreaMeasurementResult": {
888
+ "additionalProperties": false,
889
+ "description": "Result obtained from an [AreaMeasurementAnalysis](https://developers.arcgis.com/javascript/latest/references/core/analysis/AreaMeasurementAnalysis/).",
890
+ "properties": {
891
+ "area": {
892
+ "$ref": "#/definitions/@arcgis.core.core.quantity.Area",
893
+ "description": "Area of the polygon."
894
+ },
895
+ "mode": {
896
+ "$ref": "#/definitions/@arcgis.core.views.analysis.types.MeasurementMode",
897
+ "description": "Specifies how the measurement is calculated. Where `\"euclidean\"` denotes that polygon area and perimeter are computed on a flat (or \"planar\") surface. Conversely, `\"geodesic\"` denotes that computations are performed on an ellipsoid.\n\n> [!WARNING] > > **Note** > > How the area and perimeter are computed depends on the view type, the spatial reference, and the measured perimeter. > > - In a [MapView](https://developers.arcgis.com/javascript/latest/references/core/views/MapView/) (2D): > - For **geographic coordinate systems** (GCS) and **Web Mercator**, measurements are calculated geodetically > (on the ellipsoid). > - For **projected coordinate systems** (PCS), apart from Web Mercator, the area and perimeter are always calculated > in a Euclidean (in their respective PCS). > > - In a [SceneView](https://developers.arcgis.com/javascript/latest/references/core/views/SceneView/) (3D): > - For **geographic coordinate systems** (GCS) and **Web Mercator**, short measurements use a > Euclidean computation in an [ECEF](https://en.wikipedia.org/wiki/ECEF) (Earth-Centered, Earth-Fixed) coordinate > system (or an equivalent on other planets). Specifically, if the measurement's perimeter is ≤ 100 km the analysis > uses Euclidean calculations. If the perimeter is > 100 km, it uses geodetic calculations. > - For **projected coordinate systems** (PCS), apart from Web Mercator, the area and perimeter are always calculated > in a Euclidean (in their respective PCS)."
898
+ },
899
+ "perimeter": {
900
+ "$ref": "#/definitions/@arcgis.core.core.quantity.Length",
901
+ "description": "Perimeter length of the polygon."
902
+ }
903
+ },
904
+ "required": [
905
+ "area",
906
+ "mode",
907
+ "perimeter"
908
+ ],
909
+ "type": "object"
910
+ },
911
+ "@arcgis.core.views.analysis.DistanceMeasurement.types.DistanceMeasurementResult": {
912
+ "additionalProperties": false,
913
+ "description": "Result obtained from an [DistanceMeasurementAnalysis](https://developers.arcgis.com/javascript/latest/references/core/analysis/DistanceMeasurementAnalysis/).",
914
+ "properties": {
915
+ "length": {
916
+ "$ref": "#/definitions/@arcgis.core.core.quantity.Length",
917
+ "description": "Length of the polyline."
918
+ },
919
+ "mode": {
920
+ "$ref": "#/definitions/@arcgis.core.views.analysis.types.MeasurementMode",
921
+ "description": "Describes the mode in which the measurement is computed. In `euclidean` mode, length is computed from a flat polyline with straight segments in a [ECEF](https://en.wikipedia.org/wiki/ECEF) coordinate system. In `geodesic` mode, the length is computed from a geodesic polyline in a WGS84 ellipsoid."
922
+ }
923
+ },
924
+ "required": [
925
+ "length",
926
+ "mode"
927
+ ],
928
+ "type": "object"
929
+ },
930
+ "@arcgis.core.views.analysis.ElevationProfile.ElevationProfileResult.ElevationProfileResult": {
931
+ "additionalProperties": false,
932
+ "description": "Represents the result for each [profile line](https://developers.arcgis.com/javascript/latest/references/core/analysis/ElevationProfile/ElevationProfileLine/) configured in the [ElevationProfileAnalysis.profiles](https://developers.arcgis.com/javascript/latest/references/core/analysis/ElevationProfileAnalysis/#profiles) collection. This result is initialized by the analysis view and is dynamically updated as the elevation profile is generated.",
933
+ "properties": {
934
+ "available": {
935
+ "description": "Indicates whether the line is available. Unavailable lines are not sampled or displayed, and the corresponding [samples](https://developers.arcgis.com/javascript/latest/references/core/views/analysis/ElevationProfile/ElevationProfileResult/#samples) and [statistics](https://developers.arcgis.com/javascript/latest/references/core/views/analysis/ElevationProfile/ElevationProfileResult/#statistics) will be empty.\n\nAvailability rules for each line type:\n- `ground`: Available if any ground layers are visible.\n- `input`: Always available.\n- `query`: Available if the source is visible and any layers in that source (e.g. ground elevation layers) are also visible.\n- `scene`: Always available in 3D.",
936
+ "type": "boolean"
937
+ },
938
+ "declaredClass": {
939
+ "description": "The name of the class. The declared class name is formatted as `esri.folder.className`.",
940
+ "type": "string"
941
+ },
942
+ "destroyed": {
943
+ "type": "boolean"
944
+ },
945
+ "initialized": {
946
+ "description": "Set to `true` once the initialize function has executed.",
947
+ "type": "boolean"
948
+ },
949
+ "profile": {
950
+ "$ref": "#/definitions/@arcgis.core.analysis.ElevationProfile.types.ElevationProfileLineUnion",
951
+ "description": "The [profile line](https://developers.arcgis.com/javascript/latest/references/core/analysis/ElevationProfileAnalysis/#profiles) whose elevation is represented by this result."
952
+ },
953
+ "progress": {
954
+ "description": "Represents the progress of the elevation profile generation, ranging from 0 to 1.",
955
+ "type": "number"
956
+ },
957
+ "samples": {
958
+ "description": "Contains the samples that make up the elevation profile. Each sample represents a point along the profile.\n\nThe distance and elevation values are given in the effective units specified in [ElevationProfileAnalysisView2D.effectiveDisplayUnits](https://developers.arcgis.com/javascript/latest/references/core/views/2d/analysis/ElevationProfileAnalysisView2D/#effectiveDisplayUnits) or [ElevationProfileAnalysisView3D.effectiveDisplayUnits](https://developers.arcgis.com/javascript/latest/references/core/views/3d/analysis/ElevationProfileAnalysisView3D/#effectiveDisplayUnits).",
959
+ "items": {
960
+ "$ref": "#/definitions/@arcgis.core.views.analysis.ElevationProfile.types.ElevationProfileSample"
961
+ },
962
+ "type": "array"
963
+ },
964
+ "statistics": {
965
+ "$ref": "#/definitions/@arcgis.core.views.analysis.ElevationProfile.types.ElevationProfileStatistics",
966
+ "description": "Provides statistics about the elevation profile, including minimum, maximum, and average elevation values, elevation gain and loss, and slope information.\n\nThe distance and elevation values are given in the effective units specified in [ElevationProfileAnalysisView2D.effectiveDisplayUnits](https://developers.arcgis.com/javascript/latest/references/core/views/2d/analysis/ElevationProfileAnalysisView2D/#effectiveDisplayUnits) or [ElevationProfileAnalysisView3D.effectiveDisplayUnits](https://developers.arcgis.com/javascript/latest/references/core/views/3d/analysis/ElevationProfileAnalysisView3D/#effectiveDisplayUnits)."
967
+ }
968
+ },
969
+ "required": [
970
+ "available",
971
+ "declaredClass",
972
+ "destroyed",
973
+ "initialized",
974
+ "profile",
975
+ "progress",
976
+ "samples",
977
+ "statistics"
978
+ ],
979
+ "type": "object"
980
+ },
981
+ "@arcgis.core.views.analysis.ElevationProfile.types.ElevationProfileSample": {
982
+ "$ref": "esri.views.analysis.ElevationProfile.types"
983
+ },
984
+ "@arcgis.core.views.analysis.ElevationProfile.types.ElevationProfileStatistics": {
985
+ "$ref": "esri.views.analysis.ElevationProfile.types"
986
+ },
987
+ "@arcgis.core.views.analysis.types.AnalysisViewUnion": {
988
+ "$ref": "esri.views.analysis.types"
989
+ },
990
+ "@arcgis.core.views.analysis.types.MeasurementMode": {
991
+ "$ref": "esri.views.analysis.types"
992
+ },
993
+ "@arcgis.core.views.layers.LayerView.LayerView": {
994
+ "$ref": "esri.views.layers.LayerView"
995
+ },
996
+ "@arcgis.core.views.layers.StreamLayerView.StreamUpdateRateEvent": {
997
+ "additionalProperties": false,
998
+ "description": "The [update-event](https://developers.arcgis.com/javascript/latest/references/core/views/layers/StreamLayerView/#event-update-rate)'s payload. The update rate of features being processed on the client and pushed from the server.",
999
+ "properties": {
1000
+ "client": {
1001
+ "description": "The client update rate per second. Returns number of features being processed on the client.",
1002
+ "type": "number"
1003
+ },
1004
+ "websocket": {
1005
+ "description": "Update rate per second for websocket/service. Returns number of features being pushed from the server.",
1006
+ "type": "number"
1007
+ }
1008
+ },
1009
+ "required": [
1010
+ "client",
1011
+ "websocket"
1012
+ ],
1013
+ "type": "object"
1014
+ },
1015
+ "@arcgis.core.views.types.AnalysisViewCreateErrorEvent": {
1016
+ "additionalProperties": false,
1017
+ "properties": {
1018
+ "analysis": {
1019
+ "$ref": "#/definitions/@arcgis.core.analysis.Analysis.Analysis",
1020
+ "description": "The analysis for which the `analysisView` was created."
1021
+ },
1022
+ "error": {
1023
+ "$ref": "#/definitions/Error",
1024
+ "description": "An error object describing why the analysis view could not be created."
1025
+ }
1026
+ },
1027
+ "required": [
1028
+ "analysis",
1029
+ "error"
1030
+ ],
1031
+ "type": "object"
1032
+ },
1033
+ "@arcgis.core.views.types.AnalysisViewCreateEvent": {
1034
+ "additionalProperties": false,
1035
+ "properties": {
1036
+ "analysis": {
1037
+ "$ref": "#/definitions/@arcgis.core.analysis.Analysis.Analysis",
1038
+ "description": "The analysis for which the `analysisView` was created."
1039
+ },
1040
+ "analysisView": {
1041
+ "$ref": "#/definitions/@arcgis.core.views.analysis.types.AnalysisViewUnion",
1042
+ "description": "The analysis view that was created."
1043
+ }
1044
+ },
1045
+ "required": [
1046
+ "analysis",
1047
+ "analysisView"
1048
+ ],
1049
+ "type": "object"
1050
+ },
1051
+ "@arcgis.core.views.types.AnalysisViewDestroyEvent": {
1052
+ "additionalProperties": false,
1053
+ "properties": {
1054
+ "analysis": {
1055
+ "$ref": "#/definitions/@arcgis.core.analysis.Analysis.Analysis",
1056
+ "description": "The analysis whose analysis view was destroyed."
1057
+ },
1058
+ "analysisView": {
1059
+ "$ref": "#/definitions/@arcgis.core.views.analysis.types.AnalysisViewUnion",
1060
+ "description": "The analysis view that was destroyed."
1061
+ }
1062
+ },
1063
+ "required": [
1064
+ "analysis",
1065
+ "analysisView"
1066
+ ],
1067
+ "type": "object"
1068
+ },
1069
+ "@arcgis.core.webdoc.applicationProperties.Viewing.Viewing": {
1070
+ "$ref": "esri.webdoc.applicationProperties.Viewing"
1071
+ },
1072
+ "@arcgis.core.webscene.ApplicationProperties.ApplicationProperties": {
1073
+ "additionalProperties": false,
1074
+ "description": "Represents configuration of application and UI elements.",
1075
+ "properties": {
1076
+ "declaredClass": {
1077
+ "description": "The name of the class. The declared class name is formatted as `esri.folder.className`.",
1078
+ "type": "string"
1079
+ },
1080
+ "destroyed": {
1081
+ "type": "boolean"
17
1082
  },
1083
+ "initialized": {
1084
+ "description": "Set to `true` once the initialize function has executed.",
1085
+ "type": "boolean"
1086
+ },
1087
+ "viewing": {
1088
+ "$ref": "#/definitions/@arcgis.core.webdoc.applicationProperties.Viewing.Viewing",
1089
+ "description": "View-specific properties of application and UI elements."
1090
+ }
1091
+ },
1092
+ "required": [
1093
+ "declaredClass",
1094
+ "destroyed",
1095
+ "initialized",
1096
+ "viewing"
1097
+ ],
1098
+ "type": "object"
1099
+ },
1100
+ "@arcgis.core.webscene.support.FeatureReferenceGlobalId.FeatureReferenceGlobalId": {
1101
+ "$ref": "esri.webscene.support.FeatureReferenceGlobalId"
1102
+ },
1103
+ "@arcgis.core.webscene.support.FeatureReferenceObjectId.FeatureReferenceObjectId": {
1104
+ "$ref": "esri.webscene.support.FeatureReferenceObjectId"
1105
+ },
1106
+ "@arcgis.core.webscene.types.FeatureReferenceIdUnion": {
1107
+ "anyOf": [
18
1108
  {
19
- "$ref": "#/definitions/esri.Polyline"
1109
+ "$ref": "#/definitions/@arcgis.core.webscene.support.FeatureReferenceGlobalId.FeatureReferenceGlobalId"
20
1110
  },
21
1111
  {
22
- "$ref": "#/definitions/esri.Mesh"
1112
+ "$ref": "#/definitions/@arcgis.core.webscene.support.FeatureReferenceObjectId.FeatureReferenceObjectId"
1113
+ }
1114
+ ]
1115
+ },
1116
+ "@arcgis.core.widgets.Feature.FeatureViewModel.FeatureViewModelProperties": {
1117
+ "additionalProperties": false,
1118
+ "properties": {
1119
+ "abilities": {
1120
+ "$ref": "#/definitions/@arcgis.core.widgets.Feature.types.Abilities",
1121
+ "description": "Defines the specific [Abilities](https://developers.arcgis.com/javascript/latest/references/core/widgets/Feature/types/#Abilities) that the [Feature](https://developers.arcgis.com/javascript/latest/references/core/widgets/Feature/) and [Popup](https://developers.arcgis.com/javascript/latest/references/core/widgets/Popup/) widgets should use when querying and displaying its content."
1122
+ },
1123
+ "defaultPopupTemplateEnabled": {
1124
+ "default": false,
1125
+ "description": "Enables automatic creation of a popup template for layers that have popups enabled but no popupTemplate defined. Automatic popup templates are supported for layers that support the `createPopupTemplate` method. (Supported for [FeatureLayer](https://developers.arcgis.com/javascript/latest/references/core/layers/FeatureLayer/), [GeoJSONLayer](https://developers.arcgis.com/javascript/latest/references/core/layers/GeoJSONLayer/), [OGCFeatureLayer](https://developers.arcgis.com/javascript/latest/references/core/layers/OGCFeatureLayer/), [SceneLayer](https://developers.arcgis.com/javascript/latest/references/core/layers/SceneLayer/), [CSVLayer](https://developers.arcgis.com/javascript/latest/references/core/layers/CSVLayer/), [PointCloudLayer](https://developers.arcgis.com/javascript/latest/references/core/layers/PointCloudLayer/), [StreamLayer](https://developers.arcgis.com/javascript/latest/references/core/layers/StreamLayer/), and [ImageryLayer](https://developers.arcgis.com/javascript/latest/references/core/layers/ImageryLayer/)).",
1126
+ "type": "boolean"
1127
+ },
1128
+ "graphic": {
1129
+ "$ref": "#/definitions/@arcgis.core.Graphic.GraphicProperties",
1130
+ "description": "The [Graphic](https://developers.arcgis.com/javascript/latest/references/core/Graphic/) used to represent the feature."
1131
+ },
1132
+ "location": {
1133
+ "$ref": "#/definitions/@arcgis.core.geometry.Point.PointProperties",
1134
+ "description": "The [Point](https://developers.arcgis.com/javascript/latest/references/core/geometry/Point/) representing the location of the [MapView](https://developers.arcgis.com/javascript/latest/references/core/views/MapView/) interaction used to trigger the opening of the widget.\n\nThis value should be set when executing Arcade expressions in the Feature widget that expect the `$userInput` profile variable to have a value."
1135
+ },
1136
+ "map": {
1137
+ "$ref": "#/definitions/@arcgis.core.Map.Map",
1138
+ "description": "A map is required when the input [graphic](https://developers.arcgis.com/javascript/latest/references/core/widgets/Feature/FeatureViewModel/#graphic) has a popupTemplate that contains [Arcade](https://developers.arcgis.com/arcade) expressions in [ExpressionInfo](https://developers.arcgis.com/javascript/latest/references/core/popup/ExpressionInfo/) or [ExpressionContent](https://developers.arcgis.com/javascript/latest/references/core/popup/content/ExpressionContent/) that may use the `$map` profile variable to access data from layers within a map. Without a map, expressions that use `$map` will throw an error.\n\nAlternatively, the [view](https://developers.arcgis.com/javascript/latest/references/core/widgets/Feature/FeatureViewModel/#view) property can be used to provide the map instance for this property."
1139
+ },
1140
+ "spatialReference": {
1141
+ "$ref": "#/definitions/@arcgis.core.geometry.SpatialReference.SpatialReferenceProperties",
1142
+ "description": "The spatial reference used for [Arcade](https://developers.arcgis.com/arcade) operations. This property should be set if executing Arcade expressions that contain [geometry functions](https://developers.arcgis.com/arcade/function-reference/geometry_functions/)."
1143
+ },
1144
+ "timeZone": {
1145
+ "description": "Dates and times displayed in the widget will be displayed in this time zone. By default this time zone is inherited from [MapView.timeZone](https://developers.arcgis.com/javascript/latest/references/core/views/MapView/#timeZone). When a MapView is not associated with the widget then the property will fallback to the `system` time zone.\n\n**Possible Values**\n\nValue | Description |\n----- | ----------- | system | Dates and times will be displayed in the timezone of the device or browser. unknown | Dates and time are not adjusted for any timezone. Specified IANA timezone | Dates and times will be displayed in the specified IANA time zone. See [wikipedia - List of tz database time zones](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones).",
1146
+ "type": "string"
1147
+ },
1148
+ "view": {
1149
+ "$ref": "#/definitions/@arcgis.core.views.MapViewOrSceneView.MapViewOrSceneView",
1150
+ "description": "A reference to the [MapView](https://developers.arcgis.com/javascript/latest/references/core/views/MapView/) or [SceneView](https://developers.arcgis.com/javascript/latest/references/core/views/SceneView/). Set this to link the widget to a specific view.\n\n> [!WARNING] > > The FeatureViewModel requires a view if the user expects it to display content in any of the following situations: > - The [graphic](https://developers.arcgis.com/javascript/latest/references/core/widgets/Feature/FeatureViewModel/#graphic) has a popupTemplate containing Arcade expressions in [ExpressionInfo](https://developers.arcgis.com/javascript/latest/references/core/popup/ExpressionInfo/) or [ExpressionContent](https://developers.arcgis.com/javascript/latest/references/core/popup/content/ExpressionContent/) that may use [geometry functions](https://developers.arcgis.com/arcade/function-reference/geometry_functions/) or reference the `$map` profile variable (i.e. access data from layers within a map). > - Content is displayed from the popup template of an [aggregate feature](https://developers.arcgis.com/javascript/latest/references/core/Graphic/#isAggregate) (i.e. a [cluster](https://developers.arcgis.com/javascript/latest/references/core/layers/support/FeatureReductionCluster/) or [bin](https://developers.arcgis.com/javascript/latest/references/core/layers/support/FeatureReductionBinning/)). > - Values from `date` and `timestamp-offset` [fields](https://developers.arcgis.com/javascript/latest/references/core/layers/support/Field/#type) should respect the view's [time zone](https://developers.arcgis.com/javascript/latest/references/core/views/MapView/#timeZone)."
23
1151
  }
1152
+ },
1153
+ "type": "object"
1154
+ },
1155
+ "@arcgis.core.widgets.Feature.types.Abilities": {
1156
+ "$ref": "esri.widgets.Feature.types"
1157
+ },
1158
+ "@arcgis.core.widgets.Popup.types.ActionEvent": {
1159
+ "additionalProperties": false,
1160
+ "properties": {
1161
+ "action": {
1162
+ "$ref": "#/definitions/@arcgis.core.widgets.Popup.types.PopupAction",
1163
+ "description": "The action clicked by the user. For a description of this object and a specification of its properties, see the [Popup.actions](https://developers.arcgis.com/javascript/latest/references/core/widgets/Popup/#actions) property of this class."
1164
+ }
1165
+ },
1166
+ "required": [
1167
+ "action"
24
1168
  ],
25
- "description": "Union of all geometries.\n\n{@link https://developers.arcgis.com/javascript/latest/api-reference/esri-unionTypes.html#GeometryUnion Read more...}"
1169
+ "type": "object"
1170
+ },
1171
+ "@arcgis.core.widgets.Popup.types.PopupAction": {
1172
+ "$ref": "esri.widgets.Popup.types"
26
1173
  },
27
1174
  "@vertigis.arcgis-extensions.FailureMode.FailureMode": {
28
1175
  "description": "Possible modes of failure when there is an error resolving or initializing an item.",
@@ -84,22 +1231,22 @@
84
1231
  "geometry": {
85
1232
  "anyOf": [
86
1233
  {
87
- "$ref": "#/definitions/esri.Extent"
1234
+ "$ref": "#/definitions/@arcgis.core.geometry.Extent.Extent"
88
1235
  },
89
1236
  {
90
- "$ref": "#/definitions/esri.Multipoint"
1237
+ "$ref": "#/definitions/@arcgis.core.geometry.Multipoint.Multipoint"
91
1238
  },
92
1239
  {
93
- "$ref": "#/definitions/esri.Point"
1240
+ "$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
94
1241
  },
95
1242
  {
96
- "$ref": "#/definitions/esri.Polygon"
1243
+ "$ref": "#/definitions/@arcgis.core.geometry.Polygon.Polygon"
97
1244
  },
98
1245
  {
99
- "$ref": "#/definitions/esri.Polyline"
1246
+ "$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
100
1247
  },
101
1248
  {
102
- "$ref": "#/definitions/esri.Mesh"
1249
+ "$ref": "#/definitions/@arcgis.core.geometry.Mesh.Mesh"
103
1250
  },
104
1251
  {
105
1252
  "$ref": "#/definitions/esri.rest-api.GeometryJson.PointJson"
@@ -151,10 +1298,10 @@
151
1298
  "items": {
152
1299
  "anyOf": [
153
1300
  {
154
- "$ref": "@vertigis.arcgis-extensions.Hyperlink.HyperlinkProperties"
1301
+ "$ref": "#/definitions/@vertigis.arcgis-extensions.Hyperlink.HyperlinkProperties"
155
1302
  },
156
1303
  {
157
- "$ref": "@vertigis.arcgis-extensions.Hyperlink.Hyperlink"
1304
+ "$ref": "T_4"
158
1305
  }
159
1306
  ]
160
1307
  },
@@ -172,7 +1319,7 @@
172
1319
  "type": "array"
173
1320
  },
174
1321
  "outSpatialReference": {
175
- "$ref": "#/definitions/esri.SpatialReference",
1322
+ "$ref": "#/definitions/@arcgis.core.geometry.SpatialReference.SpatialReference",
176
1323
  "description": "See {@link data /FeatureSettings!FeatureSettings.outSpatialReference}."
177
1324
  },
178
1325
  "popupContentExtensions": {
@@ -183,7 +1330,7 @@
183
1330
  "$ref": "@vertigis.arcgis-extensions.data.PopupContentExtension.PopupContentExtensionProperties"
184
1331
  },
185
1332
  {
186
- "$ref": "@vertigis.arcgis-extensions.data.PopupContentExtension.PopupContentExtension"
1333
+ "$ref": "T_3"
187
1334
  }
188
1335
  ]
189
1336
  },
@@ -195,7 +1342,7 @@
195
1342
  "$ref": "#/definitions/esri.rest-api.PopupInfoJson.PopupInfoJson"
196
1343
  },
197
1344
  {
198
- "$ref": "#/definitions/esri.PopupTemplate"
1345
+ "$ref": "#/definitions/@arcgis.core.PopupTemplate.PopupTemplate"
199
1346
  }
200
1347
  ],
201
1348
  "description": "The template for displaying content in a pop-up when the feature is selected. If not explicitly set, it will be inherited from the associated layer extension if there is one."
@@ -230,7 +1377,7 @@
230
1377
  "field": {
231
1378
  "anyOf": [
232
1379
  {
233
- "$ref": "#/definitions/esri.Field"
1380
+ "$ref": "T_6"
234
1381
  },
235
1382
  {
236
1383
  "$ref": "#/definitions/@vertigis.arcgis-extensions.data.FieldExtension.FieldProperties"
@@ -389,7 +1536,7 @@
389
1536
  "content": {
390
1537
  "anyOf": [
391
1538
  {
392
- "$ref": "#/definitions/esri.Content"
1539
+ "$ref": "#/definitions/@arcgis.core.popup.content.Content.Content"
393
1540
  },
394
1541
  {
395
1542
  "$ref": "#/definitions/@vertigis.arcgis-extensions.data.PopupContentExtension.ContentProperties"
@@ -432,10 +1579,10 @@
432
1579
  "items": {
433
1580
  "anyOf": [
434
1581
  {
435
- "$ref": "@vertigis.arcgis-extensions.data.FieldExtension.FieldExtensionProperties"
1582
+ "$ref": "#/definitions/@vertigis.arcgis-extensions.data.FieldExtension.FieldExtensionProperties"
436
1583
  },
437
1584
  {
438
- "$ref": "@vertigis.arcgis-extensions.data.FieldExtension.FieldExtension"
1585
+ "$ref": "T_5"
439
1586
  }
440
1587
  ]
441
1588
  },
@@ -446,7 +1593,7 @@
446
1593
  "items": {
447
1594
  "anyOf": [
448
1595
  {
449
- "$ref": "#/definitions/esri.Field"
1596
+ "$ref": "T_6"
450
1597
  },
451
1598
  {
452
1599
  "$ref": "#/definitions/esri.rest-api.FieldJson.FieldJson"
@@ -464,7 +1611,7 @@
464
1611
  "type": "string"
465
1612
  },
466
1613
  "spatialReference": {
467
- "$ref": "#/definitions/esri.SpatialReference",
1614
+ "$ref": "#/definitions/@arcgis.core.geometry.SpatialReference.SpatialReference",
468
1615
  "description": "See {@link data /Schema!Schema.spatialReference}."
469
1616
  },
470
1617
  "timeZone": {
@@ -480,7 +1627,7 @@
480
1627
  "items": {
481
1628
  "anyOf": [
482
1629
  {
483
- "$ref": "#/definitions/esri.FeatureType"
1630
+ "$ref": "#/definitions/@arcgis.core.layers.support.FeatureType.FeatureType"
484
1631
  },
485
1632
  {
486
1633
  "$ref": "#/definitions/esri.rest-api.TypeJson.TypeJson"
@@ -492,6 +1639,10 @@
492
1639
  },
493
1640
  "type": "object"
494
1641
  },
1642
+ "@vertigis.arcgis-extensions.data._Relationship.RelationshipType": {
1643
+ "description": "The type of the Relationship.",
1644
+ "type": "string"
1645
+ },
495
1646
  "@vertigis.arcgis-extensions.data._TableExtension.TableReference": {
496
1647
  "additionalProperties": false,
497
1648
  "description": "Matches an existing table in a map.",
@@ -547,7 +1698,7 @@
547
1698
  "@vertigis.arcgis-extensions.mapping.MapExtension.WebMapLike": {
548
1699
  "anyOf": [
549
1700
  {
550
- "$ref": "#/definitions/esri.PortalItem"
1701
+ "$ref": "#/definitions/@arcgis.core.portal.PortalItem.PortalItem"
551
1702
  },
552
1703
  {
553
1704
  "$ref": "#/definitions/esri.rest-api.ItemJson.ItemJson"
@@ -570,7 +1721,7 @@
570
1721
  "@vertigis.arcgis-extensions.mapping.MapExtension.WebSceneLike": {
571
1722
  "anyOf": [
572
1723
  {
573
- "$ref": "#/definitions/esri.PortalItem"
1724
+ "$ref": "#/definitions/@arcgis.core.portal.PortalItem.PortalItem"
574
1725
  },
575
1726
  {
576
1727
  "$ref": "#/definitions/esri.rest-api.ItemJson.ItemJson"
@@ -681,6 +1832,90 @@
681
1832
  },
682
1833
  "type": "object"
683
1834
  },
1835
+ "@vertigis.arcgis-extensions.support.InitializableBase.InitializeWarningEvent": {
1836
+ "additionalProperties": false,
1837
+ "description": "Raised when there is an error initializing an {@link support /InitializableBase!InitializableBase}.",
1838
+ "properties": {
1839
+ "error": {
1840
+ "$ref": "@vertigis.arcgis-extensions.support.InitializeError.InitializeError",
1841
+ "description": "Original error that occurred."
1842
+ },
1843
+ "target": {
1844
+ "$ref": "@vertigis.arcgis-extensions.support.InitializableBase.InitializableBase",
1845
+ "description": "The {@link support /InitializableBase!InitializableBase} that raised the event."
1846
+ }
1847
+ },
1848
+ "required": [
1849
+ "error",
1850
+ "target"
1851
+ ],
1852
+ "type": "object"
1853
+ },
1854
+ "@vertigis.arcgis-extensions.utilities.ObservableMap.MapAfterItemEvent": {
1855
+ "additionalProperties": false,
1856
+ "description": "Raised after an item is added or removed from an {@link ObservableMap}.",
1857
+ "properties": {
1858
+ "item": {
1859
+ "$ref": "T",
1860
+ "description": "The item to add or remove from the collection."
1861
+ },
1862
+ "target": {
1863
+ "$ref": "@vertigis.arcgis-extensions.utilities.collection.AfterItemChangeEvent.TCollection",
1864
+ "description": "The collection like object that raised the event."
1865
+ }
1866
+ },
1867
+ "required": [
1868
+ "item",
1869
+ "target"
1870
+ ],
1871
+ "type": "object"
1872
+ },
1873
+ "@vertigis.arcgis-extensions.utilities.ObservableMap.MapChangeEvent": {
1874
+ "additionalProperties": false,
1875
+ "description": "Raised when items are added or removed from an {@link ObservableMap}.",
1876
+ "properties": {
1877
+ "added": {
1878
+ "description": "The items that were added.",
1879
+ "items": {
1880
+ "items": [
1881
+ {
1882
+ "type": "string"
1883
+ },
1884
+ {}
1885
+ ],
1886
+ "maxItems": 2,
1887
+ "minItems": 2,
1888
+ "type": "array"
1889
+ },
1890
+ "type": "array"
1891
+ },
1892
+ "removed": {
1893
+ "description": "The items that were removed.",
1894
+ "items": {
1895
+ "items": [
1896
+ {
1897
+ "type": "string"
1898
+ },
1899
+ {}
1900
+ ],
1901
+ "maxItems": 2,
1902
+ "minItems": 2,
1903
+ "type": "array"
1904
+ },
1905
+ "type": "array"
1906
+ },
1907
+ "target": {
1908
+ "$ref": "@vertigis.arcgis-extensions.utilities.ObservableMap.ObservableMap",
1909
+ "description": "The {@link ObservableMap} that raised the event."
1910
+ }
1911
+ },
1912
+ "required": [
1913
+ "added",
1914
+ "removed",
1915
+ "target"
1916
+ ],
1917
+ "type": "object"
1918
+ },
684
1919
  "AdditionalExportWebMap": {
685
1920
  "additionalProperties": false,
686
1921
  "description": "Represents an additional export web map.",
@@ -765,7 +2000,7 @@
765
2000
  "description": "Layer objects selections."
766
2001
  },
767
2002
  "timeSeries": {
768
- "$ref": "#/definitions/TimeSeries",
2003
+ "$ref": "TimeSeries",
769
2004
  "description": "Series time settings for time-aware layers."
770
2005
  },
771
2006
  "validation": {
@@ -779,13 +2014,25 @@
779
2014
  "additionalProperties": false,
780
2015
  "type": "object"
781
2016
  },
782
- "ArrayBufferLike": {
2017
+ "AttachmentInputUnion": {
783
2018
  "anyOf": [
784
2019
  {
785
- "$ref": "ArrayBuffer"
2020
+ "$ref": "#/definitions/@arcgis.core.form.elements.inputs.attachments.AudioInput.AudioInput"
2021
+ },
2022
+ {
2023
+ "$ref": "#/definitions/@arcgis.core.form.elements.inputs.attachments.DocumentInput.DocumentInput"
2024
+ },
2025
+ {
2026
+ "$ref": "#/definitions/@arcgis.core.form.elements.inputs.attachments.ImageInput.ImageInput"
2027
+ },
2028
+ {
2029
+ "$ref": "#/definitions/@arcgis.core.form.elements.inputs.attachments.SignatureInput.SignatureInput"
786
2030
  },
787
2031
  {
788
- "$ref": "SharedArrayBuffer"
2032
+ "$ref": "#/definitions/@arcgis.core.form.elements.inputs.attachments.VideoInput.VideoInput"
2033
+ },
2034
+ {
2035
+ "$ref": "#/definitions/@arcgis.core.form.elements.inputs.attachments.AttachmentInput.AttachmentInput"
789
2036
  }
790
2037
  ]
791
2038
  },
@@ -842,6 +2089,9 @@
842
2089
  {
843
2090
  "$ref": "#/definitions/esri.rest-api.MapServiceLayerJson.MapServiceLayerJson"
844
2091
  },
2092
+ {
2093
+ "$ref": "#/definitions/esri.rest-api.SceneLayerJson.SceneLayerJson"
2094
+ },
845
2095
  {
846
2096
  "$ref": "#/definitions/esri.rest-api.TiledImageServiceLayerJson.TiledImageServiceLayerJson"
847
2097
  },
@@ -866,6 +2116,16 @@
866
2116
  ],
867
2117
  "description": "A base map layer in a web map/scene."
868
2118
  },
2119
+ "BuildingSublayerUnion": {
2120
+ "anyOf": [
2121
+ {
2122
+ "$ref": "#/definitions/@arcgis.core.layers.buildingSublayers.BuildingComponentSublayer.BuildingComponentSublayer"
2123
+ },
2124
+ {
2125
+ "$ref": "#/definitions/@arcgis.core.layers.buildingSublayers.BuildingGroupSublayer.BuildingGroupSublayer"
2126
+ }
2127
+ ]
2128
+ },
869
2129
  "BulkAttributeCompleteEventArgs": {
870
2130
  "additionalProperties": false,
871
2131
  "description": "Arguments for bulk attribute completion event. Web only.",
@@ -926,6 +2186,95 @@
926
2186
  ],
927
2187
  "type": "object"
928
2188
  },
2189
+ "CIMSymbolLayerUnion": {
2190
+ "anyOf": [
2191
+ {
2192
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMGradientFill"
2193
+ },
2194
+ {
2195
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMGradientStroke"
2196
+ },
2197
+ {
2198
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMHatchFill"
2199
+ },
2200
+ {
2201
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMPictureMarker"
2202
+ },
2203
+ {
2204
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMVectorMarker"
2205
+ },
2206
+ {
2207
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMPictureFill"
2208
+ },
2209
+ {
2210
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMPictureStroke"
2211
+ },
2212
+ {
2213
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMSolidFill"
2214
+ },
2215
+ {
2216
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMSolidStroke"
2217
+ }
2218
+ ],
2219
+ "description": "Represents a symbol layer, the component that makes up a symbol. A symbol layer is represented by a marker, stroke, or fill symbol layer. Symbol layers are the building blocks of CIM symbols, they combine to make rich graphical depictions. You can configure the shape, color, texture, size, position, etc of each symbol layer, and combine multiple symbol layers to create your desired symbol. The symbol layers are typically displayed in the order they are defined, so the first symbol layer will be displayed on top, and the last symbol layer will be displayed on bottom.\n\n> [!WARNING] > > **Known Limitations** > > CIMSymbols within a FeatureLayer will render the symbol layers in the following order from top to bottom for performance reasons, regardless of the order they are defined within the symbol. > 1. CIMTextSymbol embedded within a CIMVectorMarker symbol layer > 2. Marker symbols - CIMVectorMarker and CIMPictureMarker > 3. Stroke symbols - CIMSolidStroke, CIMPictureStroke, and CIMGradientStroke > 4. Fill symbols - CIMSolidFill, CIMHatchFill, CIMPictureFill, and CIMGradientFill"
2220
+ },
2221
+ "CIMSymbolUnion": {
2222
+ "anyOf": [
2223
+ {
2224
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMLineSymbol"
2225
+ },
2226
+ {
2227
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMPointSymbol"
2228
+ },
2229
+ {
2230
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMPolygonSymbol"
2231
+ },
2232
+ {
2233
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMTextSymbol"
2234
+ }
2235
+ ],
2236
+ "description": "Represents a union type of all CIM symbol types."
2237
+ },
2238
+ "ColorJson": {
2239
+ "anyOf": [
2240
+ {
2241
+ "items": [
2242
+ {
2243
+ "type": "number"
2244
+ },
2245
+ {
2246
+ "type": "number"
2247
+ },
2248
+ {
2249
+ "type": "number"
2250
+ },
2251
+ {
2252
+ "type": "number"
2253
+ }
2254
+ ],
2255
+ "maxItems": 4,
2256
+ "minItems": 4,
2257
+ "type": "array"
2258
+ },
2259
+ {
2260
+ "items": [
2261
+ {
2262
+ "type": "number"
2263
+ },
2264
+ {
2265
+ "type": "number"
2266
+ },
2267
+ {
2268
+ "type": "number"
2269
+ }
2270
+ ],
2271
+ "maxItems": 3,
2272
+ "minItems": 3,
2273
+ "type": "array"
2274
+ }
2275
+ ],
2276
+ "description": "Color is represented as a four-element array. The four elements represent values for red, green, blue, and alpha in that order. Values range from 0 through 255. If color is undefined for a symbol, the color value is null. See {@link https://developers.arcgis.com/web-map-specification/objects/color/} {@link https://developers.arcgis.com/web-scene-specification/objects/color/}."
2277
+ },
929
2278
  "ComponentId": {
930
2279
  "description": "A component's ID in the layout.",
931
2280
  "type": "string"
@@ -937,7 +2286,7 @@
937
2286
  "graphics": {
938
2287
  "description": "The resulting graphics.",
939
2288
  "items": {
940
- "$ref": "#/definitions/esri.Graphic"
2289
+ "$ref": "#/definitions/@arcgis.core.Graphic.Graphic"
941
2290
  },
942
2291
  "type": "array"
943
2292
  },
@@ -993,6 +2342,20 @@
993
2342
  ],
994
2343
  "description": "A domain specifies the set of valid values for a field.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/domain/} {@link https://developers.arcgis.com/web-scene-specification/objects/domain/}."
995
2344
  },
2345
+ "DomainUnion": {
2346
+ "anyOf": [
2347
+ {
2348
+ "$ref": "#/definitions/@arcgis.core.layers.support.CodedValueDomain.CodedValueDomain"
2349
+ },
2350
+ {
2351
+ "$ref": "#/definitions/@arcgis.core.layers.support.InheritedDomain.InheritedDomain"
2352
+ },
2353
+ {
2354
+ "$ref": "#/definitions/@arcgis.core.layers.support.RangeDomain.RangeDomain"
2355
+ }
2356
+ ],
2357
+ "description": "Supported domain types. Domains are used to constrain allowable values of a layer."
2358
+ },
996
2359
  "DynamicElement": {
997
2360
  "additionalProperties": false,
998
2361
  "description": "Represents a dynamic element. A dynamic element can be a custom text element (type: string) or a custom image element (type: image).",
@@ -1102,6 +2465,34 @@
1102
2465
  ],
1103
2466
  "description": "Elevation layers that can be used in a web scene's ground."
1104
2467
  },
2468
+ "ElevationLayerUnion": {
2469
+ "anyOf": [
2470
+ {
2471
+ "$ref": "#/definitions/@arcgis.core.layers.ElevationLayer.ElevationLayer"
2472
+ },
2473
+ {
2474
+ "$ref": "#/definitions/@arcgis.core.layers.BaseElevationLayer.BaseElevationLayer"
2475
+ }
2476
+ ],
2477
+ "description": "Union of supported ground elevation layer types."
2478
+ },
2479
+ "ElevationProfileLineUnion": {
2480
+ "anyOf": [
2481
+ {
2482
+ "$ref": "#/definitions/@arcgis.core.analysis.ElevationProfile.ElevationProfileLineGround.ElevationProfileLineGround"
2483
+ },
2484
+ {
2485
+ "$ref": "#/definitions/@arcgis.core.analysis.ElevationProfile.ElevationProfileLineInput.ElevationProfileLineInput"
2486
+ },
2487
+ {
2488
+ "$ref": "#/definitions/@arcgis.core.analysis.ElevationProfile.ElevationProfileLineQuery.ElevationProfileLineQuery"
2489
+ },
2490
+ {
2491
+ "$ref": "#/definitions/@arcgis.core.analysis.ElevationProfile.ElevationProfileLineScene.ElevationProfileLineScene"
2492
+ }
2493
+ ],
2494
+ "description": "Union of all supported elevation profile lines."
2495
+ },
1105
2496
  "Error": {
1106
2497
  "additionalProperties": false,
1107
2498
  "properties": {
@@ -1184,13 +2575,26 @@
1184
2575
  ],
1185
2576
  "description": "Feature reductions declutter the screen by hiding features that would otherwise intersect with other features on screen."
1186
2577
  },
2578
+ "FeatureReductionUnion": {
2579
+ "anyOf": [
2580
+ {
2581
+ "$ref": "#/definitions/@arcgis.core.layers.support.FeatureReductionBinning.FeatureReductionBinning"
2582
+ },
2583
+ {
2584
+ "$ref": "#/definitions/@arcgis.core.layers.support.FeatureReductionCluster.FeatureReductionCluster"
2585
+ },
2586
+ {
2587
+ "$ref": "#/definitions/@arcgis.core.layers.support.FeatureReductionSelection.FeatureReductionSelection"
2588
+ }
2589
+ ]
2590
+ },
1187
2591
  "FeaturesLike": {
1188
2592
  "anyOf": [
1189
2593
  {
1190
2594
  "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
1191
2595
  },
1192
2596
  {
1193
- "$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
2597
+ "$ref": "esri.ChangeEvent.Target"
1194
2598
  },
1195
2599
  {
1196
2600
  "$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
@@ -1205,7 +2609,7 @@
1205
2609
  "$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
1206
2610
  },
1207
2611
  {
1208
- "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
2612
+ "$ref": "T_13"
1209
2613
  }
1210
2614
  ]
1211
2615
  },
@@ -1214,6 +2618,17 @@
1214
2618
  ],
1215
2619
  "description": "Represents one or more features."
1216
2620
  },
2621
+ "FieldFormatUnion": {
2622
+ "anyOf": [
2623
+ {
2624
+ "$ref": "#/definitions/@arcgis.core.layers.support.DateTimeFieldFormat.DateTimeFieldFormat"
2625
+ },
2626
+ {
2627
+ "$ref": "#/definitions/@arcgis.core.layers.support.NumberFieldFormat.NumberFieldFormat"
2628
+ }
2629
+ ],
2630
+ "description": "Supported field formatting types."
2631
+ },
1217
2632
  "FilterModeJson": {
1218
2633
  "anyOf": [
1219
2634
  {
@@ -1225,6 +2640,29 @@
1225
2640
  ],
1226
2641
  "description": "Filter mode represents the way elements draw when participating in a filter block."
1227
2642
  },
2643
+ "FormElementUnion": {
2644
+ "anyOf": [
2645
+ {
2646
+ "$ref": "#/definitions/@arcgis.core.form.elements.FieldElement.FieldElement"
2647
+ },
2648
+ {
2649
+ "$ref": "#/definitions/@arcgis.core.form.elements.AttachmentElement.AttachmentElement"
2650
+ },
2651
+ {
2652
+ "$ref": "#/definitions/@arcgis.core.form.elements.RelationshipElement.RelationshipElement"
2653
+ },
2654
+ {
2655
+ "$ref": "#/definitions/@arcgis.core.form.elements.TextElement.TextElement"
2656
+ },
2657
+ {
2658
+ "$ref": "#/definitions/@arcgis.core.form.elements.GroupElement.GroupElement"
2659
+ },
2660
+ {
2661
+ "$ref": "#/definitions/@arcgis.core.form.elements.UtilityNetworkAssociationsElement.UtilityNetworkAssociationsElement"
2662
+ }
2663
+ ],
2664
+ "description": "Form element types.\n\n> [!CAUTION] > > * The `AttachmentElement` is not yet fully supported by the [FeatureForm](https://developers.arcgis.com/javascript/latest/references/core/widgets/FeatureForm/) widget."
2665
+ },
1228
2666
  "GeoTransformation": {
1229
2667
  "additionalProperties": false,
1230
2668
  "description": "Represents the geo transformation in the settings.",
@@ -1309,10 +2747,10 @@
1309
2747
  "$ref": "#/definitions/CreateGraphicsResult"
1310
2748
  },
1311
2749
  {
1312
- "$ref": "#/definitions/esri.Graphic"
2750
+ "$ref": "#/definitions/@arcgis.core.Graphic.Graphic"
1313
2751
  },
1314
2752
  {
1315
- "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
2753
+ "$ref": "T_13"
1316
2754
  },
1317
2755
  {
1318
2756
  "$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
@@ -1330,41 +2768,41 @@
1330
2768
  "$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
1331
2769
  },
1332
2770
  {
1333
- "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
2771
+ "$ref": "T_13"
1334
2772
  }
1335
2773
  ]
1336
2774
  },
1337
2775
  "type": "array"
1338
2776
  },
1339
2777
  {
1340
- "$ref": "#/definitions/esri.Extent"
2778
+ "$ref": "#/definitions/@arcgis.core.geometry.Extent.Extent"
1341
2779
  },
1342
2780
  {
1343
- "$ref": "#/definitions/esri.Multipoint"
2781
+ "$ref": "#/definitions/@arcgis.core.geometry.Multipoint.Multipoint"
1344
2782
  },
1345
2783
  {
1346
- "$ref": "#/definitions/esri.Point"
2784
+ "$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
1347
2785
  },
1348
2786
  {
1349
- "$ref": "#/definitions/esri.Polygon"
2787
+ "$ref": "T_18"
1350
2788
  },
1351
2789
  {
1352
- "$ref": "#/definitions/esri.Polyline"
2790
+ "$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
1353
2791
  },
1354
2792
  {
1355
- "$ref": "#/definitions/esri.Mesh"
2793
+ "$ref": "#/definitions/@arcgis.core.geometry.Mesh.Mesh"
1356
2794
  },
1357
2795
  {
1358
2796
  "$ref": "#/definitions/esri.rest-api.FeatureJson.FeatureJson"
1359
2797
  },
1360
2798
  {
1361
- "$ref": "#/definitions/esri.FeatureSet"
2799
+ "$ref": "#/definitions/@arcgis.core.rest.support.FeatureSet.FeatureSet"
1362
2800
  },
1363
2801
  {
1364
2802
  "items": {
1365
2803
  "anyOf": [
1366
2804
  {
1367
- "$ref": "#/definitions/esri.Graphic"
2805
+ "$ref": "#/definitions/@arcgis.core.Graphic.Graphic"
1368
2806
  },
1369
2807
  {
1370
2808
  "$ref": "#/definitions/esri.rest-api.FeatureJson.FeatureJson"
@@ -1392,22 +2830,22 @@
1392
2830
  "items": {
1393
2831
  "anyOf": [
1394
2832
  {
1395
- "$ref": "#/definitions/esri.Extent"
2833
+ "$ref": "#/definitions/@arcgis.core.geometry.Extent.Extent"
1396
2834
  },
1397
2835
  {
1398
- "$ref": "#/definitions/esri.Multipoint"
2836
+ "$ref": "#/definitions/@arcgis.core.geometry.Multipoint.Multipoint"
1399
2837
  },
1400
2838
  {
1401
- "$ref": "#/definitions/esri.Point"
2839
+ "$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
1402
2840
  },
1403
2841
  {
1404
- "$ref": "#/definitions/esri.Polygon"
2842
+ "$ref": "T_18"
1405
2843
  },
1406
2844
  {
1407
- "$ref": "#/definitions/esri.Polyline"
2845
+ "$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
1408
2846
  },
1409
2847
  {
1410
- "$ref": "#/definitions/esri.Mesh"
2848
+ "$ref": "#/definitions/@arcgis.core.geometry.Mesh.Mesh"
1411
2849
  },
1412
2850
  {
1413
2851
  "$ref": "#/definitions/esri.rest-api.GeometryJson.PointJson"
@@ -1431,6 +2869,49 @@
1431
2869
  ],
1432
2870
  "description": "An object that is convertible to one or more geometries."
1433
2871
  },
2872
+ "GeometryUnion": {
2873
+ "anyOf": [
2874
+ {
2875
+ "$ref": "#/definitions/@arcgis.core.geometry.Extent.Extent"
2876
+ },
2877
+ {
2878
+ "$ref": "#/definitions/@arcgis.core.geometry.Multipoint.Multipoint"
2879
+ },
2880
+ {
2881
+ "$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
2882
+ },
2883
+ {
2884
+ "$ref": "#/definitions/@arcgis.core.geometry.Polygon.Polygon"
2885
+ },
2886
+ {
2887
+ "$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
2888
+ },
2889
+ {
2890
+ "$ref": "#/definitions/@arcgis.core.geometry.Mesh.Mesh"
2891
+ }
2892
+ ],
2893
+ "description": "Union of all geometries."
2894
+ },
2895
+ "GeometryWithoutMeshUnion": {
2896
+ "anyOf": [
2897
+ {
2898
+ "$ref": "#/definitions/@arcgis.core.geometry.Extent.Extent"
2899
+ },
2900
+ {
2901
+ "$ref": "#/definitions/@arcgis.core.geometry.Multipoint.Multipoint"
2902
+ },
2903
+ {
2904
+ "$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
2905
+ },
2906
+ {
2907
+ "$ref": "T_18"
2908
+ },
2909
+ {
2910
+ "$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
2911
+ }
2912
+ ],
2913
+ "description": "Union of all non-mesh geometries."
2914
+ },
1434
2915
  "GnssDeviceConnectionInfo": {
1435
2916
  "additionalProperties": false,
1436
2917
  "description": "A geolocation source.",
@@ -1531,7 +3012,7 @@
1531
3012
  "$ref": "#/definitions/@vertigis.arcgis-extensions.data._TableExtension.TableReference"
1532
3013
  },
1533
3014
  {
1534
- "$ref": "#/definitions/esri.Layer"
3015
+ "$ref": "#/definitions/@arcgis.core.layers.Layer.Layer"
1535
3016
  },
1536
3017
  {
1537
3018
  "$ref": "@vertigis.arcgis-extensions.mapping._LayerExtension.LayerExtension"
@@ -1560,7 +3041,7 @@
1560
3041
  "$ref": "#/definitions/@vertigis.arcgis-extensions.data._TableExtension.TableReference"
1561
3042
  },
1562
3043
  {
1563
- "$ref": "#/definitions/esri.Layer"
3044
+ "$ref": "#/definitions/@arcgis.core.layers.Layer.Layer"
1564
3045
  },
1565
3046
  {
1566
3047
  "$ref": "@vertigis.arcgis-extensions.mapping._LayerExtension.LayerExtension"
@@ -1636,11 +3117,42 @@
1636
3117
  "color": {
1637
3118
  "anyOf": [
1638
3119
  {
1639
- "$ref": "#/definitions/esri.Color"
3120
+ "$ref": "#/definitions/@arcgis.core.Color.Color"
1640
3121
  },
1641
3122
  {
1642
- "$ref": "#/definitions/esri.rest-api.SymbolJson.ColorJson",
1643
- "description": "Color is represented as a four-element array. The four elements represent values for red, green, blue, and alpha in that order. Values range from 0 through 255. If color is undefined for a symbol, the color value is null. See {@link https://developers.arcgis.com/web-map-specification/objects/color/} {@link https://developers.arcgis.com/web-scene-specification/objects/color/}."
3123
+ "items": [
3124
+ {
3125
+ "type": "number"
3126
+ },
3127
+ {
3128
+ "type": "number"
3129
+ },
3130
+ {
3131
+ "type": "number"
3132
+ },
3133
+ {
3134
+ "type": "number"
3135
+ }
3136
+ ],
3137
+ "maxItems": 4,
3138
+ "minItems": 4,
3139
+ "type": "array"
3140
+ },
3141
+ {
3142
+ "items": [
3143
+ {
3144
+ "type": "number"
3145
+ },
3146
+ {
3147
+ "type": "number"
3148
+ },
3149
+ {
3150
+ "type": "number"
3151
+ }
3152
+ ],
3153
+ "maxItems": 3,
3154
+ "minItems": 3,
3155
+ "type": "array"
1644
3156
  }
1645
3157
  ],
1646
3158
  "description": "Indicates the color for the Marker. This property is only used if the symbol is a well-known ID."
@@ -1725,7 +3237,7 @@
1725
3237
  "description": "Event args for the map.initialized event.",
1726
3238
  "properties": {
1727
3239
  "loadTime": {
1728
- "$ref": "#/definitions/TimeSpan",
3240
+ "$ref": "TimeSpan",
1729
3241
  "description": "The amount of time that the map took to load. Mobile only."
1730
3242
  },
1731
3243
  "mapExtension": {
@@ -1785,33 +3297,66 @@
1785
3297
  "MarkerSymbolConfig": {
1786
3298
  "anyOf": [
1787
3299
  {
1788
- "$ref": "#/definitions/esri.PictureMarkerSymbol"
3300
+ "$ref": "#/definitions/@arcgis.core.symbols.PictureMarkerSymbol.PictureMarkerSymbol"
3301
+ },
3302
+ {
3303
+ "$ref": "#/definitions/@arcgis.core.symbols.SimpleMarkerSymbol.SimpleMarkerSymbol"
3304
+ },
3305
+ {
3306
+ "$ref": "#/definitions/@arcgis.core.symbols.TextSymbol.TextSymbol"
3307
+ },
3308
+ {
3309
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.PictureMarkerSymbolJson"
3310
+ },
3311
+ {
3312
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleMarkerSymbolJson"
3313
+ },
3314
+ {
3315
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.TextSymbolJson"
3316
+ }
3317
+ ],
3318
+ "description": "Symbols that can be used for location markers."
3319
+ },
3320
+ "MeasurementSystem": {
3321
+ "description": "A system used to determine what units should be used for measurement values.",
3322
+ "enum": [
3323
+ "imperial",
3324
+ "metric"
3325
+ ],
3326
+ "type": "string"
3327
+ },
3328
+ "NestableAttachmentInputUnion": {
3329
+ "anyOf": [
3330
+ {
3331
+ "$ref": "#/definitions/@arcgis.core.form.elements.inputs.attachments.AudioInput.AudioInput"
3332
+ },
3333
+ {
3334
+ "$ref": "#/definitions/@arcgis.core.form.elements.inputs.attachments.DocumentInput.DocumentInput"
1789
3335
  },
1790
3336
  {
1791
- "$ref": "#/definitions/esri.SimpleMarkerSymbol"
3337
+ "$ref": "#/definitions/@arcgis.core.form.elements.inputs.attachments.ImageInput.ImageInput"
1792
3338
  },
1793
3339
  {
1794
- "$ref": "#/definitions/esri.TextSymbol"
3340
+ "$ref": "#/definitions/@arcgis.core.form.elements.inputs.attachments.SignatureInput.SignatureInput"
1795
3341
  },
1796
3342
  {
1797
- "$ref": "#/definitions/esri.rest-api.SymbolJson.PictureMarkerSymbolJson"
3343
+ "$ref": "#/definitions/@arcgis.core.form.elements.inputs.attachments.VideoInput.VideoInput"
3344
+ }
3345
+ ]
3346
+ },
3347
+ "NestableFormElementUnion": {
3348
+ "anyOf": [
3349
+ {
3350
+ "$ref": "#/definitions/@arcgis.core.form.elements.FieldElement.FieldElement"
1798
3351
  },
1799
3352
  {
1800
- "$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleMarkerSymbolJson"
3353
+ "$ref": "#/definitions/@arcgis.core.form.elements.RelationshipElement.RelationshipElement"
1801
3354
  },
1802
3355
  {
1803
- "$ref": "#/definitions/esri.rest-api.SymbolJson.TextSymbolJson"
3356
+ "$ref": "#/definitions/@arcgis.core.form.elements.TextElement.TextElement"
1804
3357
  }
1805
3358
  ],
1806
- "description": "Symbols that can be used for location markers."
1807
- },
1808
- "MeasurementSystem": {
1809
- "description": "A system used to determine what units should be used for measurement values.",
1810
- "enum": [
1811
- "imperial",
1812
- "metric"
1813
- ],
1814
- "type": "string"
3359
+ "description": "A union of the types of [form](https://developers.arcgis.com/javascript/latest/references/core/form/FormTemplate/) elements that may be included in a [GroupElement](https://developers.arcgis.com/javascript/latest/references/core/form/elements/GroupElement/)."
1815
3360
  },
1816
3361
  "OperationalLayerJson": {
1817
3362
  "anyOf": [
@@ -1990,6 +3535,17 @@
1990
3535
  ],
1991
3536
  "type": "object"
1992
3537
  },
3538
+ "ParquetGeometryEncodingUnion": {
3539
+ "anyOf": [
3540
+ {
3541
+ "$ref": "#/definitions/@arcgis.core.layers.support.ParquetGeometryEncodingLocation.ParquetGeometryEncodingLocation"
3542
+ },
3543
+ {
3544
+ "$ref": "#/definitions/@arcgis.core.layers.support.ParquetGeometryEncodingWkb.ParquetGeometryEncodingWkb"
3545
+ }
3546
+ ],
3547
+ "description": "Supported Parquet geometry encoding types."
3548
+ },
1993
3549
  "PointCloudFilterJson": {
1994
3550
  "anyOf": [
1995
3551
  {
@@ -2004,6 +3560,17 @@
2004
3560
  ],
2005
3561
  "description": "Filters applied to the pointCloud which will hide a point.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/pointCloudFilter/}."
2006
3562
  },
3563
+ "PopupPositionResult": {
3564
+ "enum": [
3565
+ "bottom-center",
3566
+ "bottom-left",
3567
+ "bottom-right",
3568
+ "top-center",
3569
+ "top-left",
3570
+ "top-right"
3571
+ ],
3572
+ "type": "string"
3573
+ },
2007
3574
  "PortalAuthentication": {
2008
3575
  "additionalProperties": false,
2009
3576
  "description": "Represents the portal authentication settings.",
@@ -2102,7 +3669,7 @@
2102
3669
  "description": "Represents the print extent.",
2103
3670
  "properties": {
2104
3671
  "center": {
2105
- "$ref": "#/definitions/esri.Point",
3672
+ "$ref": "#/definitions/@arcgis.core.geometry.Point.Point",
2106
3673
  "description": "Center point."
2107
3674
  },
2108
3675
  "spatialReference": {
@@ -2361,6 +3928,32 @@
2361
3928
  ],
2362
3929
  "description": "A renderer.\n\nPart of the ArcGIS REST API (see http://resources.arcgis.com/en/help/rest/apiref/renderer.html)."
2363
3930
  },
3931
+ "RendererUnion": {
3932
+ "anyOf": [
3933
+ {
3934
+ "$ref": "#/definitions/@arcgis.core.renderers.SimpleRenderer.SimpleRenderer"
3935
+ },
3936
+ {
3937
+ "$ref": "#/definitions/@arcgis.core.renderers.ClassBreaksRenderer.ClassBreaksRenderer"
3938
+ },
3939
+ {
3940
+ "$ref": "#/definitions/@arcgis.core.renderers.UniqueValueRenderer.UniqueValueRenderer"
3941
+ },
3942
+ {
3943
+ "$ref": "#/definitions/@arcgis.core.renderers.DotDensityRenderer.DotDensityRenderer"
3944
+ },
3945
+ {
3946
+ "$ref": "#/definitions/@arcgis.core.renderers.DictionaryRenderer.DictionaryRenderer"
3947
+ },
3948
+ {
3949
+ "$ref": "#/definitions/@arcgis.core.renderers.PieChartRenderer.PieChartRenderer"
3950
+ },
3951
+ {
3952
+ "$ref": "#/definitions/@arcgis.core.renderers.HeatmapRenderer.HeatmapRenderer"
3953
+ }
3954
+ ],
3955
+ "description": "Union of renderers."
3956
+ },
2364
3957
  "ReportErrorEventArgs": {
2365
3958
  "additionalProperties": false,
2366
3959
  "description": "Arguments for the reports.report-error event.",
@@ -2711,6 +4304,50 @@
2711
4304
  ],
2712
4305
  "description": "A symbol representing a feature on the map.\n\nPart of the Esri ArcGIS REST API (see http://resources.arcgis.com/en/help/rest/apiref/symbol.html). See {@link https://developers.arcgis.com/web-map-specification/objects/symbol/}."
2713
4306
  },
4307
+ "SymbolUnion": {
4308
+ "anyOf": [
4309
+ {
4310
+ "$ref": "#/definitions/@arcgis.core.symbols.PictureFillSymbol.PictureFillSymbol"
4311
+ },
4312
+ {
4313
+ "$ref": "#/definitions/@arcgis.core.symbols.PictureMarkerSymbol.PictureMarkerSymbol"
4314
+ },
4315
+ {
4316
+ "$ref": "#/definitions/@arcgis.core.symbols.SimpleFillSymbol.SimpleFillSymbol"
4317
+ },
4318
+ {
4319
+ "$ref": "#/definitions/@arcgis.core.symbols.SimpleLineSymbol.SimpleLineSymbol"
4320
+ },
4321
+ {
4322
+ "$ref": "#/definitions/@arcgis.core.symbols.SimpleMarkerSymbol.SimpleMarkerSymbol"
4323
+ },
4324
+ {
4325
+ "$ref": "#/definitions/@arcgis.core.symbols.TextSymbol.TextSymbol"
4326
+ },
4327
+ {
4328
+ "$ref": "#/definitions/@arcgis.core.symbols.CIMSymbol.CIMSymbol"
4329
+ },
4330
+ {
4331
+ "$ref": "#/definitions/@arcgis.core.symbols.LabelSymbol3D.LabelSymbol3D"
4332
+ },
4333
+ {
4334
+ "$ref": "#/definitions/@arcgis.core.symbols.LineSymbol3D.LineSymbol3D"
4335
+ },
4336
+ {
4337
+ "$ref": "#/definitions/@arcgis.core.symbols.MeshSymbol3D.MeshSymbol3D"
4338
+ },
4339
+ {
4340
+ "$ref": "#/definitions/@arcgis.core.symbols.PointSymbol3D.PointSymbol3D"
4341
+ },
4342
+ {
4343
+ "$ref": "#/definitions/@arcgis.core.symbols.PolygonSymbol3D.PolygonSymbol3D"
4344
+ },
4345
+ {
4346
+ "$ref": "#/definitions/@arcgis.core.symbols.WebStyleSymbol.WebStyleSymbol"
4347
+ }
4348
+ ],
4349
+ "description": "Union of all symbols."
4350
+ },
2714
4351
  "TargetsResultsSetArgs": {
2715
4352
  "additionalProperties": false,
2716
4353
  "description": "Arguments for various commands that target a result set of features.",
@@ -2782,7 +4419,7 @@
2782
4419
  "attachments": {
2783
4420
  "description": "An array of attachments that apply or are to be applied to the currently edited feature.",
2784
4421
  "items": {
2785
- "$ref": "@vertigis.arcgis-extensions.data.Attachment.Attachment"
4422
+ "$ref": "T_10"
2786
4423
  },
2787
4424
  "type": "array"
2788
4425
  },
@@ -3098,63 +4735,6 @@
3098
4735
  "edit.session-updated:input": {
3099
4736
  "$ref": "#/definitions/UpdateSessionArgs"
3100
4737
  },
3101
- "esri.Color": {
3102
- "$ref": "esri/Color"
3103
- },
3104
- "esri.Content": {
3105
- "$ref": "esri/popup/content/AttachmentsContent"
3106
- },
3107
- "esri.Extent": {
3108
- "$ref": "esri/geometry/Extent"
3109
- },
3110
- "esri.FeatureSet": {
3111
- "$ref": "esri/rest/support/FeatureSet"
3112
- },
3113
- "esri.FeatureType": {
3114
- "$ref": "esri/layers/support/FeatureType"
3115
- },
3116
- "esri.Field": {
3117
- "$ref": "esri/layers/support/Field"
3118
- },
3119
- "esri.Graphic": {
3120
- "$ref": "esri/Graphic"
3121
- },
3122
- "esri.Layer": {
3123
- "$ref": "esri/layers/Layer"
3124
- },
3125
- "esri.Mesh": {
3126
- "$ref": "esri/geometry/Mesh"
3127
- },
3128
- "esri.Multipoint": {
3129
- "$ref": "esri/geometry/Multipoint"
3130
- },
3131
- "esri.PictureMarkerSymbol": {
3132
- "$ref": "esri/symbols/PictureMarkerSymbol"
3133
- },
3134
- "esri.Point": {
3135
- "$ref": "esri/geometry/Point"
3136
- },
3137
- "esri.Polygon": {
3138
- "$ref": "esri/geometry/Polygon"
3139
- },
3140
- "esri.Polyline": {
3141
- "$ref": "esri/geometry/Polyline"
3142
- },
3143
- "esri.PopupTemplate": {
3144
- "$ref": "esri/PopupTemplate"
3145
- },
3146
- "esri.PortalItem": {
3147
- "$ref": "esri/portal/PortalItem"
3148
- },
3149
- "esri.SimpleMarkerSymbol": {
3150
- "$ref": "esri/symbols/SimpleMarkerSymbol"
3151
- },
3152
- "esri.SpatialReference": {
3153
- "$ref": "esri/geometry/SpatialReference"
3154
- },
3155
- "esri.TextSymbol": {
3156
- "$ref": "esri/symbols/TextSymbol"
3157
- },
3158
4738
  "esri.rest-api.AnnotationLayerJson.AnnotationLayerJson": {
3159
4739
  "additionalProperties": false,
3160
4740
  "description": "Annotation layers can be created by referencing a layer from a feature service. Annotation layers honor any feature templates configured in the source document.",
@@ -3225,13 +4805,7 @@
3225
4805
  "type": "string"
3226
4806
  },
3227
4807
  "listMode": {
3228
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
3229
- "enum": [
3230
- "hide",
3231
- "hide-children",
3232
- "show"
3233
- ],
3234
- "type": "string"
4808
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
3235
4809
  },
3236
4810
  "maxScale": {
3237
4811
  "description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
@@ -3584,13 +5158,7 @@
3584
5158
  "type": "string"
3585
5159
  },
3586
5160
  "listMode": {
3587
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
3588
- "enum": [
3589
- "hide",
3590
- "hide-children",
3591
- "show"
3592
- ],
3593
- "type": "string"
5161
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
3594
5162
  },
3595
5163
  "maxScale": {
3596
5164
  "description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
@@ -3790,13 +5358,7 @@
3790
5358
  "description": "Additional properties that can define drawing information and a definition expression for the sublayer. See layerDefinition properties table."
3791
5359
  },
3792
5360
  "listMode": {
3793
- "description": "To show or hide the sublayer in the layer list. If property is present, must be one of the following values: show, hide.",
3794
- "enum": [
3795
- "hide",
3796
- "hide-children",
3797
- "show"
3798
- ],
3799
- "type": "string"
5361
+ "description": "To show or hide the sublayer in the layer list. If property is present, must be one of the following values: show, hide."
3800
5362
  },
3801
5363
  "opacity": {
3802
5364
  "description": "The degree of transparency applied to the sublayer on the client side, where 0 is full transparency and 1 is no transparency. This is multiplied with the opacity of the containing layers.",
@@ -3888,13 +5450,7 @@
3888
5450
  "type": "string"
3889
5451
  },
3890
5452
  "listMode": {
3891
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
3892
- "enum": [
3893
- "hide",
3894
- "hide-children",
3895
- "show"
3896
- ],
3897
- "type": "string"
5453
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
3898
5454
  },
3899
5455
  "locationInfo": {
3900
5456
  "$ref": "#/definitions/esri.rest-api.CSVLayerJson.LocationInfoJson",
@@ -4395,11 +5951,8 @@
4395
5951
  "description": "Specifies a single color to fill the background of the scene with. The scene background is displayed behind any scene objects, stars and atmosphere.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/environment_background_color/}.",
4396
5952
  "properties": {
4397
5953
  "color": {
4398
- "description": "Color is represented as a three or four-element array.",
4399
- "items": {
4400
- "type": "number"
4401
- },
4402
- "type": "array"
5954
+ "$ref": "#/definitions/ColorJson",
5955
+ "description": "Color is represented as a three or four-element array."
4403
5956
  },
4404
5957
  "transparency": {
4405
5958
  "description": "The value has to lie between 100 (full transparency) and 0 (full opacity). Web scenes only.",
@@ -4719,13 +6272,7 @@
4719
6272
  "type": "string"
4720
6273
  },
4721
6274
  "listMode": {
4722
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
4723
- "enum": [
4724
- "hide",
4725
- "hide-children",
4726
- "show"
4727
- ],
4728
- "type": "string"
6275
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
4729
6276
  },
4730
6277
  "maxScale": {
4731
6278
  "description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
@@ -5405,13 +6952,7 @@
5405
6952
  "type": "string"
5406
6953
  },
5407
6954
  "listMode": {
5408
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
5409
- "enum": [
5410
- "hide",
5411
- "hide-children",
5412
- "show"
5413
- ],
5414
- "type": "string"
6955
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
5415
6956
  },
5416
6957
  "maxScale": {
5417
6958
  "description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
@@ -5550,13 +7091,7 @@
5550
7091
  "description": "Defined by the GeoRSS to JSON request service. If the GeoRSS feed does not have lines, this property is not added to the layer JSON."
5551
7092
  },
5552
7093
  "listMode": {
5553
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
5554
- "enum": [
5555
- "hide",
5556
- "hide-children",
5557
- "show"
5558
- ],
5559
- "type": "string"
7094
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
5560
7095
  },
5561
7096
  "maxScale": {
5562
7097
  "description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
@@ -5817,7 +7352,7 @@
5817
7352
  "description": "Determines whether the camera is constrained to navigate only above, or also under the ground surface."
5818
7353
  },
5819
7354
  "surfaceColor": {
5820
- "$ref": "#/definitions/esri.rest-api.SymbolJson.ColorJson",
7355
+ "$ref": "#/definitions/ColorJson",
5821
7356
  "description": "Defines the color of the ground surface, displayed underneath the basemap. If no color, the default grid is shown."
5822
7357
  },
5823
7358
  "transparency": {
@@ -5889,13 +7424,7 @@
5889
7424
  "type": "array"
5890
7425
  },
5891
7426
  "listMode": {
5892
- "description": "To show or hide the group layer in the layer list. See {@link support /esri!ListMode}.",
5893
- "enum": [
5894
- "hide",
5895
- "hide-children",
5896
- "show"
5897
- ],
5898
- "type": "string"
7427
+ "description": "To show or hide the group layer in the layer list. See {@link support /esri!ListMode}."
5899
7428
  },
5900
7429
  "maxScale": {
5901
7430
  "description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
@@ -6081,13 +7610,7 @@
6081
7610
  "type": "string"
6082
7611
  },
6083
7612
  "listMode": {
6084
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
6085
- "enum": [
6086
- "hide",
6087
- "hide-children",
6088
- "show"
6089
- ],
6090
- "type": "string"
7613
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
6091
7614
  },
6092
7615
  "maxScale": {
6093
7616
  "description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
@@ -6299,13 +7822,7 @@
6299
7822
  "type": "string"
6300
7823
  },
6301
7824
  "listMode": {
6302
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
6303
- "enum": [
6304
- "hide",
6305
- "hide-children",
6306
- "show"
6307
- ],
6308
- "type": "string"
7825
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
6309
7826
  },
6310
7827
  "maxScale": {
6311
7828
  "description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
@@ -6442,13 +7959,7 @@
6442
7959
  "type": "string"
6443
7960
  },
6444
7961
  "listMode": {
6445
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
6446
- "enum": [
6447
- "hide",
6448
- "hide-children",
6449
- "show"
6450
- ],
6451
- "type": "string"
7962
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
6452
7963
  },
6453
7964
  "maxScale": {
6454
7965
  "description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
@@ -6804,13 +8315,7 @@
6804
8315
  "type": "string"
6805
8316
  },
6806
8317
  "listMode": {
6807
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
6808
- "enum": [
6809
- "hide",
6810
- "hide-children",
6811
- "show"
6812
- ],
6813
- "type": "string"
8318
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
6814
8319
  },
6815
8320
  "maxScale": {
6816
8321
  "description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
@@ -7674,7 +9179,7 @@
7674
9179
  "type": "number"
7675
9180
  },
7676
9181
  "color": {
7677
- "$ref": "#/definitions/esri.rest-api.SymbolJson.ColorJson",
9182
+ "$ref": "#/definitions/ColorJson",
7678
9183
  "description": "Color is represented as a four-element array. The four elements represent values for red, green, blue, and alpha in that order. Values range from 0 through 255."
7679
9184
  },
7680
9185
  "type": {
@@ -7905,13 +9410,7 @@
7905
9410
  "type": "array"
7906
9411
  },
7907
9412
  "listMode": {
7908
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
7909
- "enum": [
7910
- "hide",
7911
- "hide-children",
7912
- "show"
7913
- ],
7914
- "type": "string"
9413
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
7915
9414
  },
7916
9415
  "maxScale": {
7917
9416
  "description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
@@ -8086,13 +9585,7 @@
8086
9585
  "type": "string"
8087
9586
  },
8088
9587
  "listMode": {
8089
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
8090
- "enum": [
8091
- "hide",
8092
- "hide-children",
8093
- "show"
8094
- ],
8095
- "type": "string"
9588
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
8096
9589
  },
8097
9590
  "maxScale": {
8098
9591
  "description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
@@ -8433,13 +9926,7 @@
8433
9926
  "type": "string"
8434
9927
  },
8435
9928
  "listMode": {
8436
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
8437
- "enum": [
8438
- "hide",
8439
- "hide-children",
8440
- "show"
8441
- ],
8442
- "type": "string"
9929
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
8443
9930
  },
8444
9931
  "maxScale": {
8445
9932
  "description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
@@ -8878,13 +10365,7 @@
8878
10365
  "type": "string"
8879
10366
  },
8880
10367
  "listMode": {
8881
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
8882
- "enum": [
8883
- "hide",
8884
- "hide-children",
8885
- "show"
8886
- ],
8887
- "type": "string"
10368
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
8888
10369
  },
8889
10370
  "maxScale": {
8890
10371
  "description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
@@ -9123,7 +10604,7 @@
9123
10604
  "type": "number"
9124
10605
  },
9125
10606
  "color": {
9126
- "$ref": "#/definitions/esri.rest-api.SymbolJson.ColorJson",
10607
+ "$ref": "#/definitions/ColorJson",
9127
10608
  "description": "Color is represented as a three or four-element array."
9128
10609
  },
9129
10610
  "description": {
@@ -9144,11 +10625,7 @@
9144
10625
  "colors": {
9145
10626
  "description": "An array of colors that define the color ramp. Either colors or stops must be specified to construct the color ramp.",
9146
10627
  "items": {
9147
- "description": "Color is represented as a four-element array. The four elements represent values for red, green, blue, and alpha in that order. Values range from 0 through 255. If color is undefined for a symbol, the color value is null. See {@link https://developers.arcgis.com/web-map-specification/objects/color/} {@link https://developers.arcgis.com/web-scene-specification/objects/color/}.",
9148
- "items": {
9149
- "type": "number"
9150
- },
9151
- "type": "array"
10628
+ "$ref": "#/definitions/ColorJson"
9152
10629
  },
9153
10630
  "type": "array"
9154
10631
  },
@@ -9272,8 +10749,39 @@
9272
10749
  "color": {
9273
10750
  "anyOf": [
9274
10751
  {
9275
- "$ref": "#/definitions/esri.rest-api.SymbolJson.ColorJson",
9276
- "description": "Color is represented as a four-element array. The four elements represent values for red, green, blue, and alpha in that order. Values range from 0 through 255. If color is undefined for a symbol, the color value is null. See {@link https://developers.arcgis.com/web-map-specification/objects/color/} {@link https://developers.arcgis.com/web-scene-specification/objects/color/}."
10752
+ "items": [
10753
+ {
10754
+ "type": "number"
10755
+ },
10756
+ {
10757
+ "type": "number"
10758
+ },
10759
+ {
10760
+ "type": "number"
10761
+ },
10762
+ {
10763
+ "type": "number"
10764
+ }
10765
+ ],
10766
+ "maxItems": 4,
10767
+ "minItems": 4,
10768
+ "type": "array"
10769
+ },
10770
+ {
10771
+ "items": [
10772
+ {
10773
+ "type": "number"
10774
+ },
10775
+ {
10776
+ "type": "number"
10777
+ },
10778
+ {
10779
+ "type": "number"
10780
+ }
10781
+ ],
10782
+ "maxItems": 3,
10783
+ "minItems": 3,
10784
+ "type": "array"
9277
10785
  },
9278
10786
  {
9279
10787
  "type": "string"
@@ -9297,7 +10805,7 @@
9297
10805
  "description": "The classBreaksInfo object provides information about the class breaks associated with the renderer.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/colorUniqueValueInfo/}.",
9298
10806
  "properties": {
9299
10807
  "color": {
9300
- "$ref": "#/definitions/esri.rest-api.SymbolJson.ColorJson",
10808
+ "$ref": "#/definitions/ColorJson",
9301
10809
  "description": "Color is represented as a three or four-element array."
9302
10810
  },
9303
10811
  "description": {
@@ -10400,7 +11908,7 @@
10400
11908
  },
10401
11909
  "esri.rest-api.SceneLayerJson.SceneLayerJson": {
10402
11910
  "additionalProperties": false,
10403
- "description": "The SceneLayer is a layer type designed for on-demand streaming and displaying large amounts of data in a SceneView. SceneLayers support two geometry types: Point and 3D Objects (e.g. Buildings).\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/sceneLayer/}.",
11911
+ "description": "The SceneLayer is a layer type designed for on-demand streaming and displaying large amounts of data in a SceneView. SceneLayers support two geometry types: Point and 3D Objects (e.g. Buildings).\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/sceneLayer/}.\n\nNote: `isReference` is not part of the web scene layer spec, but we include BasemapLayerJsonBase to align with the existing basemap-layer typing pattern used across layer JSON types.",
10404
11912
  "properties": {
10405
11913
  "blendMode": {
10406
11914
  "description": "Blend modes are used to blend layers together to create an interesting effect in a layer, or even to produce what seems like a new layer.",
@@ -10439,6 +11947,9 @@
10439
11947
  ],
10440
11948
  "type": "string"
10441
11949
  },
11950
+ "customParameters": {
11951
+ "description": "A sequence of custom parameters appended to the URL of all requests related to supporting ArcGIS layer types."
11952
+ },
10442
11953
  "disablePopup": {
10443
11954
  "description": "Indicates whether to allow a client to ignore popups defined by the service item.",
10444
11955
  "type": "boolean"
@@ -10451,6 +11962,10 @@
10451
11962
  "description": "A unique identifying string for the layer.",
10452
11963
  "type": "string"
10453
11964
  },
11965
+ "isReference": {
11966
+ "description": "This is applicable if used as a baseMapLayer. A boolean value indicating whether or not the baseMapLayer draws on top (true) of other layers, including operationalLayers , or below (false).",
11967
+ "type": "boolean"
11968
+ },
10454
11969
  "itemId": {
10455
11970
  "description": "Optional string containing the item ID of the service if it's registered on ArcGIS Online or your organization's portal.",
10456
11971
  "type": "string"
@@ -10465,13 +11980,7 @@
10465
11980
  "type": "string"
10466
11981
  },
10467
11982
  "listMode": {
10468
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
10469
- "enum": [
10470
- "hide",
10471
- "hide-children",
10472
- "show"
10473
- ],
10474
- "type": "string"
11983
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
10475
11984
  },
10476
11985
  "maxScale": {
10477
11986
  "description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
@@ -10673,13 +12182,7 @@
10673
12182
  "type": "string"
10674
12183
  },
10675
12184
  "listMode": {
10676
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
10677
- "enum": [
10678
- "hide",
10679
- "hide-children",
10680
- "show"
10681
- ],
10682
- "type": "string"
12185
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
10683
12186
  },
10684
12187
  "maxScale": {
10685
12188
  "description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
@@ -10945,13 +12448,7 @@
10945
12448
  "type": "array"
10946
12449
  },
10947
12450
  "listMode": {
10948
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
10949
- "enum": [
10950
- "hide",
10951
- "hide-children",
10952
- "show"
10953
- ],
10954
- "type": "string"
12451
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
10955
12452
  },
10956
12453
  "maxScale": {
10957
12454
  "description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
@@ -11093,13 +12590,7 @@
11093
12590
  "type": "string"
11094
12591
  },
11095
12592
  "listMode": {
11096
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
11097
- "enum": [
11098
- "hide",
11099
- "hide-children",
11100
- "show"
11101
- ],
11102
- "type": "string"
12593
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
11103
12594
  },
11104
12595
  "maxScale": {
11105
12596
  "description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
@@ -11183,11 +12674,8 @@
11183
12674
  "description": "Optional border on the line that is used to improve the contrast of the line color against various background colors.",
11184
12675
  "properties": {
11185
12676
  "color": {
11186
- "description": "The color of the border.",
11187
- "items": {
11188
- "type": "number"
11189
- },
11190
- "type": "array"
12677
+ "$ref": "#/definitions/ColorJson",
12678
+ "description": "The color of the border."
11191
12679
  },
11192
12680
  "transparency": {
11193
12681
  "description": "A value between 100 (full transparency) and 0 (full opacity).",
@@ -11216,17 +12704,6 @@
11216
12704
  "description": "Represents a symbol reference that contains a CIM symbol. More properties and details on CIM symbol reference and CIM symbols are available on github: https://github.com/Esri/cim-spec/blob/main/docs/v3/Overview-Symbols.md, https://github.com/Esri/cim-spec/blob/main/docs/v3/CIMRenderers.md#CIMSymbolReference.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/cimSymbolReference/}.",
11217
12705
  "properties": {
11218
12706
  "symbol": {
11219
- "anyOf": [
11220
- {
11221
- "$ref": "esri.CIMLineSymbol"
11222
- },
11223
- {
11224
- "$ref": "esri.CIMPointSymbol"
11225
- },
11226
- {
11227
- "$ref": "esri.CIMPolygonSymbol"
11228
- }
11229
- ],
11230
12707
  "description": "The symbol. Supported values are CIMPointSymbol, CIMLineSymbol, and CIMPolygonSymbol."
11231
12708
  },
11232
12709
  "type": {
@@ -11249,11 +12726,8 @@
11249
12726
  "description": "Optional border on the line that is used to improve the contrast of the line color against various background colors."
11250
12727
  },
11251
12728
  "color": {
11252
- "description": "The color of the line.",
11253
- "items": {
11254
- "type": "number"
11255
- },
11256
- "type": "array"
12729
+ "$ref": "#/definitions/ColorJson",
12730
+ "description": "The color of the line."
11257
12731
  },
11258
12732
  "size": {
11259
12733
  "description": "The width of the line in points.",
@@ -11274,13 +12748,6 @@
11274
12748
  ],
11275
12749
  "type": "object"
11276
12750
  },
11277
- "esri.rest-api.SymbolJson.ColorJson": {
11278
- "description": "Color is represented as a four-element array. The four elements represent values for red, green, blue, and alpha in that order. Values range from 0 through 255. If color is undefined for a symbol, the color value is null. See {@link https://developers.arcgis.com/web-map-specification/objects/color/} {@link https://developers.arcgis.com/web-scene-specification/objects/color/}.",
11279
- "items": {
11280
- "type": "number"
11281
- },
11282
- "type": "array"
11283
- },
11284
12751
  "esri.rest-api.SymbolJson.ExtrudeSymbol3DLayerJson": {
11285
12752
  "additionalProperties": false,
11286
12753
  "description": "ExtrudeSymbol3DLayer is used to render Polygon geometries by extruding them upward from the ground, creating a 3D volumetric object.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/extrudeSymbol3DLayer/}.",
@@ -11529,11 +12996,8 @@
11529
12996
  "description": "The material used to shade the geometry.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/material/}.",
11530
12997
  "properties": {
11531
12998
  "color": {
11532
- "description": "Color is represented as a three or four-element array.",
11533
- "items": {
11534
- "type": "number"
11535
- },
11536
- "type": "array"
12999
+ "$ref": "#/definitions/ColorJson",
13000
+ "description": "Color is represented as a three or four-element array."
11537
13001
  },
11538
13002
  "colorMixMode": {
11539
13003
  "description": "Controls how symbolLayer or visualVariable color is applied onto the underlying geometry color/texture. This property only applies to FillSymbol3DLayer within MeshSymbol3D.\n\n- Tint: the feature's appearance (in terms of color) should be altered to match the symbol / visual variable color.\n- Replace: the feature's color is replaced with the symbol / visual variable color.\n- Multiply: the feature's color is multiplied with the symbol color.",
@@ -11648,11 +13112,8 @@
11648
13112
  "description": "The outline of the point, line or polygon.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/outline/}.",
11649
13113
  "properties": {
11650
13114
  "color": {
11651
- "description": "Color is represented as a three or four-element array.",
11652
- "items": {
11653
- "type": "number"
11654
- },
11655
- "type": "array"
13115
+ "$ref": "#/definitions/ColorJson",
13116
+ "description": "Color is represented as a three or four-element array."
11656
13117
  },
11657
13118
  "size": {
11658
13119
  "description": "Outline size in points, positive only.",
@@ -11927,11 +13388,8 @@
11927
13388
  "description": "Simple fill symbols can be used to symbolize polygon geometries.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/esriSFS_symbol/}.",
11928
13389
  "properties": {
11929
13390
  "color": {
11930
- "description": "Color is represented as a four-element array. The four elements represent values for red, green, blue, and alpha in that order. Values range from 0 through 255. If color is undefined for a symbol, the color value is null.",
11931
- "items": {
11932
- "type": "number"
11933
- },
11934
- "type": "array"
13391
+ "$ref": "#/definitions/ColorJson",
13392
+ "description": "Color is represented as a four-element array. The four elements represent values for red, green, blue, and alpha in that order. Values range from 0 through 255. If color is undefined for a symbol, the color value is null."
11935
13393
  },
11936
13394
  "outline": {
11937
13395
  "$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleLineSymbolJson",
@@ -11967,11 +13425,8 @@
11967
13425
  "description": "Simple line symbols can be used to symbolize polyline geometries or outlines for polygon fills.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/esriSLS_symbol/}.",
11968
13426
  "properties": {
11969
13427
  "color": {
11970
- "description": "Color is represented as a four-element array. The four elements represent values for red, green, blue, and alpha in that order. Values range from 0 through 255. If color is undefined for a symbol, the color value is null.",
11971
- "items": {
11972
- "type": "number"
11973
- },
11974
- "type": "array"
13428
+ "$ref": "#/definitions/ColorJson",
13429
+ "description": "Color is represented as a four-element array. The four elements represent values for red, green, blue, and alpha in that order. Values range from 0 through 255. If color is undefined for a symbol, the color value is null."
11975
13430
  },
11976
13431
  "style": {
11977
13432
  "description": "The line style.",
@@ -12009,11 +13464,8 @@
12009
13464
  "type": "number"
12010
13465
  },
12011
13466
  "color": {
12012
- "description": "Color is represented as a four-element array. The four elements represent values for red, green, blue, and alpha in that order. Values range from 0 through 255. If color is undefined for a symbol, the color value is null.",
12013
- "items": {
12014
- "type": "number"
12015
- },
12016
- "type": "array"
13467
+ "$ref": "#/definitions/ColorJson",
13468
+ "description": "Color is represented as a four-element array. The four elements represent values for red, green, blue, and alpha in that order. Values range from 0 through 255. If color is undefined for a symbol, the color value is null."
12017
13469
  },
12018
13470
  "outline": {
12019
13471
  "$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleLineSymbolJson",
@@ -12236,40 +13688,28 @@
12236
13688
  "type": "number"
12237
13689
  },
12238
13690
  "backgroundColor": {
12239
- "description": "Background color of the text.",
12240
- "items": {
12241
- "type": "number"
12242
- },
12243
- "type": "array"
13691
+ "$ref": "#/definitions/ColorJson",
13692
+ "description": "Background color of the text."
12244
13693
  },
12245
13694
  "borderLineColor": {
12246
- "description": "Value indicating the the color of the border line.",
12247
- "items": {
12248
- "type": "number"
12249
- },
12250
- "type": "array"
13695
+ "$ref": "#/definitions/ColorJson",
13696
+ "description": "Value indicating the the color of the border line."
12251
13697
  },
12252
13698
  "borderLineSize": {
12253
13699
  "description": "Numeric value indicating the the size of the border line in points.",
12254
13700
  "type": "number"
12255
13701
  },
12256
13702
  "color": {
12257
- "description": "Color is represented as a four-element array. The four elements represent values for red, green, blue, and alpha in that order. Values range from 0 through 255. If color is undefined for a symbol, the color value is null.",
12258
- "items": {
12259
- "type": "number"
12260
- },
12261
- "type": "array"
13703
+ "$ref": "#/definitions/ColorJson",
13704
+ "description": "Color is represented as a four-element array. The four elements represent values for red, green, blue, and alpha in that order. Values range from 0 through 255. If color is undefined for a symbol, the color value is null."
12262
13705
  },
12263
13706
  "font": {
12264
13707
  "$ref": "#/definitions/esri.rest-api.SymbolJson.FontJson",
12265
13708
  "description": "Font used for text symbols."
12266
13709
  },
12267
13710
  "haloColor": {
12268
- "description": "Color of the halo around the text.",
12269
- "items": {
12270
- "type": "number"
12271
- },
12272
- "type": "array"
13711
+ "$ref": "#/definitions/ColorJson",
13712
+ "description": "Color of the halo around the text."
12273
13713
  },
12274
13714
  "haloSize": {
12275
13715
  "description": "Numeric value indicating the point size of a halo around the text symbol.",
@@ -12507,13 +13947,7 @@
12507
13947
  "type": "string"
12508
13948
  },
12509
13949
  "listMode": {
12510
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
12511
- "enum": [
12512
- "hide",
12513
- "hide-children",
12514
- "show"
12515
- ],
12516
- "type": "string"
13950
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
12517
13951
  },
12518
13952
  "maxScale": {
12519
13953
  "description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
@@ -12651,13 +14085,7 @@
12651
14085
  "type": "string"
12652
14086
  },
12653
14087
  "listMode": {
12654
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
12655
- "enum": [
12656
- "hide",
12657
- "hide-children",
12658
- "show"
12659
- ],
12660
- "type": "string"
14088
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
12661
14089
  },
12662
14090
  "maxScale": {
12663
14091
  "description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
@@ -12809,13 +14237,7 @@
12809
14237
  "type": "array"
12810
14238
  },
12811
14239
  "listMode": {
12812
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
12813
- "enum": [
12814
- "hide",
12815
- "hide-children",
12816
- "show"
12817
- ],
12818
- "type": "string"
14240
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
12819
14241
  },
12820
14242
  "maxScale": {
12821
14243
  "description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
@@ -12981,13 +14403,7 @@
12981
14403
  "type": "string"
12982
14404
  },
12983
14405
  "listMode": {
12984
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
12985
- "enum": [
12986
- "hide",
12987
- "hide-children",
12988
- "show"
12989
- ],
12990
- "type": "string"
14406
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
12991
14407
  },
12992
14408
  "maxScale": {
12993
14409
  "description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
@@ -13212,13 +14628,7 @@
13212
14628
  "type": "string"
13213
14629
  },
13214
14630
  "listMode": {
13215
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
13216
- "enum": [
13217
- "hide",
13218
- "hide-children",
13219
- "show"
13220
- ],
13221
- "type": "string"
14631
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
13222
14632
  },
13223
14633
  "maxScale": {
13224
14634
  "description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
@@ -13416,13 +14826,7 @@
13416
14826
  "type": "string"
13417
14827
  },
13418
14828
  "listMode": {
13419
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
13420
- "enum": [
13421
- "hide",
13422
- "hide-children",
13423
- "show"
13424
- ],
13425
- "type": "string"
14829
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
13426
14830
  },
13427
14831
  "mapUrl": {
13428
14832
  "description": "The URL of the WMS map. You should also supply the url property, which is the URL of the WMS capabilities document.",
@@ -14343,13 +15747,7 @@
14343
15747
  "type": "string"
14344
15748
  },
14345
15749
  "listMode": {
14346
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
14347
- "enum": [
14348
- "hide",
14349
- "hide-children",
14350
- "show"
14351
- ],
14352
- "type": "string"
15750
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
14353
15751
  },
14354
15752
  "maxScale": {
14355
15753
  "description": "A number representing the maximum scale at which the layer will be visible. The number is the scale's denominator; thus, a value of 2400 represents a scale of 1/2,400. A value of 0 indicates that the layer will be visible no matter how far you zoom in.",
@@ -14510,7 +15908,7 @@
14510
15908
  ]
14511
15909
  },
14512
15910
  "geolocation.position-changed:input": {
14513
- "$ref": "#/definitions/esri.Point"
15911
+ "$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
14514
15912
  },
14515
15913
  "geolocation.position-lost": {
14516
15914
  "description": "Raised when geolocation is disabled, either through signal loss or being turned off, and a user position is not available.",
@@ -14796,7 +16194,7 @@
14796
16194
  ]
14797
16195
  },
14798
16196
  "results.changed:input": {
14799
- "$ref": "#/definitions/TargetsResultsSetArgs"
16197
+ "$ref": "TargetsResultsSetArgs"
14800
16198
  },
14801
16199
  "ui.activated": {
14802
16200
  "description": "Raised when a component is activated. The argument is the component ID.",