@vertigis/viewer-spec 60.9.1 → 61.1.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 (39) 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/registry/printing.d.ts +36 -4
  8. package/messaging/registry/printing.js +1 -1
  9. package/messaging/schema/common-action.schema.json +1834 -575
  10. package/messaging/schema/common-event.schema.json +1639 -305
  11. package/messaging/schema/mobile-action.schema.json +1912 -639
  12. package/messaging/schema/mobile-event.schema.json +1680 -381
  13. package/messaging/schema/web-action.schema.json +2292 -1081
  14. package/messaging/schema/web-charts-command-definitions.md +210 -3
  15. package/messaging/schema/web-drawing-command-definitions.md +18 -57
  16. package/messaging/schema/web-drawing-operation-definitions.md +114 -63
  17. package/messaging/schema/web-edit-command-definitions.md +212 -5
  18. package/messaging/schema/web-event.schema.json +1832 -402
  19. package/messaging/schema/web-geocode-operation-definitions.md +1 -1
  20. package/messaging/schema/web-geolocation-operation-definitions.md +1 -1
  21. package/messaging/schema/web-geometry-operation-definitions.md +77 -16
  22. package/messaging/schema/web-kpi-command-definitions.md +210 -3
  23. package/messaging/schema/web-layer-comparison-command-definitions.md +8 -8
  24. package/messaging/schema/web-layers-command-definitions.md +104 -104
  25. package/messaging/schema/web-layers-operation-definitions.md +37 -37
  26. package/messaging/schema/web-location-marker-command-definitions.md +68 -6
  27. package/messaging/schema/web-map-command-definitions.md +234 -27
  28. package/messaging/schema/web-map-operation-definitions.md +1 -1
  29. package/messaging/schema/web-measurement-command-definitions.md +18 -57
  30. package/messaging/schema/web-measurement-operation-definitions.md +17 -38
  31. package/messaging/schema/web-portal-operation-definitions.md +1 -1
  32. package/messaging/schema/web-printing-command-definitions.md +16 -0
  33. package/messaging/schema/web-results-command-definitions.md +280 -4
  34. package/messaging/schema/web-results-operation-definitions.md +289 -13
  35. package/messaging/schema/web-sketching-command-definitions.md +2 -2
  36. package/messaging/schema/web-sketching-operation-definitions.md +24 -24
  37. package/package.json +2 -2
  38. package/version.d.ts +1 -1
  39. 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": {
5
853
  "anyOf": [
6
854
  {
7
- "$ref": "#/definitions/esri.Extent"
855
+ "$ref": "#/definitions/@arcgis.core.views.3d.environment.SunLighting.SunLighting"
8
856
  },
9
857
  {
10
- "$ref": "#/definitions/esri.Multipoint"
858
+ "$ref": "#/definitions/@arcgis.core.views.3d.environment.VirtualLighting.VirtualLighting"
859
+ }
860
+ ]
861
+ },
862
+ "@arcgis.core.views.3d.environment.types.WeatherUnion": {
863
+ "anyOf": [
864
+ {
865
+ "$ref": "#/definitions/@arcgis.core.views.3d.environment.CloudyWeather.CloudyWeather"
866
+ },
867
+ {
868
+ "$ref": "#/definitions/@arcgis.core.views.3d.environment.FoggyWeather.FoggyWeather"
869
+ },
870
+ {
871
+ "$ref": "#/definitions/@arcgis.core.views.3d.environment.RainyWeather.RainyWeather"
11
872
  },
12
873
  {
13
- "$ref": "#/definitions/esri.Point"
874
+ "$ref": "#/definitions/@arcgis.core.views.3d.environment.SnowyWeather.SnowyWeather"
14
875
  },
15
876
  {
16
- "$ref": "#/definitions/esri.Polygon"
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."
17
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"
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)."
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."
23
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.",
@@ -761,11 +1996,14 @@
761
1996
  "description": "Security settings."
762
1997
  },
763
1998
  "selection": {
764
- "$ref": "#/definitions/Selection",
765
- "description": "Layer objects selections."
1999
+ "description": "Layer objects selections.",
2000
+ "items": {
2001
+ "$ref": "#/definitions/Selection"
2002
+ },
2003
+ "type": "array"
766
2004
  },
767
2005
  "timeSeries": {
768
- "$ref": "#/definitions/TimeSeries",
2006
+ "$ref": "TimeSeries",
769
2007
  "description": "Series time settings for time-aware layers."
770
2008
  },
771
2009
  "validation": {
@@ -779,13 +2017,25 @@
779
2017
  "additionalProperties": false,
780
2018
  "type": "object"
781
2019
  },
782
- "ArrayBufferLike": {
2020
+ "AttachmentInputUnion": {
783
2021
  "anyOf": [
784
2022
  {
785
- "$ref": "ArrayBuffer"
2023
+ "$ref": "#/definitions/@arcgis.core.form.elements.inputs.attachments.AudioInput.AudioInput"
2024
+ },
2025
+ {
2026
+ "$ref": "#/definitions/@arcgis.core.form.elements.inputs.attachments.DocumentInput.DocumentInput"
2027
+ },
2028
+ {
2029
+ "$ref": "#/definitions/@arcgis.core.form.elements.inputs.attachments.ImageInput.ImageInput"
2030
+ },
2031
+ {
2032
+ "$ref": "#/definitions/@arcgis.core.form.elements.inputs.attachments.SignatureInput.SignatureInput"
2033
+ },
2034
+ {
2035
+ "$ref": "#/definitions/@arcgis.core.form.elements.inputs.attachments.VideoInput.VideoInput"
786
2036
  },
787
2037
  {
788
- "$ref": "SharedArrayBuffer"
2038
+ "$ref": "#/definitions/@arcgis.core.form.elements.inputs.attachments.AttachmentInput.AttachmentInput"
789
2039
  }
790
2040
  ]
791
2041
  },
@@ -842,6 +2092,9 @@
842
2092
  {
843
2093
  "$ref": "#/definitions/esri.rest-api.MapServiceLayerJson.MapServiceLayerJson"
844
2094
  },
2095
+ {
2096
+ "$ref": "#/definitions/esri.rest-api.SceneLayerJson.SceneLayerJson"
2097
+ },
845
2098
  {
846
2099
  "$ref": "#/definitions/esri.rest-api.TiledImageServiceLayerJson.TiledImageServiceLayerJson"
847
2100
  },
@@ -866,6 +2119,16 @@
866
2119
  ],
867
2120
  "description": "A base map layer in a web map/scene."
868
2121
  },
2122
+ "BuildingSublayerUnion": {
2123
+ "anyOf": [
2124
+ {
2125
+ "$ref": "#/definitions/@arcgis.core.layers.buildingSublayers.BuildingComponentSublayer.BuildingComponentSublayer"
2126
+ },
2127
+ {
2128
+ "$ref": "#/definitions/@arcgis.core.layers.buildingSublayers.BuildingGroupSublayer.BuildingGroupSublayer"
2129
+ }
2130
+ ]
2131
+ },
869
2132
  "BulkAttributeCompleteEventArgs": {
870
2133
  "additionalProperties": false,
871
2134
  "description": "Arguments for bulk attribute completion event. Web only.",
@@ -926,6 +2189,95 @@
926
2189
  ],
927
2190
  "type": "object"
928
2191
  },
2192
+ "CIMSymbolLayerUnion": {
2193
+ "anyOf": [
2194
+ {
2195
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMGradientFill"
2196
+ },
2197
+ {
2198
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMGradientStroke"
2199
+ },
2200
+ {
2201
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMHatchFill"
2202
+ },
2203
+ {
2204
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMPictureMarker"
2205
+ },
2206
+ {
2207
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMVectorMarker"
2208
+ },
2209
+ {
2210
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMPictureFill"
2211
+ },
2212
+ {
2213
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMPictureStroke"
2214
+ },
2215
+ {
2216
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMSolidFill"
2217
+ },
2218
+ {
2219
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMSolidStroke"
2220
+ }
2221
+ ],
2222
+ "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"
2223
+ },
2224
+ "CIMSymbolUnion": {
2225
+ "anyOf": [
2226
+ {
2227
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMLineSymbol"
2228
+ },
2229
+ {
2230
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMPointSymbol"
2231
+ },
2232
+ {
2233
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMPolygonSymbol"
2234
+ },
2235
+ {
2236
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMTextSymbol"
2237
+ }
2238
+ ],
2239
+ "description": "Represents a union type of all CIM symbol types."
2240
+ },
2241
+ "ColorJson": {
2242
+ "anyOf": [
2243
+ {
2244
+ "items": [
2245
+ {
2246
+ "type": "number"
2247
+ },
2248
+ {
2249
+ "type": "number"
2250
+ },
2251
+ {
2252
+ "type": "number"
2253
+ },
2254
+ {
2255
+ "type": "number"
2256
+ }
2257
+ ],
2258
+ "maxItems": 4,
2259
+ "minItems": 4,
2260
+ "type": "array"
2261
+ },
2262
+ {
2263
+ "items": [
2264
+ {
2265
+ "type": "number"
2266
+ },
2267
+ {
2268
+ "type": "number"
2269
+ },
2270
+ {
2271
+ "type": "number"
2272
+ }
2273
+ ],
2274
+ "maxItems": 3,
2275
+ "minItems": 3,
2276
+ "type": "array"
2277
+ }
2278
+ ],
2279
+ "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/}."
2280
+ },
929
2281
  "ComponentId": {
930
2282
  "description": "A component's ID in the layout.",
931
2283
  "type": "string"
@@ -937,7 +2289,7 @@
937
2289
  "graphics": {
938
2290
  "description": "The resulting graphics.",
939
2291
  "items": {
940
- "$ref": "#/definitions/esri.Graphic"
2292
+ "$ref": "#/definitions/@arcgis.core.Graphic.Graphic"
941
2293
  },
942
2294
  "type": "array"
943
2295
  },
@@ -993,6 +2345,20 @@
993
2345
  ],
994
2346
  "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
2347
  },
2348
+ "DomainUnion": {
2349
+ "anyOf": [
2350
+ {
2351
+ "$ref": "#/definitions/@arcgis.core.layers.support.CodedValueDomain.CodedValueDomain"
2352
+ },
2353
+ {
2354
+ "$ref": "#/definitions/@arcgis.core.layers.support.InheritedDomain.InheritedDomain"
2355
+ },
2356
+ {
2357
+ "$ref": "#/definitions/@arcgis.core.layers.support.RangeDomain.RangeDomain"
2358
+ }
2359
+ ],
2360
+ "description": "Supported domain types. Domains are used to constrain allowable values of a layer."
2361
+ },
996
2362
  "DynamicElement": {
997
2363
  "additionalProperties": false,
998
2364
  "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 +2468,34 @@
1102
2468
  ],
1103
2469
  "description": "Elevation layers that can be used in a web scene's ground."
1104
2470
  },
2471
+ "ElevationLayerUnion": {
2472
+ "anyOf": [
2473
+ {
2474
+ "$ref": "#/definitions/@arcgis.core.layers.ElevationLayer.ElevationLayer"
2475
+ },
2476
+ {
2477
+ "$ref": "#/definitions/@arcgis.core.layers.BaseElevationLayer.BaseElevationLayer"
2478
+ }
2479
+ ],
2480
+ "description": "Union of supported ground elevation layer types."
2481
+ },
2482
+ "ElevationProfileLineUnion": {
2483
+ "anyOf": [
2484
+ {
2485
+ "$ref": "#/definitions/@arcgis.core.analysis.ElevationProfile.ElevationProfileLineGround.ElevationProfileLineGround"
2486
+ },
2487
+ {
2488
+ "$ref": "#/definitions/@arcgis.core.analysis.ElevationProfile.ElevationProfileLineInput.ElevationProfileLineInput"
2489
+ },
2490
+ {
2491
+ "$ref": "#/definitions/@arcgis.core.analysis.ElevationProfile.ElevationProfileLineQuery.ElevationProfileLineQuery"
2492
+ },
2493
+ {
2494
+ "$ref": "#/definitions/@arcgis.core.analysis.ElevationProfile.ElevationProfileLineScene.ElevationProfileLineScene"
2495
+ }
2496
+ ],
2497
+ "description": "Union of all supported elevation profile lines."
2498
+ },
1105
2499
  "Error": {
1106
2500
  "additionalProperties": false,
1107
2501
  "properties": {
@@ -1184,13 +2578,26 @@
1184
2578
  ],
1185
2579
  "description": "Feature reductions declutter the screen by hiding features that would otherwise intersect with other features on screen."
1186
2580
  },
2581
+ "FeatureReductionUnion": {
2582
+ "anyOf": [
2583
+ {
2584
+ "$ref": "#/definitions/@arcgis.core.layers.support.FeatureReductionBinning.FeatureReductionBinning"
2585
+ },
2586
+ {
2587
+ "$ref": "#/definitions/@arcgis.core.layers.support.FeatureReductionCluster.FeatureReductionCluster"
2588
+ },
2589
+ {
2590
+ "$ref": "#/definitions/@arcgis.core.layers.support.FeatureReductionSelection.FeatureReductionSelection"
2591
+ }
2592
+ ]
2593
+ },
1187
2594
  "FeaturesLike": {
1188
2595
  "anyOf": [
1189
2596
  {
1190
2597
  "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
1191
2598
  },
1192
2599
  {
1193
- "$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
2600
+ "$ref": "esri.ChangeEvent.Target"
1194
2601
  },
1195
2602
  {
1196
2603
  "$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
@@ -1205,7 +2612,7 @@
1205
2612
  "$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
1206
2613
  },
1207
2614
  {
1208
- "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
2615
+ "$ref": "T_13"
1209
2616
  }
1210
2617
  ]
1211
2618
  },
@@ -1214,6 +2621,17 @@
1214
2621
  ],
1215
2622
  "description": "Represents one or more features."
1216
2623
  },
2624
+ "FieldFormatUnion": {
2625
+ "anyOf": [
2626
+ {
2627
+ "$ref": "#/definitions/@arcgis.core.layers.support.DateTimeFieldFormat.DateTimeFieldFormat"
2628
+ },
2629
+ {
2630
+ "$ref": "#/definitions/@arcgis.core.layers.support.NumberFieldFormat.NumberFieldFormat"
2631
+ }
2632
+ ],
2633
+ "description": "Supported field formatting types."
2634
+ },
1217
2635
  "FilterModeJson": {
1218
2636
  "anyOf": [
1219
2637
  {
@@ -1225,6 +2643,29 @@
1225
2643
  ],
1226
2644
  "description": "Filter mode represents the way elements draw when participating in a filter block."
1227
2645
  },
2646
+ "FormElementUnion": {
2647
+ "anyOf": [
2648
+ {
2649
+ "$ref": "#/definitions/@arcgis.core.form.elements.FieldElement.FieldElement"
2650
+ },
2651
+ {
2652
+ "$ref": "#/definitions/@arcgis.core.form.elements.AttachmentElement.AttachmentElement"
2653
+ },
2654
+ {
2655
+ "$ref": "#/definitions/@arcgis.core.form.elements.RelationshipElement.RelationshipElement"
2656
+ },
2657
+ {
2658
+ "$ref": "#/definitions/@arcgis.core.form.elements.TextElement.TextElement"
2659
+ },
2660
+ {
2661
+ "$ref": "#/definitions/@arcgis.core.form.elements.GroupElement.GroupElement"
2662
+ },
2663
+ {
2664
+ "$ref": "#/definitions/@arcgis.core.form.elements.UtilityNetworkAssociationsElement.UtilityNetworkAssociationsElement"
2665
+ }
2666
+ ],
2667
+ "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."
2668
+ },
1228
2669
  "GeoTransformation": {
1229
2670
  "additionalProperties": false,
1230
2671
  "description": "Represents the geo transformation in the settings.",
@@ -1309,10 +2750,10 @@
1309
2750
  "$ref": "#/definitions/CreateGraphicsResult"
1310
2751
  },
1311
2752
  {
1312
- "$ref": "#/definitions/esri.Graphic"
2753
+ "$ref": "#/definitions/@arcgis.core.Graphic.Graphic"
1313
2754
  },
1314
2755
  {
1315
- "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
2756
+ "$ref": "T_13"
1316
2757
  },
1317
2758
  {
1318
2759
  "$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
@@ -1330,41 +2771,41 @@
1330
2771
  "$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
1331
2772
  },
1332
2773
  {
1333
- "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
2774
+ "$ref": "T_13"
1334
2775
  }
1335
2776
  ]
1336
2777
  },
1337
2778
  "type": "array"
1338
2779
  },
1339
2780
  {
1340
- "$ref": "#/definitions/esri.Extent"
2781
+ "$ref": "#/definitions/@arcgis.core.geometry.Extent.Extent"
1341
2782
  },
1342
2783
  {
1343
- "$ref": "#/definitions/esri.Multipoint"
2784
+ "$ref": "#/definitions/@arcgis.core.geometry.Multipoint.Multipoint"
1344
2785
  },
1345
2786
  {
1346
- "$ref": "#/definitions/esri.Point"
2787
+ "$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
1347
2788
  },
1348
2789
  {
1349
- "$ref": "#/definitions/esri.Polygon"
2790
+ "$ref": "T_18"
1350
2791
  },
1351
2792
  {
1352
- "$ref": "#/definitions/esri.Polyline"
2793
+ "$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
1353
2794
  },
1354
2795
  {
1355
- "$ref": "#/definitions/esri.Mesh"
2796
+ "$ref": "#/definitions/@arcgis.core.geometry.Mesh.Mesh"
1356
2797
  },
1357
2798
  {
1358
2799
  "$ref": "#/definitions/esri.rest-api.FeatureJson.FeatureJson"
1359
2800
  },
1360
2801
  {
1361
- "$ref": "#/definitions/esri.FeatureSet"
2802
+ "$ref": "#/definitions/@arcgis.core.rest.support.FeatureSet.FeatureSet"
1362
2803
  },
1363
2804
  {
1364
2805
  "items": {
1365
2806
  "anyOf": [
1366
2807
  {
1367
- "$ref": "#/definitions/esri.Graphic"
2808
+ "$ref": "#/definitions/@arcgis.core.Graphic.Graphic"
1368
2809
  },
1369
2810
  {
1370
2811
  "$ref": "#/definitions/esri.rest-api.FeatureJson.FeatureJson"
@@ -1392,22 +2833,22 @@
1392
2833
  "items": {
1393
2834
  "anyOf": [
1394
2835
  {
1395
- "$ref": "#/definitions/esri.Extent"
2836
+ "$ref": "#/definitions/@arcgis.core.geometry.Extent.Extent"
1396
2837
  },
1397
2838
  {
1398
- "$ref": "#/definitions/esri.Multipoint"
2839
+ "$ref": "#/definitions/@arcgis.core.geometry.Multipoint.Multipoint"
1399
2840
  },
1400
2841
  {
1401
- "$ref": "#/definitions/esri.Point"
2842
+ "$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
1402
2843
  },
1403
2844
  {
1404
- "$ref": "#/definitions/esri.Polygon"
2845
+ "$ref": "T_18"
1405
2846
  },
1406
2847
  {
1407
- "$ref": "#/definitions/esri.Polyline"
2848
+ "$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
1408
2849
  },
1409
2850
  {
1410
- "$ref": "#/definitions/esri.Mesh"
2851
+ "$ref": "#/definitions/@arcgis.core.geometry.Mesh.Mesh"
1411
2852
  },
1412
2853
  {
1413
2854
  "$ref": "#/definitions/esri.rest-api.GeometryJson.PointJson"
@@ -1431,6 +2872,49 @@
1431
2872
  ],
1432
2873
  "description": "An object that is convertible to one or more geometries."
1433
2874
  },
2875
+ "GeometryUnion": {
2876
+ "anyOf": [
2877
+ {
2878
+ "$ref": "#/definitions/@arcgis.core.geometry.Extent.Extent"
2879
+ },
2880
+ {
2881
+ "$ref": "#/definitions/@arcgis.core.geometry.Multipoint.Multipoint"
2882
+ },
2883
+ {
2884
+ "$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
2885
+ },
2886
+ {
2887
+ "$ref": "#/definitions/@arcgis.core.geometry.Polygon.Polygon"
2888
+ },
2889
+ {
2890
+ "$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
2891
+ },
2892
+ {
2893
+ "$ref": "#/definitions/@arcgis.core.geometry.Mesh.Mesh"
2894
+ }
2895
+ ],
2896
+ "description": "Union of all geometries."
2897
+ },
2898
+ "GeometryWithoutMeshUnion": {
2899
+ "anyOf": [
2900
+ {
2901
+ "$ref": "#/definitions/@arcgis.core.geometry.Extent.Extent"
2902
+ },
2903
+ {
2904
+ "$ref": "#/definitions/@arcgis.core.geometry.Multipoint.Multipoint"
2905
+ },
2906
+ {
2907
+ "$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
2908
+ },
2909
+ {
2910
+ "$ref": "T_18"
2911
+ },
2912
+ {
2913
+ "$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
2914
+ }
2915
+ ],
2916
+ "description": "Union of all non-mesh geometries."
2917
+ },
1434
2918
  "GnssDeviceConnectionInfo": {
1435
2919
  "additionalProperties": false,
1436
2920
  "description": "A geolocation source.",
@@ -1531,7 +3015,7 @@
1531
3015
  "$ref": "#/definitions/@vertigis.arcgis-extensions.data._TableExtension.TableReference"
1532
3016
  },
1533
3017
  {
1534
- "$ref": "#/definitions/esri.Layer"
3018
+ "$ref": "#/definitions/@arcgis.core.layers.Layer.Layer"
1535
3019
  },
1536
3020
  {
1537
3021
  "$ref": "@vertigis.arcgis-extensions.mapping._LayerExtension.LayerExtension"
@@ -1560,7 +3044,7 @@
1560
3044
  "$ref": "#/definitions/@vertigis.arcgis-extensions.data._TableExtension.TableReference"
1561
3045
  },
1562
3046
  {
1563
- "$ref": "#/definitions/esri.Layer"
3047
+ "$ref": "#/definitions/@arcgis.core.layers.Layer.Layer"
1564
3048
  },
1565
3049
  {
1566
3050
  "$ref": "@vertigis.arcgis-extensions.mapping._LayerExtension.LayerExtension"
@@ -1636,11 +3120,42 @@
1636
3120
  "color": {
1637
3121
  "anyOf": [
1638
3122
  {
1639
- "$ref": "#/definitions/esri.Color"
3123
+ "$ref": "#/definitions/@arcgis.core.Color.Color"
3124
+ },
3125
+ {
3126
+ "items": [
3127
+ {
3128
+ "type": "number"
3129
+ },
3130
+ {
3131
+ "type": "number"
3132
+ },
3133
+ {
3134
+ "type": "number"
3135
+ },
3136
+ {
3137
+ "type": "number"
3138
+ }
3139
+ ],
3140
+ "maxItems": 4,
3141
+ "minItems": 4,
3142
+ "type": "array"
1640
3143
  },
1641
3144
  {
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/}."
3145
+ "items": [
3146
+ {
3147
+ "type": "number"
3148
+ },
3149
+ {
3150
+ "type": "number"
3151
+ },
3152
+ {
3153
+ "type": "number"
3154
+ }
3155
+ ],
3156
+ "maxItems": 3,
3157
+ "minItems": 3,
3158
+ "type": "array"
1644
3159
  }
1645
3160
  ],
1646
3161
  "description": "Indicates the color for the Marker. This property is only used if the symbol is a well-known ID."
@@ -1725,7 +3240,7 @@
1725
3240
  "description": "Event args for the map.initialized event.",
1726
3241
  "properties": {
1727
3242
  "loadTime": {
1728
- "$ref": "#/definitions/TimeSpan",
3243
+ "$ref": "TimeSpan",
1729
3244
  "description": "The amount of time that the map took to load. Mobile only."
1730
3245
  },
1731
3246
  "mapExtension": {
@@ -1785,13 +3300,13 @@
1785
3300
  "MarkerSymbolConfig": {
1786
3301
  "anyOf": [
1787
3302
  {
1788
- "$ref": "#/definitions/esri.PictureMarkerSymbol"
3303
+ "$ref": "#/definitions/@arcgis.core.symbols.PictureMarkerSymbol.PictureMarkerSymbol"
1789
3304
  },
1790
3305
  {
1791
- "$ref": "#/definitions/esri.SimpleMarkerSymbol"
3306
+ "$ref": "#/definitions/@arcgis.core.symbols.SimpleMarkerSymbol.SimpleMarkerSymbol"
1792
3307
  },
1793
3308
  {
1794
- "$ref": "#/definitions/esri.TextSymbol"
3309
+ "$ref": "#/definitions/@arcgis.core.symbols.TextSymbol.TextSymbol"
1795
3310
  },
1796
3311
  {
1797
3312
  "$ref": "#/definitions/esri.rest-api.SymbolJson.PictureMarkerSymbolJson"
@@ -1813,6 +3328,39 @@
1813
3328
  ],
1814
3329
  "type": "string"
1815
3330
  },
3331
+ "NestableAttachmentInputUnion": {
3332
+ "anyOf": [
3333
+ {
3334
+ "$ref": "#/definitions/@arcgis.core.form.elements.inputs.attachments.AudioInput.AudioInput"
3335
+ },
3336
+ {
3337
+ "$ref": "#/definitions/@arcgis.core.form.elements.inputs.attachments.DocumentInput.DocumentInput"
3338
+ },
3339
+ {
3340
+ "$ref": "#/definitions/@arcgis.core.form.elements.inputs.attachments.ImageInput.ImageInput"
3341
+ },
3342
+ {
3343
+ "$ref": "#/definitions/@arcgis.core.form.elements.inputs.attachments.SignatureInput.SignatureInput"
3344
+ },
3345
+ {
3346
+ "$ref": "#/definitions/@arcgis.core.form.elements.inputs.attachments.VideoInput.VideoInput"
3347
+ }
3348
+ ]
3349
+ },
3350
+ "NestableFormElementUnion": {
3351
+ "anyOf": [
3352
+ {
3353
+ "$ref": "#/definitions/@arcgis.core.form.elements.FieldElement.FieldElement"
3354
+ },
3355
+ {
3356
+ "$ref": "#/definitions/@arcgis.core.form.elements.RelationshipElement.RelationshipElement"
3357
+ },
3358
+ {
3359
+ "$ref": "#/definitions/@arcgis.core.form.elements.TextElement.TextElement"
3360
+ }
3361
+ ],
3362
+ "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/)."
3363
+ },
1816
3364
  "OperationalLayerJson": {
1817
3365
  "anyOf": [
1818
3366
  {
@@ -1990,6 +3538,17 @@
1990
3538
  ],
1991
3539
  "type": "object"
1992
3540
  },
3541
+ "ParquetGeometryEncodingUnion": {
3542
+ "anyOf": [
3543
+ {
3544
+ "$ref": "#/definitions/@arcgis.core.layers.support.ParquetGeometryEncodingLocation.ParquetGeometryEncodingLocation"
3545
+ },
3546
+ {
3547
+ "$ref": "#/definitions/@arcgis.core.layers.support.ParquetGeometryEncodingWkb.ParquetGeometryEncodingWkb"
3548
+ }
3549
+ ],
3550
+ "description": "Supported Parquet geometry encoding types."
3551
+ },
1993
3552
  "PointCloudFilterJson": {
1994
3553
  "anyOf": [
1995
3554
  {
@@ -2004,6 +3563,17 @@
2004
3563
  ],
2005
3564
  "description": "Filters applied to the pointCloud which will hide a point.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/pointCloudFilter/}."
2006
3565
  },
3566
+ "PopupPositionResult": {
3567
+ "enum": [
3568
+ "bottom-center",
3569
+ "bottom-left",
3570
+ "bottom-right",
3571
+ "top-center",
3572
+ "top-left",
3573
+ "top-right"
3574
+ ],
3575
+ "type": "string"
3576
+ },
2007
3577
  "PortalAuthentication": {
2008
3578
  "additionalProperties": false,
2009
3579
  "description": "Represents the portal authentication settings.",
@@ -2102,7 +3672,7 @@
2102
3672
  "description": "Represents the print extent.",
2103
3673
  "properties": {
2104
3674
  "center": {
2105
- "$ref": "#/definitions/esri.Point",
3675
+ "$ref": "#/definitions/@arcgis.core.geometry.Point.Point",
2106
3676
  "description": "Center point."
2107
3677
  },
2108
3678
  "spatialReference": {
@@ -2135,6 +3705,23 @@
2135
3705
  ],
2136
3706
  "type": "object"
2137
3707
  },
3708
+ "PrintFeaturesPreparedEventArgs": {
3709
+ "additionalProperties": false,
3710
+ "description": "Arguments for the printing.print-features-prepared event.",
3711
+ "properties": {
3712
+ "features": {
3713
+ "description": "Features containing geometries to print. Web only.",
3714
+ "items": {
3715
+ "$ref": "T_13"
3716
+ },
3717
+ "type": "array"
3718
+ }
3719
+ },
3720
+ "required": [
3721
+ "features"
3722
+ ],
3723
+ "type": "object"
3724
+ },
2138
3725
  "PrintFinishedEventArgs": {
2139
3726
  "additionalProperties": false,
2140
3727
  "description": "Arguments for the printing.print-finished event.",
@@ -2361,6 +3948,32 @@
2361
3948
  ],
2362
3949
  "description": "A renderer.\n\nPart of the ArcGIS REST API (see http://resources.arcgis.com/en/help/rest/apiref/renderer.html)."
2363
3950
  },
3951
+ "RendererUnion": {
3952
+ "anyOf": [
3953
+ {
3954
+ "$ref": "#/definitions/@arcgis.core.renderers.SimpleRenderer.SimpleRenderer"
3955
+ },
3956
+ {
3957
+ "$ref": "#/definitions/@arcgis.core.renderers.ClassBreaksRenderer.ClassBreaksRenderer"
3958
+ },
3959
+ {
3960
+ "$ref": "#/definitions/@arcgis.core.renderers.UniqueValueRenderer.UniqueValueRenderer"
3961
+ },
3962
+ {
3963
+ "$ref": "#/definitions/@arcgis.core.renderers.DotDensityRenderer.DotDensityRenderer"
3964
+ },
3965
+ {
3966
+ "$ref": "#/definitions/@arcgis.core.renderers.DictionaryRenderer.DictionaryRenderer"
3967
+ },
3968
+ {
3969
+ "$ref": "#/definitions/@arcgis.core.renderers.PieChartRenderer.PieChartRenderer"
3970
+ },
3971
+ {
3972
+ "$ref": "#/definitions/@arcgis.core.renderers.HeatmapRenderer.HeatmapRenderer"
3973
+ }
3974
+ ],
3975
+ "description": "Union of renderers."
3976
+ },
2364
3977
  "ReportErrorEventArgs": {
2365
3978
  "additionalProperties": false,
2366
3979
  "description": "Arguments for the reports.report-error event.",
@@ -2711,6 +4324,50 @@
2711
4324
  ],
2712
4325
  "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
4326
  },
4327
+ "SymbolUnion": {
4328
+ "anyOf": [
4329
+ {
4330
+ "$ref": "#/definitions/@arcgis.core.symbols.PictureFillSymbol.PictureFillSymbol"
4331
+ },
4332
+ {
4333
+ "$ref": "#/definitions/@arcgis.core.symbols.PictureMarkerSymbol.PictureMarkerSymbol"
4334
+ },
4335
+ {
4336
+ "$ref": "#/definitions/@arcgis.core.symbols.SimpleFillSymbol.SimpleFillSymbol"
4337
+ },
4338
+ {
4339
+ "$ref": "#/definitions/@arcgis.core.symbols.SimpleLineSymbol.SimpleLineSymbol"
4340
+ },
4341
+ {
4342
+ "$ref": "#/definitions/@arcgis.core.symbols.SimpleMarkerSymbol.SimpleMarkerSymbol"
4343
+ },
4344
+ {
4345
+ "$ref": "#/definitions/@arcgis.core.symbols.TextSymbol.TextSymbol"
4346
+ },
4347
+ {
4348
+ "$ref": "#/definitions/@arcgis.core.symbols.CIMSymbol.CIMSymbol"
4349
+ },
4350
+ {
4351
+ "$ref": "#/definitions/@arcgis.core.symbols.LabelSymbol3D.LabelSymbol3D"
4352
+ },
4353
+ {
4354
+ "$ref": "#/definitions/@arcgis.core.symbols.LineSymbol3D.LineSymbol3D"
4355
+ },
4356
+ {
4357
+ "$ref": "#/definitions/@arcgis.core.symbols.MeshSymbol3D.MeshSymbol3D"
4358
+ },
4359
+ {
4360
+ "$ref": "#/definitions/@arcgis.core.symbols.PointSymbol3D.PointSymbol3D"
4361
+ },
4362
+ {
4363
+ "$ref": "#/definitions/@arcgis.core.symbols.PolygonSymbol3D.PolygonSymbol3D"
4364
+ },
4365
+ {
4366
+ "$ref": "#/definitions/@arcgis.core.symbols.WebStyleSymbol.WebStyleSymbol"
4367
+ }
4368
+ ],
4369
+ "description": "Union of all symbols."
4370
+ },
2714
4371
  "TargetsResultsSetArgs": {
2715
4372
  "additionalProperties": false,
2716
4373
  "description": "Arguments for various commands that target a result set of features.",
@@ -2782,7 +4439,7 @@
2782
4439
  "attachments": {
2783
4440
  "description": "An array of attachments that apply or are to be applied to the currently edited feature.",
2784
4441
  "items": {
2785
- "$ref": "@vertigis.arcgis-extensions.data.Attachment.Attachment"
4442
+ "$ref": "T_10"
2786
4443
  },
2787
4444
  "type": "array"
2788
4445
  },
@@ -3098,63 +4755,6 @@
3098
4755
  "edit.session-updated:input": {
3099
4756
  "$ref": "#/definitions/UpdateSessionArgs"
3100
4757
  },
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
4758
  "esri.rest-api.AnnotationLayerJson.AnnotationLayerJson": {
3159
4759
  "additionalProperties": false,
3160
4760
  "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 +4825,7 @@
3225
4825
  "type": "string"
3226
4826
  },
3227
4827
  "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"
4828
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
3235
4829
  },
3236
4830
  "maxScale": {
3237
4831
  "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 +5178,7 @@
3584
5178
  "type": "string"
3585
5179
  },
3586
5180
  "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"
5181
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
3594
5182
  },
3595
5183
  "maxScale": {
3596
5184
  "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 +5378,7 @@
3790
5378
  "description": "Additional properties that can define drawing information and a definition expression for the sublayer. See layerDefinition properties table."
3791
5379
  },
3792
5380
  "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"
5381
+ "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
5382
  },
3801
5383
  "opacity": {
3802
5384
  "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 +5470,7 @@
3888
5470
  "type": "string"
3889
5471
  },
3890
5472
  "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"
5473
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
3898
5474
  },
3899
5475
  "locationInfo": {
3900
5476
  "$ref": "#/definitions/esri.rest-api.CSVLayerJson.LocationInfoJson",
@@ -4395,11 +5971,8 @@
4395
5971
  "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
5972
  "properties": {
4397
5973
  "color": {
4398
- "description": "Color is represented as a three or four-element array.",
4399
- "items": {
4400
- "type": "number"
4401
- },
4402
- "type": "array"
5974
+ "$ref": "#/definitions/ColorJson",
5975
+ "description": "Color is represented as a three or four-element array."
4403
5976
  },
4404
5977
  "transparency": {
4405
5978
  "description": "The value has to lie between 100 (full transparency) and 0 (full opacity). Web scenes only.",
@@ -4719,13 +6292,7 @@
4719
6292
  "type": "string"
4720
6293
  },
4721
6294
  "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"
6295
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
4729
6296
  },
4730
6297
  "maxScale": {
4731
6298
  "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 +6972,7 @@
5405
6972
  "type": "string"
5406
6973
  },
5407
6974
  "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"
6975
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
5415
6976
  },
5416
6977
  "maxScale": {
5417
6978
  "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 +7111,7 @@
5550
7111
  "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
7112
  },
5552
7113
  "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"
7114
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
5560
7115
  },
5561
7116
  "maxScale": {
5562
7117
  "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 +7372,7 @@
5817
7372
  "description": "Determines whether the camera is constrained to navigate only above, or also under the ground surface."
5818
7373
  },
5819
7374
  "surfaceColor": {
5820
- "$ref": "#/definitions/esri.rest-api.SymbolJson.ColorJson",
7375
+ "$ref": "#/definitions/ColorJson",
5821
7376
  "description": "Defines the color of the ground surface, displayed underneath the basemap. If no color, the default grid is shown."
5822
7377
  },
5823
7378
  "transparency": {
@@ -5889,13 +7444,7 @@
5889
7444
  "type": "array"
5890
7445
  },
5891
7446
  "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"
7447
+ "description": "To show or hide the group layer in the layer list. See {@link support /esri!ListMode}."
5899
7448
  },
5900
7449
  "maxScale": {
5901
7450
  "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 +7630,7 @@
6081
7630
  "type": "string"
6082
7631
  },
6083
7632
  "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"
7633
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
6091
7634
  },
6092
7635
  "maxScale": {
6093
7636
  "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 +7842,7 @@
6299
7842
  "type": "string"
6300
7843
  },
6301
7844
  "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"
7845
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
6309
7846
  },
6310
7847
  "maxScale": {
6311
7848
  "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 +7979,7 @@
6442
7979
  "type": "string"
6443
7980
  },
6444
7981
  "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"
7982
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
6452
7983
  },
6453
7984
  "maxScale": {
6454
7985
  "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 +8335,7 @@
6804
8335
  "type": "string"
6805
8336
  },
6806
8337
  "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"
8338
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
6814
8339
  },
6815
8340
  "maxScale": {
6816
8341
  "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 +9199,7 @@
7674
9199
  "type": "number"
7675
9200
  },
7676
9201
  "color": {
7677
- "$ref": "#/definitions/esri.rest-api.SymbolJson.ColorJson",
9202
+ "$ref": "#/definitions/ColorJson",
7678
9203
  "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
9204
  },
7680
9205
  "type": {
@@ -7905,13 +9430,7 @@
7905
9430
  "type": "array"
7906
9431
  },
7907
9432
  "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"
9433
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
7915
9434
  },
7916
9435
  "maxScale": {
7917
9436
  "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 +9605,7 @@
8086
9605
  "type": "string"
8087
9606
  },
8088
9607
  "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"
9608
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
8096
9609
  },
8097
9610
  "maxScale": {
8098
9611
  "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 +9946,7 @@
8433
9946
  "type": "string"
8434
9947
  },
8435
9948
  "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"
9949
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
8443
9950
  },
8444
9951
  "maxScale": {
8445
9952
  "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 +10385,7 @@
8878
10385
  "type": "string"
8879
10386
  },
8880
10387
  "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"
10388
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
8888
10389
  },
8889
10390
  "maxScale": {
8890
10391
  "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 +10624,7 @@
9123
10624
  "type": "number"
9124
10625
  },
9125
10626
  "color": {
9126
- "$ref": "#/definitions/esri.rest-api.SymbolJson.ColorJson",
10627
+ "$ref": "#/definitions/ColorJson",
9127
10628
  "description": "Color is represented as a three or four-element array."
9128
10629
  },
9129
10630
  "description": {
@@ -9144,11 +10645,7 @@
9144
10645
  "colors": {
9145
10646
  "description": "An array of colors that define the color ramp. Either colors or stops must be specified to construct the color ramp.",
9146
10647
  "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"
10648
+ "$ref": "#/definitions/ColorJson"
9152
10649
  },
9153
10650
  "type": "array"
9154
10651
  },
@@ -9272,8 +10769,39 @@
9272
10769
  "color": {
9273
10770
  "anyOf": [
9274
10771
  {
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/}."
10772
+ "items": [
10773
+ {
10774
+ "type": "number"
10775
+ },
10776
+ {
10777
+ "type": "number"
10778
+ },
10779
+ {
10780
+ "type": "number"
10781
+ },
10782
+ {
10783
+ "type": "number"
10784
+ }
10785
+ ],
10786
+ "maxItems": 4,
10787
+ "minItems": 4,
10788
+ "type": "array"
10789
+ },
10790
+ {
10791
+ "items": [
10792
+ {
10793
+ "type": "number"
10794
+ },
10795
+ {
10796
+ "type": "number"
10797
+ },
10798
+ {
10799
+ "type": "number"
10800
+ }
10801
+ ],
10802
+ "maxItems": 3,
10803
+ "minItems": 3,
10804
+ "type": "array"
9277
10805
  },
9278
10806
  {
9279
10807
  "type": "string"
@@ -9297,7 +10825,7 @@
9297
10825
  "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
10826
  "properties": {
9299
10827
  "color": {
9300
- "$ref": "#/definitions/esri.rest-api.SymbolJson.ColorJson",
10828
+ "$ref": "#/definitions/ColorJson",
9301
10829
  "description": "Color is represented as a three or four-element array."
9302
10830
  },
9303
10831
  "description": {
@@ -10400,7 +11928,7 @@
10400
11928
  },
10401
11929
  "esri.rest-api.SceneLayerJson.SceneLayerJson": {
10402
11930
  "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/}.",
11931
+ "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
11932
  "properties": {
10405
11933
  "blendMode": {
10406
11934
  "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 +11967,9 @@
10439
11967
  ],
10440
11968
  "type": "string"
10441
11969
  },
11970
+ "customParameters": {
11971
+ "description": "A sequence of custom parameters appended to the URL of all requests related to supporting ArcGIS layer types."
11972
+ },
10442
11973
  "disablePopup": {
10443
11974
  "description": "Indicates whether to allow a client to ignore popups defined by the service item.",
10444
11975
  "type": "boolean"
@@ -10451,6 +11982,10 @@
10451
11982
  "description": "A unique identifying string for the layer.",
10452
11983
  "type": "string"
10453
11984
  },
11985
+ "isReference": {
11986
+ "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).",
11987
+ "type": "boolean"
11988
+ },
10454
11989
  "itemId": {
10455
11990
  "description": "Optional string containing the item ID of the service if it's registered on ArcGIS Online or your organization's portal.",
10456
11991
  "type": "string"
@@ -10465,13 +12000,7 @@
10465
12000
  "type": "string"
10466
12001
  },
10467
12002
  "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"
12003
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
10475
12004
  },
10476
12005
  "maxScale": {
10477
12006
  "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 +12202,7 @@
10673
12202
  "type": "string"
10674
12203
  },
10675
12204
  "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"
12205
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
10683
12206
  },
10684
12207
  "maxScale": {
10685
12208
  "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 +12468,7 @@
10945
12468
  "type": "array"
10946
12469
  },
10947
12470
  "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"
12471
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
10955
12472
  },
10956
12473
  "maxScale": {
10957
12474
  "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 +12610,7 @@
11093
12610
  "type": "string"
11094
12611
  },
11095
12612
  "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"
12613
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
11103
12614
  },
11104
12615
  "maxScale": {
11105
12616
  "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 +12694,8 @@
11183
12694
  "description": "Optional border on the line that is used to improve the contrast of the line color against various background colors.",
11184
12695
  "properties": {
11185
12696
  "color": {
11186
- "description": "The color of the border.",
11187
- "items": {
11188
- "type": "number"
11189
- },
11190
- "type": "array"
12697
+ "$ref": "#/definitions/ColorJson",
12698
+ "description": "The color of the border."
11191
12699
  },
11192
12700
  "transparency": {
11193
12701
  "description": "A value between 100 (full transparency) and 0 (full opacity).",
@@ -11216,17 +12724,6 @@
11216
12724
  "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
12725
  "properties": {
11218
12726
  "symbol": {
11219
- "anyOf": [
11220
- {
11221
- "$ref": "esri.CIMLineSymbol"
11222
- },
11223
- {
11224
- "$ref": "esri.CIMPointSymbol"
11225
- },
11226
- {
11227
- "$ref": "esri.CIMPolygonSymbol"
11228
- }
11229
- ],
11230
12727
  "description": "The symbol. Supported values are CIMPointSymbol, CIMLineSymbol, and CIMPolygonSymbol."
11231
12728
  },
11232
12729
  "type": {
@@ -11249,11 +12746,8 @@
11249
12746
  "description": "Optional border on the line that is used to improve the contrast of the line color against various background colors."
11250
12747
  },
11251
12748
  "color": {
11252
- "description": "The color of the line.",
11253
- "items": {
11254
- "type": "number"
11255
- },
11256
- "type": "array"
12749
+ "$ref": "#/definitions/ColorJson",
12750
+ "description": "The color of the line."
11257
12751
  },
11258
12752
  "size": {
11259
12753
  "description": "The width of the line in points.",
@@ -11274,13 +12768,6 @@
11274
12768
  ],
11275
12769
  "type": "object"
11276
12770
  },
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
12771
  "esri.rest-api.SymbolJson.ExtrudeSymbol3DLayerJson": {
11285
12772
  "additionalProperties": false,
11286
12773
  "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 +13016,8 @@
11529
13016
  "description": "The material used to shade the geometry.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/material/}.",
11530
13017
  "properties": {
11531
13018
  "color": {
11532
- "description": "Color is represented as a three or four-element array.",
11533
- "items": {
11534
- "type": "number"
11535
- },
11536
- "type": "array"
13019
+ "$ref": "#/definitions/ColorJson",
13020
+ "description": "Color is represented as a three or four-element array."
11537
13021
  },
11538
13022
  "colorMixMode": {
11539
13023
  "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 +13132,8 @@
11648
13132
  "description": "The outline of the point, line or polygon.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/outline/}.",
11649
13133
  "properties": {
11650
13134
  "color": {
11651
- "description": "Color is represented as a three or four-element array.",
11652
- "items": {
11653
- "type": "number"
11654
- },
11655
- "type": "array"
13135
+ "$ref": "#/definitions/ColorJson",
13136
+ "description": "Color is represented as a three or four-element array."
11656
13137
  },
11657
13138
  "size": {
11658
13139
  "description": "Outline size in points, positive only.",
@@ -11927,11 +13408,8 @@
11927
13408
  "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
13409
  "properties": {
11929
13410
  "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"
13411
+ "$ref": "#/definitions/ColorJson",
13412
+ "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
13413
  },
11936
13414
  "outline": {
11937
13415
  "$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleLineSymbolJson",
@@ -11967,11 +13445,8 @@
11967
13445
  "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
13446
  "properties": {
11969
13447
  "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"
13448
+ "$ref": "#/definitions/ColorJson",
13449
+ "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
13450
  },
11976
13451
  "style": {
11977
13452
  "description": "The line style.",
@@ -12009,11 +13484,8 @@
12009
13484
  "type": "number"
12010
13485
  },
12011
13486
  "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"
13487
+ "$ref": "#/definitions/ColorJson",
13488
+ "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
13489
  },
12018
13490
  "outline": {
12019
13491
  "$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleLineSymbolJson",
@@ -12236,40 +13708,28 @@
12236
13708
  "type": "number"
12237
13709
  },
12238
13710
  "backgroundColor": {
12239
- "description": "Background color of the text.",
12240
- "items": {
12241
- "type": "number"
12242
- },
12243
- "type": "array"
13711
+ "$ref": "#/definitions/ColorJson",
13712
+ "description": "Background color of the text."
12244
13713
  },
12245
13714
  "borderLineColor": {
12246
- "description": "Value indicating the the color of the border line.",
12247
- "items": {
12248
- "type": "number"
12249
- },
12250
- "type": "array"
13715
+ "$ref": "#/definitions/ColorJson",
13716
+ "description": "Value indicating the the color of the border line."
12251
13717
  },
12252
13718
  "borderLineSize": {
12253
13719
  "description": "Numeric value indicating the the size of the border line in points.",
12254
13720
  "type": "number"
12255
13721
  },
12256
13722
  "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"
13723
+ "$ref": "#/definitions/ColorJson",
13724
+ "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
13725
  },
12263
13726
  "font": {
12264
13727
  "$ref": "#/definitions/esri.rest-api.SymbolJson.FontJson",
12265
13728
  "description": "Font used for text symbols."
12266
13729
  },
12267
13730
  "haloColor": {
12268
- "description": "Color of the halo around the text.",
12269
- "items": {
12270
- "type": "number"
12271
- },
12272
- "type": "array"
13731
+ "$ref": "#/definitions/ColorJson",
13732
+ "description": "Color of the halo around the text."
12273
13733
  },
12274
13734
  "haloSize": {
12275
13735
  "description": "Numeric value indicating the point size of a halo around the text symbol.",
@@ -12507,13 +13967,7 @@
12507
13967
  "type": "string"
12508
13968
  },
12509
13969
  "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"
13970
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
12517
13971
  },
12518
13972
  "maxScale": {
12519
13973
  "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 +14105,7 @@
12651
14105
  "type": "string"
12652
14106
  },
12653
14107
  "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"
14108
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
12661
14109
  },
12662
14110
  "maxScale": {
12663
14111
  "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 +14257,7 @@
12809
14257
  "type": "array"
12810
14258
  },
12811
14259
  "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"
14260
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
12819
14261
  },
12820
14262
  "maxScale": {
12821
14263
  "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 +14423,7 @@
12981
14423
  "type": "string"
12982
14424
  },
12983
14425
  "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"
14426
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
12991
14427
  },
12992
14428
  "maxScale": {
12993
14429
  "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 +14648,7 @@
13212
14648
  "type": "string"
13213
14649
  },
13214
14650
  "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"
14651
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
13222
14652
  },
13223
14653
  "maxScale": {
13224
14654
  "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 +14846,7 @@
13416
14846
  "type": "string"
13417
14847
  },
13418
14848
  "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"
14849
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
13426
14850
  },
13427
14851
  "mapUrl": {
13428
14852
  "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 +15767,7 @@
14343
15767
  "type": "string"
14344
15768
  },
14345
15769
  "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"
15770
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
14353
15771
  },
14354
15772
  "maxScale": {
14355
15773
  "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 +15928,7 @@
14510
15928
  ]
14511
15929
  },
14512
15930
  "geolocation.position-changed:input": {
14513
- "$ref": "#/definitions/esri.Point"
15931
+ "$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
14514
15932
  },
14515
15933
  "geolocation.position-lost": {
14516
15934
  "description": "Raised when geolocation is disabled, either through signal loss or being turned off, and a user position is not available.",
@@ -14672,6 +16090,15 @@
14672
16090
  "printing.print-error:input": {
14673
16091
  "$ref": "#/definitions/PrintErrorEventArgs"
14674
16092
  },
16093
+ "printing.print-features-prepared": {
16094
+ "description": "Raised when features are prepared for prints.",
16095
+ "enum": [
16096
+ "printing.print-features-prepared"
16097
+ ]
16098
+ },
16099
+ "printing.print-features-prepared:input": {
16100
+ "$ref": "#/definitions/PrintFeaturesPreparedEventArgs"
16101
+ },
14675
16102
  "printing.print-finished": {
14676
16103
  "description": "Raised when a print has finished running. Event arguments include the print download URL.",
14677
16104
  "enum": [
@@ -14796,7 +16223,7 @@
14796
16223
  ]
14797
16224
  },
14798
16225
  "results.changed:input": {
14799
- "$ref": "#/definitions/TargetsResultsSetArgs"
16226
+ "$ref": "TargetsResultsSetArgs"
14800
16227
  },
14801
16228
  "ui.activated": {
14802
16229
  "description": "Raised when a component is activated. The argument is the component ID.",
@@ -15031,6 +16458,9 @@
15031
16458
  {
15032
16459
  "$ref": "#/definitions/printing.print-error"
15033
16460
  },
16461
+ {
16462
+ "$ref": "#/definitions/printing.print-features-prepared"
16463
+ },
15034
16464
  {
15035
16465
  "$ref": "#/definitions/printing.print-finished"
15036
16466
  },