@vertigis/viewer-spec 60.9.0 → 61.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. package/app-config/schema/common-app-config.schema.json +1 -1
  2. package/app-config/schema/mobile-app-config.schema.json +1 -1
  3. package/app-config/schema/web-app-config.schema.json +1 -1
  4. package/messaging/Event.d.ts +2 -1
  5. package/messaging/registry/geometry.d.ts +2 -3
  6. package/messaging/registry/map.d.ts +1 -1
  7. package/messaging/schema/common-action.schema.json +1834 -575
  8. package/messaging/schema/common-event.schema.json +1639 -305
  9. package/messaging/schema/mobile-action.schema.json +1912 -639
  10. package/messaging/schema/mobile-event.schema.json +1680 -381
  11. package/messaging/schema/web-action.schema.json +2258 -1092
  12. package/messaging/schema/web-charts-command-definitions.md +210 -3
  13. package/messaging/schema/web-drawing-command-definitions.md +18 -57
  14. package/messaging/schema/web-drawing-operation-definitions.md +114 -63
  15. package/messaging/schema/web-edit-command-definitions.md +212 -5
  16. package/messaging/schema/web-event.schema.json +1810 -412
  17. package/messaging/schema/web-geocode-operation-definitions.md +1 -1
  18. package/messaging/schema/web-geolocation-operation-definitions.md +1 -1
  19. package/messaging/schema/web-geometry-operation-definitions.md +77 -16
  20. package/messaging/schema/web-kpi-command-definitions.md +210 -3
  21. package/messaging/schema/web-layer-comparison-command-definitions.md +8 -8
  22. package/messaging/schema/web-layers-command-definitions.md +104 -104
  23. package/messaging/schema/web-layers-operation-definitions.md +37 -37
  24. package/messaging/schema/web-location-marker-command-definitions.md +68 -6
  25. package/messaging/schema/web-map-command-definitions.md +234 -27
  26. package/messaging/schema/web-map-operation-definitions.md +1 -1
  27. package/messaging/schema/web-measurement-command-definitions.md +18 -57
  28. package/messaging/schema/web-measurement-operation-definitions.md +17 -38
  29. package/messaging/schema/web-portal-operation-definitions.md +1 -1
  30. package/messaging/schema/web-results-command-definitions.md +280 -4
  31. package/messaging/schema/web-results-operation-definitions.md +289 -13
  32. package/messaging/schema/web-sketching-command-definitions.md +2 -2
  33. package/messaging/schema/web-sketching-operation-definitions.md +24 -24
  34. package/package.json +2 -2
  35. package/version.d.ts +1 -1
  36. package/version.js +1 -1
@@ -1,6 +1,1092 @@
1
1
  {
2
2
  "$ref": "#/definitions/viewer-spec.Event",
3
3
  "definitions": {
4
+ "@arcgis.core.analysis.Analysis.Analysis": {
5
+ "$ref": "esri.analysis.Analysis"
6
+ },
7
+ "@arcgis.core.analysis.ElevationProfile.ElevationProfileLineGround.ElevationProfileLineGround": {
8
+ "$ref": "esri.analysis.ElevationProfile.ElevationProfileLineGround"
9
+ },
10
+ "@arcgis.core.analysis.ElevationProfile.ElevationProfileLineInput.ElevationProfileLineInput": {
11
+ "$ref": "esri.analysis.ElevationProfile.ElevationProfileLineInput"
12
+ },
13
+ "@arcgis.core.analysis.ElevationProfile.ElevationProfileLineQuery.ElevationProfileLineQuery": {
14
+ "$ref": "esri.analysis.ElevationProfile.ElevationProfileLineQuery"
15
+ },
16
+ "@arcgis.core.analysis.ElevationProfile.ElevationProfileLineScene.ElevationProfileLineScene": {
17
+ "$ref": "esri.analysis.ElevationProfile.ElevationProfileLineScene"
18
+ },
19
+ "@arcgis.core.analysis.ElevationProfile.types.ElevationProfileLineUnion": {
20
+ "$ref": "esri.analysis.ElevationProfile.types"
21
+ },
22
+ "@arcgis.core.analysis.VolumeMeasurement.types.VolumeMeasureType": {
23
+ "$ref": "esri.analysis.VolumeMeasurement.types"
24
+ },
25
+ "@arcgis.core.core.Collection.CollectionAfterEvent": {
26
+ "properties": {},
27
+ "type": "object"
28
+ },
29
+ "@arcgis.core.core.Collection.CollectionAfterItemEvent": {
30
+ "additionalProperties": false,
31
+ "properties": {
32
+ "item": {
33
+ "$ref": "T",
34
+ "description": "The item to add or remove from the collection."
35
+ }
36
+ },
37
+ "required": [
38
+ "item"
39
+ ],
40
+ "type": "object"
41
+ },
42
+ "@arcgis.core.core.Collection.CollectionChangeEvent": {
43
+ "additionalProperties": false,
44
+ "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.",
45
+ "properties": {
46
+ "added": {
47
+ "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).",
48
+ "items": {
49
+ "$ref": "#/definitions/@arcgis.core.layers.Layer.Layer"
50
+ },
51
+ "type": "array"
52
+ },
53
+ "moved": {
54
+ "description": "An array of items that moved in the collection using [reorder()](https://developers.arcgis.com/javascript/latest/references/core/core/Collection/#reorder).",
55
+ "items": {
56
+ "$ref": "#/definitions/@arcgis.core.layers.Layer.Layer"
57
+ },
58
+ "type": "array"
59
+ },
60
+ "removed": {
61
+ "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).",
62
+ "items": {
63
+ "$ref": "#/definitions/@arcgis.core.layers.Layer.Layer"
64
+ },
65
+ "type": "array"
66
+ }
67
+ },
68
+ "required": [
69
+ "added",
70
+ "moved",
71
+ "removed"
72
+ ],
73
+ "type": "object"
74
+ },
75
+ "@arcgis.core.core.Error.Error": {
76
+ "$ref": "esri.core.Error"
77
+ },
78
+ "@arcgis.core.core.quantity.Area": {
79
+ "$ref": "esri.core.quantity"
80
+ },
81
+ "@arcgis.core.core.quantity.Length": {
82
+ "$ref": "esri.core.quantity"
83
+ },
84
+ "@arcgis.core.core.quantity.Volume": {
85
+ "$ref": "esri.core.quantity"
86
+ },
87
+ "@arcgis.core.editing.types.EditedFeatureResult": {
88
+ "$ref": "esri.editing.types"
89
+ },
90
+ "@arcgis.core.editing.types.EditedFeatures": {
91
+ "$ref": "esri.editing.types"
92
+ },
93
+ "@arcgis.core.editing.types.EditsResultEvent": {
94
+ "additionalProperties": false,
95
+ "properties": {
96
+ "addedAttachments": {
97
+ "description": "An array of successfully added attachments.",
98
+ "items": {
99
+ "$ref": "#/definitions/@arcgis.core.editing.types.FeatureEditResult"
100
+ },
101
+ "type": "array"
102
+ },
103
+ "addedFeatures": {
104
+ "description": "An array of successfully added features.",
105
+ "items": {
106
+ "$ref": "#/definitions/@arcgis.core.editing.types.FeatureEditResult"
107
+ },
108
+ "type": "array"
109
+ },
110
+ "deletedAttachments": {
111
+ "description": "An array of successfully deleted attachments.",
112
+ "items": {
113
+ "$ref": "#/definitions/@arcgis.core.editing.types.FeatureEditResult"
114
+ },
115
+ "type": "array"
116
+ },
117
+ "deletedFeatures": {
118
+ "description": "An array of successfully deleted features.",
119
+ "items": {
120
+ "$ref": "#/definitions/@arcgis.core.editing.types.FeatureEditResult"
121
+ },
122
+ "type": "array"
123
+ },
124
+ "editedFeatures": {
125
+ "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.",
126
+ "items": {
127
+ "$ref": "#/definitions/@arcgis.core.editing.types.EditedFeatureResult"
128
+ },
129
+ "type": "array"
130
+ },
131
+ "exceededTransferLimit": {
132
+ "description": "Returns `true` when the number of records returned exceeds the maximum number configured on the service.",
133
+ "type": "boolean"
134
+ },
135
+ "updatedAttachments": {
136
+ "description": "An array of successfully updated attachments.",
137
+ "items": {
138
+ "$ref": "#/definitions/@arcgis.core.editing.types.FeatureEditResult"
139
+ },
140
+ "type": "array"
141
+ },
142
+ "updatedFeatures": {
143
+ "description": "An array of successfully updated features.",
144
+ "items": {
145
+ "$ref": "#/definitions/@arcgis.core.editing.types.FeatureEditResult"
146
+ },
147
+ "type": "array"
148
+ }
149
+ },
150
+ "required": [
151
+ "addedAttachments",
152
+ "addedFeatures",
153
+ "deletedAttachments",
154
+ "deletedFeatures",
155
+ "exceededTransferLimit",
156
+ "updatedAttachments",
157
+ "updatedFeatures"
158
+ ],
159
+ "type": "object"
160
+ },
161
+ "@arcgis.core.editing.types.FeatureEditResult": {
162
+ "$ref": "esri.editing.types"
163
+ },
164
+ "@arcgis.core.form.elements.AttachmentElement.AttachmentElement": {
165
+ "$ref": "esri.form.elements.AttachmentElement"
166
+ },
167
+ "@arcgis.core.form.elements.FieldElement.FieldElement": {
168
+ "$ref": "esri.form.elements.FieldElement"
169
+ },
170
+ "@arcgis.core.form.elements.GroupElement.GroupElement": {
171
+ "$ref": "esri.form.elements.GroupElement"
172
+ },
173
+ "@arcgis.core.form.elements.RelationshipElement.RelationshipElement": {
174
+ "$ref": "esri.form.elements.RelationshipElement"
175
+ },
176
+ "@arcgis.core.form.elements.TextElement.TextElement": {
177
+ "$ref": "esri.form.elements.TextElement"
178
+ },
179
+ "@arcgis.core.form.elements.UtilityNetworkAssociationsElement.UtilityNetworkAssociationsElement": {
180
+ "$ref": "esri.form.elements.UtilityNetworkAssociationsElement"
181
+ },
182
+ "@arcgis.core.form.elements.inputs.attachments.AttachmentInput.AttachmentInput": {
183
+ "$ref": "esri.form.elements.inputs.attachments.AttachmentInput"
184
+ },
185
+ "@arcgis.core.form.elements.inputs.attachments.AudioInput.AudioInput": {
186
+ "$ref": "esri.form.elements.inputs.attachments.AudioInput"
187
+ },
188
+ "@arcgis.core.form.elements.inputs.attachments.DocumentInput.DocumentInput": {
189
+ "$ref": "esri.form.elements.inputs.attachments.DocumentInput"
190
+ },
191
+ "@arcgis.core.form.elements.inputs.attachments.ImageInput.ImageInput": {
192
+ "$ref": "esri.form.elements.inputs.attachments.ImageInput"
193
+ },
194
+ "@arcgis.core.form.elements.inputs.attachments.SignatureInput.SignatureInput": {
195
+ "$ref": "esri.form.elements.inputs.attachments.SignatureInput"
196
+ },
197
+ "@arcgis.core.form.elements.inputs.attachments.VideoInput.VideoInput": {
198
+ "$ref": "esri.form.elements.inputs.attachments.VideoInput"
199
+ },
200
+ "@arcgis.core.geometry.Extent.Extent": {
201
+ "$ref": "esri.geometry.Extent"
202
+ },
203
+ "@arcgis.core.geometry.Mesh.Mesh": {
204
+ "$ref": "esri.geometry.Mesh"
205
+ },
206
+ "@arcgis.core.geometry.Multipoint.Multipoint": {
207
+ "$ref": "esri.geometry.Multipoint"
208
+ },
209
+ "@arcgis.core.geometry.Point.Point": {
210
+ "$ref": "esri.geometry.Point"
211
+ },
212
+ "@arcgis.core.geometry.Polyline.Polyline": {
213
+ "$ref": "esri.geometry.Polyline"
214
+ },
215
+ "@arcgis.core.geometry.support.MeshGeoreferencedVertexSpace.MeshGeoreferencedVertexSpace": {
216
+ "$ref": "esri.geometry.support.MeshGeoreferencedVertexSpace"
217
+ },
218
+ "@arcgis.core.geometry.support.MeshLocalVertexSpace.MeshLocalVertexSpace": {
219
+ "$ref": "esri.geometry.support.MeshLocalVertexSpace"
220
+ },
221
+ "@arcgis.core.geometry.types.MeshVertexSpaceUnion": {
222
+ "anyOf": [
223
+ {
224
+ "$ref": "#/definitions/@arcgis.core.geometry.support.MeshLocalVertexSpace.MeshLocalVertexSpace"
225
+ },
226
+ {
227
+ "$ref": "#/definitions/@arcgis.core.geometry.support.MeshGeoreferencedVertexSpace.MeshGeoreferencedVertexSpace"
228
+ }
229
+ ]
230
+ },
231
+ "@arcgis.core.layers.BaseElevationLayer.BaseElevationLayer": {
232
+ "$ref": "esri.layers.BaseElevationLayer"
233
+ },
234
+ "@arcgis.core.layers.ElevationLayer.ElevationLayer": {
235
+ "$ref": "esri.layers.ElevationLayer"
236
+ },
237
+ "@arcgis.core.layers.Layer.Layer": {
238
+ "$ref": "esri.layers.Layer"
239
+ },
240
+ "@arcgis.core.layers.Layer.LayerLayerviewCreateErrorEvent": {
241
+ "additionalProperties": false,
242
+ "properties": {
243
+ "error": {
244
+ "$ref": "#/definitions/Error",
245
+ "description": "An error object describing why the layer view failed to create."
246
+ },
247
+ "view": {
248
+ "$ref": "#/definitions/@arcgis.core.views.View.View",
249
+ "description": "The view that failed to create a layerview for the layer emitting this event."
250
+ }
251
+ },
252
+ "required": [
253
+ "error",
254
+ "view"
255
+ ],
256
+ "type": "object"
257
+ },
258
+ "@arcgis.core.layers.Layer.LayerLayerviewCreateEvent": {
259
+ "additionalProperties": false,
260
+ "properties": {
261
+ "layerView": {
262
+ "$ref": "#/definitions/@arcgis.core.views.layers.LayerView.LayerView",
263
+ "description": "The LayerView rendered in the view representing the layer in `layer`."
264
+ },
265
+ "view": {
266
+ "$ref": "#/definitions/@arcgis.core.views.View.View",
267
+ "description": "The view in which the `layerView` was created."
268
+ }
269
+ },
270
+ "required": [
271
+ "layerView",
272
+ "view"
273
+ ],
274
+ "type": "object"
275
+ },
276
+ "@arcgis.core.layers.Layer.LayerLayerviewDestroyEvent": {
277
+ "additionalProperties": false,
278
+ "properties": {
279
+ "layerView": {
280
+ "$ref": "#/definitions/@arcgis.core.views.layers.LayerView.LayerView",
281
+ "description": "The destroyed LayerView representing the layer."
282
+ },
283
+ "view": {
284
+ "$ref": "#/definitions/@arcgis.core.views.View.View",
285
+ "description": "The view in which the `layerView` was destroyed."
286
+ }
287
+ },
288
+ "required": [
289
+ "layerView",
290
+ "view"
291
+ ],
292
+ "type": "object"
293
+ },
294
+ "@arcgis.core.layers.LinkChartLayer.InitializationLinkChartConfig": {
295
+ "additionalProperties": false,
296
+ "description": "Defines the initial layout for the link chart and any layout settings for newly created link chart layers.",
297
+ "properties": {
298
+ "doNotRecalculateLayout": {
299
+ "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.",
300
+ "type": "boolean"
301
+ },
302
+ "layoutMode": {
303
+ "$ref": "#/definitions/@arcgis.core.layers.knowledgeGraph.types.LayoutMode",
304
+ "description": "The layout mode to be applied by default. The system default is `organic-standard`."
305
+ },
306
+ "layoutSettings": {
307
+ "$ref": "#/definitions/@arcgis.core.linkChart.LayoutSettings.LayoutSettings",
308
+ "description": "Additional layout options for the default layout configuration."
309
+ }
310
+ },
311
+ "type": "object"
312
+ },
313
+ "@arcgis.core.layers.buildingSublayers.BuildingComponentSublayer.BuildingComponentSublayer": {
314
+ "$ref": "esri.layers.buildingSublayers.BuildingComponentSublayer"
315
+ },
316
+ "@arcgis.core.layers.buildingSublayers.BuildingGroupSublayer.BuildingGroupSublayer": {
317
+ "$ref": "esri.layers.buildingSublayers.BuildingGroupSublayer"
318
+ },
319
+ "@arcgis.core.layers.knowledgeGraph.types.LayoutMode": {
320
+ "$ref": "esri.layers.knowledgeGraph.types"
321
+ },
322
+ "@arcgis.core.layers.mixins.RefreshableLayer.RefreshEvent": {
323
+ "additionalProperties": false,
324
+ "properties": {
325
+ "dataChanged": {
326
+ "description": "Indicates if the layer's data has changed.",
327
+ "type": "boolean"
328
+ }
329
+ },
330
+ "type": "object"
331
+ },
332
+ "@arcgis.core.layers.support.CodedValueDomain.CodedValueDomain": {
333
+ "$ref": "esri.layers.support.CodedValueDomain"
334
+ },
335
+ "@arcgis.core.layers.support.DateTimeFieldFormat.DateTimeFieldFormat": {
336
+ "$ref": "esri.layers.support.DateTimeFieldFormat"
337
+ },
338
+ "@arcgis.core.layers.support.FeatureReductionBinning.FeatureReductionBinning": {
339
+ "$ref": "esri.layers.support.FeatureReductionBinning"
340
+ },
341
+ "@arcgis.core.layers.support.FeatureReductionCluster.FeatureReductionCluster": {
342
+ "$ref": "esri.layers.support.FeatureReductionCluster"
343
+ },
344
+ "@arcgis.core.layers.support.FeatureReductionSelection.FeatureReductionSelection": {
345
+ "$ref": "esri.layers.support.FeatureReductionSelection"
346
+ },
347
+ "@arcgis.core.layers.support.InheritedDomain.InheritedDomain": {
348
+ "$ref": "esri.layers.support.InheritedDomain"
349
+ },
350
+ "@arcgis.core.layers.support.NumberFieldFormat.NumberFieldFormat": {
351
+ "$ref": "esri.layers.support.NumberFieldFormat"
352
+ },
353
+ "@arcgis.core.layers.support.ParquetGeometryEncodingLocation.ParquetGeometryEncodingLocation": {
354
+ "$ref": "esri.layers.support.ParquetGeometryEncodingLocation"
355
+ },
356
+ "@arcgis.core.layers.support.ParquetGeometryEncodingWkb.ParquetGeometryEncodingWkb": {
357
+ "$ref": "esri.layers.support.ParquetGeometryEncodingWkb"
358
+ },
359
+ "@arcgis.core.layers.support.RangeDomain.RangeDomain": {
360
+ "$ref": "esri.layers.support.RangeDomain"
361
+ },
362
+ "@arcgis.core.linkChart.LayoutSettings.LayoutSettings": {
363
+ "$ref": "esri.linkChart.LayoutSettings"
364
+ },
365
+ "@arcgis.core.portal.PortalItem.PortalItem": {
366
+ "$ref": "esri.portal.PortalItem"
367
+ },
368
+ "@arcgis.core.renderers.ClassBreaksRenderer.ClassBreaksRenderer": {
369
+ "$ref": "esri.renderers.ClassBreaksRenderer"
370
+ },
371
+ "@arcgis.core.renderers.DictionaryRenderer.DictionaryRenderer": {
372
+ "$ref": "esri.renderers.DictionaryRenderer"
373
+ },
374
+ "@arcgis.core.renderers.DotDensityRenderer.DotDensityRenderer": {
375
+ "$ref": "esri.renderers.DotDensityRenderer"
376
+ },
377
+ "@arcgis.core.renderers.HeatmapRenderer.HeatmapRenderer": {
378
+ "$ref": "esri.renderers.HeatmapRenderer"
379
+ },
380
+ "@arcgis.core.renderers.PieChartRenderer.PieChartRenderer": {
381
+ "$ref": "esri.renderers.PieChartRenderer"
382
+ },
383
+ "@arcgis.core.renderers.SimpleRenderer.SimpleRenderer": {
384
+ "$ref": "esri.renderers.SimpleRenderer"
385
+ },
386
+ "@arcgis.core.renderers.UniqueValueRenderer.UniqueValueRenderer": {
387
+ "$ref": "esri.renderers.UniqueValueRenderer"
388
+ },
389
+ "@arcgis.core.renderers.types.RendererUnion": {
390
+ "anyOf": [
391
+ {
392
+ "$ref": "#/definitions/@arcgis.core.renderers.SimpleRenderer.SimpleRenderer"
393
+ },
394
+ {
395
+ "$ref": "#/definitions/@arcgis.core.renderers.ClassBreaksRenderer.ClassBreaksRenderer"
396
+ },
397
+ {
398
+ "$ref": "#/definitions/@arcgis.core.renderers.UniqueValueRenderer.UniqueValueRenderer"
399
+ },
400
+ {
401
+ "$ref": "#/definitions/@arcgis.core.renderers.DotDensityRenderer.DotDensityRenderer"
402
+ },
403
+ {
404
+ "$ref": "#/definitions/@arcgis.core.renderers.DictionaryRenderer.DictionaryRenderer"
405
+ },
406
+ {
407
+ "$ref": "#/definitions/@arcgis.core.renderers.PieChartRenderer.PieChartRenderer"
408
+ },
409
+ {
410
+ "$ref": "#/definitions/@arcgis.core.renderers.HeatmapRenderer.HeatmapRenderer"
411
+ }
412
+ ],
413
+ "description": "Union of renderers."
414
+ },
415
+ "@arcgis.core.symbols.CIMSymbol.CIMSymbol": {
416
+ "$ref": "esri.symbols.CIMSymbol"
417
+ },
418
+ "@arcgis.core.symbols.LabelSymbol3D.LabelSymbol3D": {
419
+ "$ref": "esri.symbols.LabelSymbol3D"
420
+ },
421
+ "@arcgis.core.symbols.LineSymbol3D.LineSymbol3D": {
422
+ "$ref": "esri.symbols.LineSymbol3D"
423
+ },
424
+ "@arcgis.core.symbols.MeshSymbol3D.MeshSymbol3D": {
425
+ "$ref": "esri.symbols.MeshSymbol3D"
426
+ },
427
+ "@arcgis.core.symbols.PictureFillSymbol.PictureFillSymbol": {
428
+ "$ref": "esri.symbols.PictureFillSymbol"
429
+ },
430
+ "@arcgis.core.symbols.PictureMarkerSymbol.PictureMarkerSymbol": {
431
+ "$ref": "esri.symbols.PictureMarkerSymbol"
432
+ },
433
+ "@arcgis.core.symbols.PointSymbol3D.PointSymbol3D": {
434
+ "$ref": "esri.symbols.PointSymbol3D"
435
+ },
436
+ "@arcgis.core.symbols.PolygonSymbol3D.PolygonSymbol3D": {
437
+ "$ref": "esri.symbols.PolygonSymbol3D"
438
+ },
439
+ "@arcgis.core.symbols.SimpleFillSymbol.SimpleFillSymbol": {
440
+ "$ref": "esri.symbols.SimpleFillSymbol"
441
+ },
442
+ "@arcgis.core.symbols.SimpleLineSymbol.SimpleLineSymbol": {
443
+ "$ref": "esri.symbols.SimpleLineSymbol"
444
+ },
445
+ "@arcgis.core.symbols.SimpleMarkerSymbol.SimpleMarkerSymbol": {
446
+ "$ref": "esri.symbols.SimpleMarkerSymbol"
447
+ },
448
+ "@arcgis.core.symbols.TextSymbol.TextSymbol": {
449
+ "$ref": "esri.symbols.TextSymbol"
450
+ },
451
+ "@arcgis.core.symbols.WebStyleSymbol.WebStyleSymbol": {
452
+ "$ref": "esri.symbols.WebStyleSymbol"
453
+ },
454
+ "@arcgis.core.symbols.cim.types.CIMAnimatedSymbolEasingType": {
455
+ "$ref": "esri.symbols.cim.types"
456
+ },
457
+ "@arcgis.core.symbols.cim.types.CIMAnimatedSymbolProperties": {
458
+ "additionalProperties": false,
459
+ "description": "Represents animated symbol properties, a collection of symbol properties that apply when the symbol layer has animation data.",
460
+ "properties": {
461
+ "duration": {
462
+ "description": "The time (in seconds) it take to play through the symbol's animation once. This determines a symbol's playback speed.",
463
+ "type": "number"
464
+ },
465
+ "easing": {
466
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMAnimatedSymbolEasingType",
467
+ "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."
468
+ },
469
+ "playAnimation": {
470
+ "description": "Indicates whether the animated symbol should play its animation.",
471
+ "type": "boolean"
472
+ },
473
+ "randomizeStartSeed": {
474
+ "description": "The starting value for generating a random number. Used by the `randomizeStartTime` property to determine the time offset for each feature.",
475
+ "type": "number"
476
+ },
477
+ "randomizeStartTime": {
478
+ "description": "Indicates whether to generate a randomized start offset in seconds to apply to the symbol animation of each feature.",
479
+ "type": "boolean"
480
+ },
481
+ "repeatDelay": {
482
+ "description": "The number of seconds to delay before repeating an animation cycle.",
483
+ "type": "number"
484
+ },
485
+ "repeatType": {
486
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMAnimatedSymbolRepeatType",
487
+ "description": "Determines how to repeat the animation of a symbol when the animation cycle ends."
488
+ },
489
+ "reverseAnimation": {
490
+ "description": "Indicates whether the animated symbol should play back in reverse.",
491
+ "type": "boolean"
492
+ },
493
+ "startTimeOffset": {
494
+ "description": "The time offset in seconds to use as the starting point of the symbol animation. This is used if `randomizeStartTime` is `false`.",
495
+ "type": "number"
496
+ }
497
+ },
498
+ "type": "object"
499
+ },
500
+ "@arcgis.core.symbols.cim.types.CIMAnimatedSymbolRepeatType": {
501
+ "$ref": "esri.symbols.cim.types"
502
+ },
503
+ "@arcgis.core.symbols.cim.types.CIMColorRampUnion": {
504
+ "anyOf": [
505
+ {
506
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMFixedColorRamp"
507
+ },
508
+ {
509
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMLinearContinuousColorRamp"
510
+ },
511
+ {
512
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMMultipartColorRamp"
513
+ }
514
+ ],
515
+ "description": "Represents a color ramp."
516
+ },
517
+ "@arcgis.core.symbols.cim.types.CIMFixedColorRamp": {
518
+ "$ref": "esri.symbols.cim.types"
519
+ },
520
+ "@arcgis.core.symbols.cim.types.CIMGradientFill": {
521
+ "$ref": "esri.symbols.cim.types"
522
+ },
523
+ "@arcgis.core.symbols.cim.types.CIMGradientStroke": {
524
+ "$ref": "esri.symbols.cim.types"
525
+ },
526
+ "@arcgis.core.symbols.cim.types.CIMHatchFill": {
527
+ "$ref": "esri.symbols.cim.types"
528
+ },
529
+ "@arcgis.core.symbols.cim.types.CIMLineSymbol": {
530
+ "$ref": "esri.symbols.cim.types"
531
+ },
532
+ "@arcgis.core.symbols.cim.types.CIMLinearContinuousColorRamp": {
533
+ "$ref": "esri.symbols.cim.types"
534
+ },
535
+ "@arcgis.core.symbols.cim.types.CIMMultipartColorRamp": {
536
+ "$ref": "esri.symbols.cim.types"
537
+ },
538
+ "@arcgis.core.symbols.cim.types.CIMPictureFill": {
539
+ "$ref": "esri.symbols.cim.types"
540
+ },
541
+ "@arcgis.core.symbols.cim.types.CIMPictureMarker": {
542
+ "$ref": "esri.symbols.cim.types"
543
+ },
544
+ "@arcgis.core.symbols.cim.types.CIMPictureStroke": {
545
+ "$ref": "esri.symbols.cim.types"
546
+ },
547
+ "@arcgis.core.symbols.cim.types.CIMPointSymbol": {
548
+ "$ref": "esri.symbols.cim.types"
549
+ },
550
+ "@arcgis.core.symbols.cim.types.CIMPolygonSymbol": {
551
+ "$ref": "esri.symbols.cim.types"
552
+ },
553
+ "@arcgis.core.symbols.cim.types.CIMSolidFill": {
554
+ "$ref": "esri.symbols.cim.types"
555
+ },
556
+ "@arcgis.core.symbols.cim.types.CIMSolidStroke": {
557
+ "$ref": "esri.symbols.cim.types"
558
+ },
559
+ "@arcgis.core.symbols.cim.types.CIMSymbolUnion": {
560
+ "anyOf": [
561
+ {
562
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMLineSymbol"
563
+ },
564
+ {
565
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMPointSymbol"
566
+ },
567
+ {
568
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMPolygonSymbol"
569
+ },
570
+ {
571
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMTextSymbol"
572
+ }
573
+ ],
574
+ "description": "Represents a union type of all CIM symbol types."
575
+ },
576
+ "@arcgis.core.symbols.cim.types.CIMTextSymbol": {
577
+ "$ref": "esri.symbols.cim.types"
578
+ },
579
+ "@arcgis.core.symbols.cim.types.CIMVectorMarker": {
580
+ "$ref": "esri.symbols.cim.types"
581
+ },
582
+ "@arcgis.core.symbols.types.SymbolUnion": {
583
+ "anyOf": [
584
+ {
585
+ "$ref": "#/definitions/@arcgis.core.symbols.PictureFillSymbol.PictureFillSymbol"
586
+ },
587
+ {
588
+ "$ref": "#/definitions/@arcgis.core.symbols.PictureMarkerSymbol.PictureMarkerSymbol"
589
+ },
590
+ {
591
+ "$ref": "#/definitions/@arcgis.core.symbols.SimpleFillSymbol.SimpleFillSymbol"
592
+ },
593
+ {
594
+ "$ref": "#/definitions/@arcgis.core.symbols.SimpleLineSymbol.SimpleLineSymbol"
595
+ },
596
+ {
597
+ "$ref": "#/definitions/@arcgis.core.symbols.SimpleMarkerSymbol.SimpleMarkerSymbol"
598
+ },
599
+ {
600
+ "$ref": "#/definitions/@arcgis.core.symbols.TextSymbol.TextSymbol"
601
+ },
602
+ {
603
+ "$ref": "#/definitions/@arcgis.core.symbols.CIMSymbol.CIMSymbol"
604
+ },
605
+ {
606
+ "$ref": "#/definitions/@arcgis.core.symbols.LabelSymbol3D.LabelSymbol3D"
607
+ },
608
+ {
609
+ "$ref": "#/definitions/@arcgis.core.symbols.LineSymbol3D.LineSymbol3D"
610
+ },
611
+ {
612
+ "$ref": "#/definitions/@arcgis.core.symbols.MeshSymbol3D.MeshSymbol3D"
613
+ },
614
+ {
615
+ "$ref": "#/definitions/@arcgis.core.symbols.PointSymbol3D.PointSymbol3D"
616
+ },
617
+ {
618
+ "$ref": "#/definitions/@arcgis.core.symbols.PolygonSymbol3D.PolygonSymbol3D"
619
+ },
620
+ {
621
+ "$ref": "#/definitions/@arcgis.core.symbols.WebStyleSymbol.WebStyleSymbol"
622
+ }
623
+ ],
624
+ "description": "Union of all symbols."
625
+ },
626
+ "@arcgis.core.views.2d.analysis.AreaMeasurementAnalysisView2D.AreaMeasurementAnalysisView2D": {
627
+ "$ref": "esri.views.2d.analysis.AreaMeasurementAnalysisView2D"
628
+ },
629
+ "@arcgis.core.views.2d.analysis.DistanceMeasurementAnalysisView2D.DistanceMeasurementAnalysisView2D": {
630
+ "$ref": "esri.views.2d.analysis.DistanceMeasurementAnalysisView2D"
631
+ },
632
+ "@arcgis.core.views.2d.analysis.ElevationProfileAnalysisView2D.ElevationProfileAnalysisView2D": {
633
+ "$ref": "esri.views.2d.analysis.ElevationProfileAnalysisView2D"
634
+ },
635
+ "@arcgis.core.views.3d.analysis.AreaMeasurementAnalysisView3D.AreaMeasurementAnalysisView3D": {
636
+ "$ref": "esri.views.3d.analysis.AreaMeasurementAnalysisView3D"
637
+ },
638
+ "@arcgis.core.views.3d.analysis.DimensionAnalysisView3D.DimensionAnalysisView3D": {
639
+ "$ref": "esri.views.3d.analysis.DimensionAnalysisView3D"
640
+ },
641
+ "@arcgis.core.views.3d.analysis.DirectLineMeasurement.types.DirectLineMeasurementAnalysisResult": {
642
+ "additionalProperties": false,
643
+ "description": "Result obtained from a [DirectLineMeasurementAnalysis](https://developers.arcgis.com/javascript/latest/references/core/analysis/DirectLineMeasurementAnalysis/).",
644
+ "properties": {
645
+ "directDistance": {
646
+ "$ref": "#/definitions/@arcgis.core.core.quantity.Length",
647
+ "description": "The 3D distance between the two points that is computed in a Euclidean manner."
648
+ },
649
+ "horizontalDistance": {
650
+ "$ref": "#/definitions/@arcgis.core.core.quantity.Length",
651
+ "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."
652
+ },
653
+ "mode": {
654
+ "$ref": "#/definitions/@arcgis.core.views.analysis.types.MeasurementMode",
655
+ "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."
656
+ },
657
+ "verticalDistance": {
658
+ "$ref": "#/definitions/@arcgis.core.core.quantity.Length",
659
+ "description": "Vertical distance measured as the absolute difference of the elevation of the two points."
660
+ }
661
+ },
662
+ "required": [
663
+ "directDistance",
664
+ "horizontalDistance",
665
+ "mode",
666
+ "verticalDistance"
667
+ ],
668
+ "type": "object"
669
+ },
670
+ "@arcgis.core.views.3d.analysis.DirectLineMeasurementAnalysisView3D.DirectLineMeasurementAnalysisView3D": {
671
+ "$ref": "esri.views.3d.analysis.DirectLineMeasurementAnalysisView3D"
672
+ },
673
+ "@arcgis.core.views.3d.analysis.ElevationProfileAnalysisView3D.ElevationProfileAnalysisView3D": {
674
+ "$ref": "esri.views.3d.analysis.ElevationProfileAnalysisView3D"
675
+ },
676
+ "@arcgis.core.views.3d.analysis.LineOfSightAnalysisResult.LineOfSightAnalysisResult": {
677
+ "additionalProperties": false,
678
+ "description": "Contains the result for a line of sight analysis from a [LineOfSightAnalysis](https://developers.arcgis.com/javascript/latest/references/core/analysis/LineOfSightAnalysis/).",
679
+ "properties": {
680
+ "declaredClass": {
681
+ "description": "The name of the class. The declared class name is formatted as `esri.folder.className`.",
682
+ "type": "string"
683
+ },
684
+ "destroyed": {
685
+ "type": "boolean"
686
+ },
687
+ "initialized": {
688
+ "description": "Set to `true` once the initialize function has executed.",
689
+ "type": "boolean"
690
+ },
691
+ "intersectedGraphic": {
692
+ "$ref": "T_22",
693
+ "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`."
694
+ },
695
+ "intersectedLocation": {
696
+ "$ref": "#/definitions/@arcgis.core.geometry.Point.Point",
697
+ "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`."
698
+ },
699
+ "target": {
700
+ "$ref": "T_16",
701
+ "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)."
702
+ },
703
+ "visible": {
704
+ "description": "Whether the target is visible from the observer or not.",
705
+ "type": "boolean"
706
+ }
707
+ },
708
+ "required": [
709
+ "declaredClass",
710
+ "destroyed",
711
+ "initialized",
712
+ "intersectedGraphic",
713
+ "intersectedLocation",
714
+ "target",
715
+ "visible"
716
+ ],
717
+ "type": "object"
718
+ },
719
+ "@arcgis.core.views.3d.analysis.LineOfSightAnalysisView3D.LineOfSightAnalysisView3D": {
720
+ "$ref": "esri.views.3d.analysis.LineOfSightAnalysisView3D"
721
+ },
722
+ "@arcgis.core.views.3d.analysis.ShadowCastAnalysisView3D.ShadowCastAnalysisView3D": {
723
+ "$ref": "esri.views.3d.analysis.ShadowCastAnalysisView3D"
724
+ },
725
+ "@arcgis.core.views.3d.analysis.SliceAnalysisView3D.SliceAnalysisView3D": {
726
+ "$ref": "esri.views.3d.analysis.SliceAnalysisView3D"
727
+ },
728
+ "@arcgis.core.views.3d.analysis.ViewshedAnalysisView3D.ViewshedAnalysisView3D": {
729
+ "$ref": "esri.views.3d.analysis.ViewshedAnalysisView3D"
730
+ },
731
+ "@arcgis.core.views.3d.analysis.VolumeMeasurement.VolumeMeasurementResult.VolumeMeasurementResult": {
732
+ "additionalProperties": false,
733
+ "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.",
734
+ "properties": {
735
+ "area": {
736
+ "$ref": "#/definitions/@arcgis.core.core.quantity.Area",
737
+ "description": "The area of the measured volume."
738
+ },
739
+ "cutVolume": {
740
+ "$ref": "#/definitions/@arcgis.core.core.quantity.Volume",
741
+ "description": "Volume that needs to be removed to reach the target surface defined by the polygon."
742
+ },
743
+ "declaredClass": {
744
+ "description": "The name of the class. The declared class name is formatted as `esri.folder.className`.",
745
+ "type": "string"
746
+ },
747
+ "destroyed": {
748
+ "type": "boolean"
749
+ },
750
+ "fillVolume": {
751
+ "$ref": "#/definitions/@arcgis.core.core.quantity.Volume",
752
+ "description": "Volume that needs to be added to reach the target surface defined by the polygon."
753
+ },
754
+ "initialized": {
755
+ "description": "Set to `true` once the initialize function has executed.",
756
+ "type": "boolean"
757
+ },
758
+ "measureType": {
759
+ "$ref": "#/definitions/@arcgis.core.analysis.VolumeMeasurement.types.VolumeMeasureType",
760
+ "description": "Volume measure type."
761
+ },
762
+ "netVolume": {
763
+ "$ref": "#/definitions/@arcgis.core.core.quantity.Volume",
764
+ "description": "Difference between the cut volume and fill volume. A positive value indicates a surplus volume that needs to be removed."
765
+ },
766
+ "perimeter": {
767
+ "$ref": "#/definitions/@arcgis.core.core.quantity.Length",
768
+ "description": "The perimeter of the measured volume."
769
+ },
770
+ "totalVolume": {
771
+ "$ref": "#/definitions/@arcgis.core.core.quantity.Volume",
772
+ "description": "Sum of the cut volume and fill volume."
773
+ }
774
+ },
775
+ "required": [
776
+ "area",
777
+ "cutVolume",
778
+ "declaredClass",
779
+ "destroyed",
780
+ "fillVolume",
781
+ "initialized",
782
+ "measureType",
783
+ "netVolume",
784
+ "perimeter",
785
+ "totalVolume"
786
+ ],
787
+ "type": "object"
788
+ },
789
+ "@arcgis.core.views.3d.analysis.VolumeMeasurementAnalysisView3D.VolumeMeasurementAnalysisView3D": {
790
+ "$ref": "esri.views.3d.analysis.VolumeMeasurementAnalysisView3D"
791
+ },
792
+ "@arcgis.core.views.3d.environment.CloudyWeather.CloudyWeather": {
793
+ "$ref": "esri.views.3d.environment.CloudyWeather"
794
+ },
795
+ "@arcgis.core.views.3d.environment.FoggyWeather.FoggyWeather": {
796
+ "$ref": "esri.views.3d.environment.FoggyWeather"
797
+ },
798
+ "@arcgis.core.views.3d.environment.RainyWeather.RainyWeather": {
799
+ "$ref": "esri.views.3d.environment.RainyWeather"
800
+ },
801
+ "@arcgis.core.views.3d.environment.SnowyWeather.SnowyWeather": {
802
+ "$ref": "esri.views.3d.environment.SnowyWeather"
803
+ },
804
+ "@arcgis.core.views.3d.environment.SunLighting.SunLighting": {
805
+ "$ref": "esri.views.3d.environment.SunLighting"
806
+ },
807
+ "@arcgis.core.views.3d.environment.SunnyWeather.SunnyWeather": {
808
+ "$ref": "esri.views.3d.environment.SunnyWeather"
809
+ },
810
+ "@arcgis.core.views.3d.environment.VirtualLighting.VirtualLighting": {
811
+ "$ref": "esri.views.3d.environment.VirtualLighting"
812
+ },
813
+ "@arcgis.core.views.3d.environment.types.LightingUnion": {
814
+ "anyOf": [
815
+ {
816
+ "$ref": "#/definitions/@arcgis.core.views.3d.environment.SunLighting.SunLighting"
817
+ },
818
+ {
819
+ "$ref": "#/definitions/@arcgis.core.views.3d.environment.VirtualLighting.VirtualLighting"
820
+ }
821
+ ]
822
+ },
823
+ "@arcgis.core.views.3d.environment.types.WeatherUnion": {
824
+ "anyOf": [
825
+ {
826
+ "$ref": "#/definitions/@arcgis.core.views.3d.environment.CloudyWeather.CloudyWeather"
827
+ },
828
+ {
829
+ "$ref": "#/definitions/@arcgis.core.views.3d.environment.FoggyWeather.FoggyWeather"
830
+ },
831
+ {
832
+ "$ref": "#/definitions/@arcgis.core.views.3d.environment.RainyWeather.RainyWeather"
833
+ },
834
+ {
835
+ "$ref": "#/definitions/@arcgis.core.views.3d.environment.SnowyWeather.SnowyWeather"
836
+ },
837
+ {
838
+ "$ref": "#/definitions/@arcgis.core.views.3d.environment.SunnyWeather.SunnyWeather"
839
+ }
840
+ ]
841
+ },
842
+ "@arcgis.core.views.View.View": {
843
+ "$ref": "esri.views.View"
844
+ },
845
+ "@arcgis.core.views.analysis.AreaMeasurement.types.AreaMeasurementResult": {
846
+ "additionalProperties": false,
847
+ "description": "Result obtained from an [AreaMeasurementAnalysis](https://developers.arcgis.com/javascript/latest/references/core/analysis/AreaMeasurementAnalysis/).",
848
+ "properties": {
849
+ "area": {
850
+ "$ref": "#/definitions/@arcgis.core.core.quantity.Area",
851
+ "description": "Area of the polygon."
852
+ },
853
+ "mode": {
854
+ "$ref": "#/definitions/@arcgis.core.views.analysis.types.MeasurementMode",
855
+ "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)."
856
+ },
857
+ "perimeter": {
858
+ "$ref": "#/definitions/@arcgis.core.core.quantity.Length",
859
+ "description": "Perimeter length of the polygon."
860
+ }
861
+ },
862
+ "required": [
863
+ "area",
864
+ "mode",
865
+ "perimeter"
866
+ ],
867
+ "type": "object"
868
+ },
869
+ "@arcgis.core.views.analysis.DistanceMeasurement.types.DistanceMeasurementResult": {
870
+ "additionalProperties": false,
871
+ "description": "Result obtained from an [DistanceMeasurementAnalysis](https://developers.arcgis.com/javascript/latest/references/core/analysis/DistanceMeasurementAnalysis/).",
872
+ "properties": {
873
+ "length": {
874
+ "$ref": "#/definitions/@arcgis.core.core.quantity.Length",
875
+ "description": "Length of the polyline."
876
+ },
877
+ "mode": {
878
+ "$ref": "#/definitions/@arcgis.core.views.analysis.types.MeasurementMode",
879
+ "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."
880
+ }
881
+ },
882
+ "required": [
883
+ "length",
884
+ "mode"
885
+ ],
886
+ "type": "object"
887
+ },
888
+ "@arcgis.core.views.analysis.ElevationProfile.ElevationProfileResult.ElevationProfileResult": {
889
+ "additionalProperties": false,
890
+ "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.",
891
+ "properties": {
892
+ "available": {
893
+ "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.",
894
+ "type": "boolean"
895
+ },
896
+ "declaredClass": {
897
+ "description": "The name of the class. The declared class name is formatted as `esri.folder.className`.",
898
+ "type": "string"
899
+ },
900
+ "destroyed": {
901
+ "type": "boolean"
902
+ },
903
+ "initialized": {
904
+ "description": "Set to `true` once the initialize function has executed.",
905
+ "type": "boolean"
906
+ },
907
+ "profile": {
908
+ "$ref": "#/definitions/@arcgis.core.analysis.ElevationProfile.types.ElevationProfileLineUnion",
909
+ "description": "The [profile line](https://developers.arcgis.com/javascript/latest/references/core/analysis/ElevationProfileAnalysis/#profiles) whose elevation is represented by this result."
910
+ },
911
+ "progress": {
912
+ "description": "Represents the progress of the elevation profile generation, ranging from 0 to 1.",
913
+ "type": "number"
914
+ },
915
+ "samples": {
916
+ "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).",
917
+ "items": {
918
+ "$ref": "#/definitions/@arcgis.core.views.analysis.ElevationProfile.types.ElevationProfileSample"
919
+ },
920
+ "type": "array"
921
+ },
922
+ "statistics": {
923
+ "$ref": "#/definitions/@arcgis.core.views.analysis.ElevationProfile.types.ElevationProfileStatistics",
924
+ "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)."
925
+ }
926
+ },
927
+ "required": [
928
+ "available",
929
+ "declaredClass",
930
+ "destroyed",
931
+ "initialized",
932
+ "profile",
933
+ "progress",
934
+ "samples",
935
+ "statistics"
936
+ ],
937
+ "type": "object"
938
+ },
939
+ "@arcgis.core.views.analysis.ElevationProfile.types.ElevationProfileSample": {
940
+ "$ref": "esri.views.analysis.ElevationProfile.types"
941
+ },
942
+ "@arcgis.core.views.analysis.ElevationProfile.types.ElevationProfileStatistics": {
943
+ "$ref": "esri.views.analysis.ElevationProfile.types"
944
+ },
945
+ "@arcgis.core.views.analysis.types.AnalysisViewUnion": {
946
+ "$ref": "esri.views.analysis.types"
947
+ },
948
+ "@arcgis.core.views.analysis.types.MeasurementMode": {
949
+ "$ref": "esri.views.analysis.types"
950
+ },
951
+ "@arcgis.core.views.layers.LayerView.LayerView": {
952
+ "$ref": "esri.views.layers.LayerView"
953
+ },
954
+ "@arcgis.core.views.layers.StreamLayerView.StreamUpdateRateEvent": {
955
+ "additionalProperties": false,
956
+ "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.",
957
+ "properties": {
958
+ "client": {
959
+ "description": "The client update rate per second. Returns number of features being processed on the client.",
960
+ "type": "number"
961
+ },
962
+ "websocket": {
963
+ "description": "Update rate per second for websocket/service. Returns number of features being pushed from the server.",
964
+ "type": "number"
965
+ }
966
+ },
967
+ "required": [
968
+ "client",
969
+ "websocket"
970
+ ],
971
+ "type": "object"
972
+ },
973
+ "@arcgis.core.views.types.AnalysisViewCreateErrorEvent": {
974
+ "additionalProperties": false,
975
+ "properties": {
976
+ "analysis": {
977
+ "$ref": "#/definitions/@arcgis.core.analysis.Analysis.Analysis",
978
+ "description": "The analysis for which the `analysisView` was created."
979
+ },
980
+ "error": {
981
+ "$ref": "#/definitions/Error",
982
+ "description": "An error object describing why the analysis view could not be created."
983
+ }
984
+ },
985
+ "required": [
986
+ "analysis",
987
+ "error"
988
+ ],
989
+ "type": "object"
990
+ },
991
+ "@arcgis.core.views.types.AnalysisViewCreateEvent": {
992
+ "additionalProperties": false,
993
+ "properties": {
994
+ "analysis": {
995
+ "$ref": "#/definitions/@arcgis.core.analysis.Analysis.Analysis",
996
+ "description": "The analysis for which the `analysisView` was created."
997
+ },
998
+ "analysisView": {
999
+ "$ref": "#/definitions/@arcgis.core.views.analysis.types.AnalysisViewUnion",
1000
+ "description": "The analysis view that was created."
1001
+ }
1002
+ },
1003
+ "required": [
1004
+ "analysis",
1005
+ "analysisView"
1006
+ ],
1007
+ "type": "object"
1008
+ },
1009
+ "@arcgis.core.views.types.AnalysisViewDestroyEvent": {
1010
+ "additionalProperties": false,
1011
+ "properties": {
1012
+ "analysis": {
1013
+ "$ref": "#/definitions/@arcgis.core.analysis.Analysis.Analysis",
1014
+ "description": "The analysis whose analysis view was destroyed."
1015
+ },
1016
+ "analysisView": {
1017
+ "$ref": "#/definitions/@arcgis.core.views.analysis.types.AnalysisViewUnion",
1018
+ "description": "The analysis view that was destroyed."
1019
+ }
1020
+ },
1021
+ "required": [
1022
+ "analysis",
1023
+ "analysisView"
1024
+ ],
1025
+ "type": "object"
1026
+ },
1027
+ "@arcgis.core.webdoc.applicationProperties.Viewing.Viewing": {
1028
+ "$ref": "esri.webdoc.applicationProperties.Viewing"
1029
+ },
1030
+ "@arcgis.core.webscene.ApplicationProperties.ApplicationProperties": {
1031
+ "additionalProperties": false,
1032
+ "description": "Represents configuration of application and UI elements.",
1033
+ "properties": {
1034
+ "declaredClass": {
1035
+ "description": "The name of the class. The declared class name is formatted as `esri.folder.className`.",
1036
+ "type": "string"
1037
+ },
1038
+ "destroyed": {
1039
+ "type": "boolean"
1040
+ },
1041
+ "initialized": {
1042
+ "description": "Set to `true` once the initialize function has executed.",
1043
+ "type": "boolean"
1044
+ },
1045
+ "viewing": {
1046
+ "$ref": "#/definitions/@arcgis.core.webdoc.applicationProperties.Viewing.Viewing",
1047
+ "description": "View-specific properties of application and UI elements."
1048
+ }
1049
+ },
1050
+ "required": [
1051
+ "declaredClass",
1052
+ "destroyed",
1053
+ "initialized",
1054
+ "viewing"
1055
+ ],
1056
+ "type": "object"
1057
+ },
1058
+ "@arcgis.core.webscene.support.FeatureReferenceGlobalId.FeatureReferenceGlobalId": {
1059
+ "$ref": "esri.webscene.support.FeatureReferenceGlobalId"
1060
+ },
1061
+ "@arcgis.core.webscene.support.FeatureReferenceObjectId.FeatureReferenceObjectId": {
1062
+ "$ref": "esri.webscene.support.FeatureReferenceObjectId"
1063
+ },
1064
+ "@arcgis.core.webscene.types.FeatureReferenceIdUnion": {
1065
+ "anyOf": [
1066
+ {
1067
+ "$ref": "#/definitions/@arcgis.core.webscene.support.FeatureReferenceGlobalId.FeatureReferenceGlobalId"
1068
+ },
1069
+ {
1070
+ "$ref": "#/definitions/@arcgis.core.webscene.support.FeatureReferenceObjectId.FeatureReferenceObjectId"
1071
+ }
1072
+ ]
1073
+ },
1074
+ "@arcgis.core.widgets.Popup.types.ActionEvent": {
1075
+ "additionalProperties": false,
1076
+ "properties": {
1077
+ "action": {
1078
+ "$ref": "#/definitions/@arcgis.core.widgets.Popup.types.PopupAction",
1079
+ "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."
1080
+ }
1081
+ },
1082
+ "required": [
1083
+ "action"
1084
+ ],
1085
+ "type": "object"
1086
+ },
1087
+ "@arcgis.core.widgets.Popup.types.PopupAction": {
1088
+ "$ref": "esri.widgets.Popup.types"
1089
+ },
4
1090
  "@vertigis.arcgis-extensions.FailureMode.FailureMode": {
5
1091
  "description": "Possible modes of failure when there is an error resolving or initializing an item.",
6
1092
  "enum": [
@@ -10,6 +1096,10 @@
10
1096
  ],
11
1097
  "type": "string"
12
1098
  },
1099
+ "@vertigis.arcgis-extensions.data._Relationship.RelationshipType": {
1100
+ "description": "The type of the Relationship.",
1101
+ "type": "string"
1102
+ },
13
1103
  "@vertigis.arcgis-extensions.data._TableExtension.TableReference": {
14
1104
  "additionalProperties": false,
15
1105
  "description": "Matches an existing table in a map.",
@@ -65,7 +1155,7 @@
65
1155
  "@vertigis.arcgis-extensions.mapping.MapExtension.WebMapLike": {
66
1156
  "anyOf": [
67
1157
  {
68
- "$ref": "#/definitions/esri.PortalItem"
1158
+ "$ref": "#/definitions/@arcgis.core.portal.PortalItem.PortalItem"
69
1159
  },
70
1160
  {
71
1161
  "$ref": "#/definitions/esri.rest-api.ItemJson.ItemJson"
@@ -88,7 +1178,7 @@
88
1178
  "@vertigis.arcgis-extensions.mapping.MapExtension.WebSceneLike": {
89
1179
  "anyOf": [
90
1180
  {
91
- "$ref": "#/definitions/esri.PortalItem"
1181
+ "$ref": "#/definitions/@arcgis.core.portal.PortalItem.PortalItem"
92
1182
  },
93
1183
  {
94
1184
  "$ref": "#/definitions/esri.rest-api.ItemJson.ItemJson"
@@ -160,17 +1250,113 @@
160
1250
  },
161
1251
  "type": "array"
162
1252
  },
1253
+ "@vertigis.arcgis-extensions.support.InitializableBase.InitializeWarningEvent": {
1254
+ "additionalProperties": false,
1255
+ "description": "Raised when there is an error initializing an {@link support /InitializableBase!InitializableBase}.",
1256
+ "properties": {
1257
+ "error": {
1258
+ "$ref": "@vertigis.arcgis-extensions.support.InitializeError.InitializeError",
1259
+ "description": "Original error that occurred."
1260
+ },
1261
+ "target": {
1262
+ "$ref": "@vertigis.arcgis-extensions.support.InitializableBase.InitializableBase",
1263
+ "description": "The {@link support /InitializableBase!InitializableBase} that raised the event."
1264
+ }
1265
+ },
1266
+ "required": [
1267
+ "error",
1268
+ "target"
1269
+ ],
1270
+ "type": "object"
1271
+ },
1272
+ "@vertigis.arcgis-extensions.utilities.ObservableMap.MapAfterItemEvent": {
1273
+ "additionalProperties": false,
1274
+ "description": "Raised after an item is added or removed from an {@link ObservableMap}.",
1275
+ "properties": {
1276
+ "item": {
1277
+ "$ref": "T_37",
1278
+ "description": "The item to add or remove from the collection."
1279
+ },
1280
+ "target": {
1281
+ "$ref": "@vertigis.arcgis-extensions.utilities.collection.AfterItemChangeEvent.TCollection",
1282
+ "description": "The collection like object that raised the event."
1283
+ }
1284
+ },
1285
+ "required": [
1286
+ "item",
1287
+ "target"
1288
+ ],
1289
+ "type": "object"
1290
+ },
1291
+ "@vertigis.arcgis-extensions.utilities.ObservableMap.MapChangeEvent": {
1292
+ "additionalProperties": false,
1293
+ "description": "Raised when items are added or removed from an {@link ObservableMap}.",
1294
+ "properties": {
1295
+ "added": {
1296
+ "description": "The items that were added.",
1297
+ "items": {
1298
+ "items": [
1299
+ {
1300
+ "type": "string"
1301
+ },
1302
+ {}
1303
+ ],
1304
+ "maxItems": 2,
1305
+ "minItems": 2,
1306
+ "type": "array"
1307
+ },
1308
+ "type": "array"
1309
+ },
1310
+ "removed": {
1311
+ "description": "The items that were removed.",
1312
+ "items": {
1313
+ "items": [
1314
+ {
1315
+ "type": "string"
1316
+ },
1317
+ {}
1318
+ ],
1319
+ "maxItems": 2,
1320
+ "minItems": 2,
1321
+ "type": "array"
1322
+ },
1323
+ "type": "array"
1324
+ },
1325
+ "target": {
1326
+ "$ref": "@vertigis.arcgis-extensions.utilities.ObservableMap.ObservableMap",
1327
+ "description": "The {@link ObservableMap} that raised the event."
1328
+ }
1329
+ },
1330
+ "required": [
1331
+ "added",
1332
+ "removed",
1333
+ "target"
1334
+ ],
1335
+ "type": "object"
1336
+ },
163
1337
  "ArcGISPortalIdentity": {
164
1338
  "additionalProperties": false,
165
1339
  "type": "object"
166
1340
  },
167
- "ArrayBufferLike": {
1341
+ "AttachmentInputUnion": {
168
1342
  "anyOf": [
169
1343
  {
170
- "$ref": "ArrayBuffer"
1344
+ "$ref": "#/definitions/@arcgis.core.form.elements.inputs.attachments.AudioInput.AudioInput"
1345
+ },
1346
+ {
1347
+ "$ref": "#/definitions/@arcgis.core.form.elements.inputs.attachments.DocumentInput.DocumentInput"
1348
+ },
1349
+ {
1350
+ "$ref": "#/definitions/@arcgis.core.form.elements.inputs.attachments.ImageInput.ImageInput"
1351
+ },
1352
+ {
1353
+ "$ref": "#/definitions/@arcgis.core.form.elements.inputs.attachments.SignatureInput.SignatureInput"
1354
+ },
1355
+ {
1356
+ "$ref": "#/definitions/@arcgis.core.form.elements.inputs.attachments.VideoInput.VideoInput"
171
1357
  },
172
1358
  {
173
- "$ref": "SharedArrayBuffer"
1359
+ "$ref": "#/definitions/@arcgis.core.form.elements.inputs.attachments.AttachmentInput.AttachmentInput"
174
1360
  }
175
1361
  ]
176
1362
  },
@@ -195,6 +1381,9 @@
195
1381
  {
196
1382
  "$ref": "#/definitions/esri.rest-api.MapServiceLayerJson.MapServiceLayerJson"
197
1383
  },
1384
+ {
1385
+ "$ref": "#/definitions/esri.rest-api.SceneLayerJson.SceneLayerJson"
1386
+ },
198
1387
  {
199
1388
  "$ref": "#/definitions/esri.rest-api.TiledImageServiceLayerJson.TiledImageServiceLayerJson"
200
1389
  },
@@ -219,6 +1408,105 @@
219
1408
  ],
220
1409
  "description": "A base map layer in a web map/scene."
221
1410
  },
1411
+ "BuildingSublayerUnion": {
1412
+ "anyOf": [
1413
+ {
1414
+ "$ref": "#/definitions/@arcgis.core.layers.buildingSublayers.BuildingComponentSublayer.BuildingComponentSublayer"
1415
+ },
1416
+ {
1417
+ "$ref": "#/definitions/@arcgis.core.layers.buildingSublayers.BuildingGroupSublayer.BuildingGroupSublayer"
1418
+ }
1419
+ ]
1420
+ },
1421
+ "CIMSymbolLayerUnion": {
1422
+ "anyOf": [
1423
+ {
1424
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMGradientFill"
1425
+ },
1426
+ {
1427
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMGradientStroke"
1428
+ },
1429
+ {
1430
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMHatchFill"
1431
+ },
1432
+ {
1433
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMPictureMarker"
1434
+ },
1435
+ {
1436
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMVectorMarker"
1437
+ },
1438
+ {
1439
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMPictureFill"
1440
+ },
1441
+ {
1442
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMPictureStroke"
1443
+ },
1444
+ {
1445
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMSolidFill"
1446
+ },
1447
+ {
1448
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMSolidStroke"
1449
+ }
1450
+ ],
1451
+ "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"
1452
+ },
1453
+ "CIMSymbolUnion": {
1454
+ "anyOf": [
1455
+ {
1456
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMLineSymbol"
1457
+ },
1458
+ {
1459
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMPointSymbol"
1460
+ },
1461
+ {
1462
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMPolygonSymbol"
1463
+ },
1464
+ {
1465
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMTextSymbol"
1466
+ }
1467
+ ],
1468
+ "description": "Represents a union type of all CIM symbol types."
1469
+ },
1470
+ "ColorJson": {
1471
+ "anyOf": [
1472
+ {
1473
+ "items": [
1474
+ {
1475
+ "type": "number"
1476
+ },
1477
+ {
1478
+ "type": "number"
1479
+ },
1480
+ {
1481
+ "type": "number"
1482
+ },
1483
+ {
1484
+ "type": "number"
1485
+ }
1486
+ ],
1487
+ "maxItems": 4,
1488
+ "minItems": 4,
1489
+ "type": "array"
1490
+ },
1491
+ {
1492
+ "items": [
1493
+ {
1494
+ "type": "number"
1495
+ },
1496
+ {
1497
+ "type": "number"
1498
+ },
1499
+ {
1500
+ "type": "number"
1501
+ }
1502
+ ],
1503
+ "maxItems": 3,
1504
+ "minItems": 3,
1505
+ "type": "array"
1506
+ }
1507
+ ],
1508
+ "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/}."
1509
+ },
222
1510
  "DataSourceJson": {
223
1511
  "anyOf": [
224
1512
  {
@@ -250,6 +1538,20 @@
250
1538
  ],
251
1539
  "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/}."
252
1540
  },
1541
+ "DomainUnion": {
1542
+ "anyOf": [
1543
+ {
1544
+ "$ref": "#/definitions/@arcgis.core.layers.support.CodedValueDomain.CodedValueDomain"
1545
+ },
1546
+ {
1547
+ "$ref": "#/definitions/@arcgis.core.layers.support.InheritedDomain.InheritedDomain"
1548
+ },
1549
+ {
1550
+ "$ref": "#/definitions/@arcgis.core.layers.support.RangeDomain.RangeDomain"
1551
+ }
1552
+ ],
1553
+ "description": "Supported domain types. Domains are used to constrain allowable values of a layer."
1554
+ },
253
1555
  "EdgesJson": {
254
1556
  "anyOf": [
255
1557
  {
@@ -327,6 +1629,34 @@
327
1629
  ],
328
1630
  "description": "Elevation layers that can be used in a web scene's ground."
329
1631
  },
1632
+ "ElevationLayerUnion": {
1633
+ "anyOf": [
1634
+ {
1635
+ "$ref": "#/definitions/@arcgis.core.layers.ElevationLayer.ElevationLayer"
1636
+ },
1637
+ {
1638
+ "$ref": "#/definitions/@arcgis.core.layers.BaseElevationLayer.BaseElevationLayer"
1639
+ }
1640
+ ],
1641
+ "description": "Union of supported ground elevation layer types."
1642
+ },
1643
+ "ElevationProfileLineUnion": {
1644
+ "anyOf": [
1645
+ {
1646
+ "$ref": "#/definitions/@arcgis.core.analysis.ElevationProfile.ElevationProfileLineGround.ElevationProfileLineGround"
1647
+ },
1648
+ {
1649
+ "$ref": "#/definitions/@arcgis.core.analysis.ElevationProfile.ElevationProfileLineInput.ElevationProfileLineInput"
1650
+ },
1651
+ {
1652
+ "$ref": "#/definitions/@arcgis.core.analysis.ElevationProfile.ElevationProfileLineQuery.ElevationProfileLineQuery"
1653
+ },
1654
+ {
1655
+ "$ref": "#/definitions/@arcgis.core.analysis.ElevationProfile.ElevationProfileLineScene.ElevationProfileLineScene"
1656
+ }
1657
+ ],
1658
+ "description": "Union of all supported elevation profile lines."
1659
+ },
330
1660
  "Error": {
331
1661
  "additionalProperties": false,
332
1662
  "properties": {
@@ -358,6 +1688,30 @@
358
1688
  ],
359
1689
  "description": "Feature reductions declutter the screen by hiding features that would otherwise intersect with other features on screen."
360
1690
  },
1691
+ "FeatureReductionUnion": {
1692
+ "anyOf": [
1693
+ {
1694
+ "$ref": "#/definitions/@arcgis.core.layers.support.FeatureReductionBinning.FeatureReductionBinning"
1695
+ },
1696
+ {
1697
+ "$ref": "#/definitions/@arcgis.core.layers.support.FeatureReductionCluster.FeatureReductionCluster"
1698
+ },
1699
+ {
1700
+ "$ref": "#/definitions/@arcgis.core.layers.support.FeatureReductionSelection.FeatureReductionSelection"
1701
+ }
1702
+ ]
1703
+ },
1704
+ "FieldFormatUnion": {
1705
+ "anyOf": [
1706
+ {
1707
+ "$ref": "#/definitions/@arcgis.core.layers.support.DateTimeFieldFormat.DateTimeFieldFormat"
1708
+ },
1709
+ {
1710
+ "$ref": "#/definitions/@arcgis.core.layers.support.NumberFieldFormat.NumberFieldFormat"
1711
+ }
1712
+ ],
1713
+ "description": "Supported field formatting types."
1714
+ },
361
1715
  "FilterModeJson": {
362
1716
  "anyOf": [
363
1717
  {
@@ -369,6 +1723,29 @@
369
1723
  ],
370
1724
  "description": "Filter mode represents the way elements draw when participating in a filter block."
371
1725
  },
1726
+ "FormElementUnion": {
1727
+ "anyOf": [
1728
+ {
1729
+ "$ref": "#/definitions/@arcgis.core.form.elements.FieldElement.FieldElement"
1730
+ },
1731
+ {
1732
+ "$ref": "#/definitions/@arcgis.core.form.elements.AttachmentElement.AttachmentElement"
1733
+ },
1734
+ {
1735
+ "$ref": "#/definitions/@arcgis.core.form.elements.RelationshipElement.RelationshipElement"
1736
+ },
1737
+ {
1738
+ "$ref": "#/definitions/@arcgis.core.form.elements.TextElement.TextElement"
1739
+ },
1740
+ {
1741
+ "$ref": "#/definitions/@arcgis.core.form.elements.GroupElement.GroupElement"
1742
+ },
1743
+ {
1744
+ "$ref": "#/definitions/@arcgis.core.form.elements.UtilityNetworkAssociationsElement.UtilityNetworkAssociationsElement"
1745
+ }
1746
+ ],
1747
+ "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."
1748
+ },
372
1749
  "GeolocateAccuracyChangedEventArgs": {
373
1750
  "additionalProperties": false,
374
1751
  "description": "Arguments for the \"geolocation.accuracy-changed\" event.",
@@ -406,27 +1783,50 @@
406
1783
  "required": [
407
1784
  "isEnabled"
408
1785
  ],
409
- "type": "object"
1786
+ "type": "object"
1787
+ },
1788
+ "GeometryJson": {
1789
+ "anyOf": [
1790
+ {
1791
+ "$ref": "#/definitions/esri.rest-api.GeometryJson.PointJson"
1792
+ },
1793
+ {
1794
+ "$ref": "#/definitions/esri.rest-api.GeometryJson.MultipointJson"
1795
+ },
1796
+ {
1797
+ "$ref": "#/definitions/esri.rest-api.GeometryJson.PolylineJson"
1798
+ },
1799
+ {
1800
+ "$ref": "#/definitions/esri.rest-api.GeometryJson.PolygonJson"
1801
+ },
1802
+ {
1803
+ "$ref": "#/definitions/esri.rest-api.GeometryJson.ExtentJson"
1804
+ }
1805
+ ],
1806
+ "description": "A geometry as defined in the ArcGIS REST and web map specifications.\n\nSee {@link http://resources.arcgis.com/en/help/rest/apiref/geometry.html}. See {@link https://developers.arcgis.com/web-map-specification/objects/geometry/} {@link https://developers.arcgis.com/web-map-specification/objects/geometryType/}."
410
1807
  },
411
- "GeometryJson": {
1808
+ "GeometryUnion": {
412
1809
  "anyOf": [
413
1810
  {
414
- "$ref": "#/definitions/esri.rest-api.GeometryJson.PointJson"
1811
+ "$ref": "#/definitions/@arcgis.core.geometry.Extent.Extent"
415
1812
  },
416
1813
  {
417
- "$ref": "#/definitions/esri.rest-api.GeometryJson.MultipointJson"
1814
+ "$ref": "#/definitions/@arcgis.core.geometry.Multipoint.Multipoint"
418
1815
  },
419
1816
  {
420
- "$ref": "#/definitions/esri.rest-api.GeometryJson.PolylineJson"
1817
+ "$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
421
1818
  },
422
1819
  {
423
- "$ref": "#/definitions/esri.rest-api.GeometryJson.PolygonJson"
1820
+ "$ref": "T_6"
424
1821
  },
425
1822
  {
426
- "$ref": "#/definitions/esri.rest-api.GeometryJson.ExtentJson"
1823
+ "$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
1824
+ },
1825
+ {
1826
+ "$ref": "#/definitions/@arcgis.core.geometry.Mesh.Mesh"
427
1827
  }
428
1828
  ],
429
- "description": "A geometry as defined in the ArcGIS REST and web map specifications.\n\nSee {@link http://resources.arcgis.com/en/help/rest/apiref/geometry.html}. See {@link https://developers.arcgis.com/web-map-specification/objects/geometry/} {@link https://developers.arcgis.com/web-map-specification/objects/geometryType/}."
1829
+ "description": "Union of all geometries."
430
1830
  },
431
1831
  "GnssDeviceConnectionInfo": {
432
1832
  "additionalProperties": false,
@@ -501,7 +1901,7 @@
501
1901
  "$ref": "#/definitions/@vertigis.arcgis-extensions.data._TableExtension.TableReference"
502
1902
  },
503
1903
  {
504
- "$ref": "#/definitions/esri.Layer"
1904
+ "$ref": "#/definitions/@arcgis.core.layers.Layer.Layer"
505
1905
  },
506
1906
  {
507
1907
  "$ref": "@vertigis.arcgis-extensions.mapping._LayerExtension.LayerExtension"
@@ -530,7 +1930,7 @@
530
1930
  "$ref": "#/definitions/@vertigis.arcgis-extensions.data._TableExtension.TableReference"
531
1931
  },
532
1932
  {
533
- "$ref": "#/definitions/esri.Layer"
1933
+ "$ref": "#/definitions/@arcgis.core.layers.Layer.Layer"
534
1934
  },
535
1935
  {
536
1936
  "$ref": "@vertigis.arcgis-extensions.mapping._LayerExtension.LayerExtension"
@@ -587,7 +1987,7 @@
587
1987
  "description": "Event args for the map.initialized event.",
588
1988
  "properties": {
589
1989
  "loadTime": {
590
- "$ref": "#/definitions/TimeSpan",
1990
+ "$ref": "TimeSpan",
591
1991
  "description": "The amount of time that the map took to load. Mobile only."
592
1992
  },
593
1993
  "mapExtension": {
@@ -618,6 +2018,39 @@
618
2018
  ],
619
2019
  "description": "One or map extensions."
620
2020
  },
2021
+ "NestableAttachmentInputUnion": {
2022
+ "anyOf": [
2023
+ {
2024
+ "$ref": "#/definitions/@arcgis.core.form.elements.inputs.attachments.AudioInput.AudioInput"
2025
+ },
2026
+ {
2027
+ "$ref": "#/definitions/@arcgis.core.form.elements.inputs.attachments.DocumentInput.DocumentInput"
2028
+ },
2029
+ {
2030
+ "$ref": "#/definitions/@arcgis.core.form.elements.inputs.attachments.ImageInput.ImageInput"
2031
+ },
2032
+ {
2033
+ "$ref": "#/definitions/@arcgis.core.form.elements.inputs.attachments.SignatureInput.SignatureInput"
2034
+ },
2035
+ {
2036
+ "$ref": "#/definitions/@arcgis.core.form.elements.inputs.attachments.VideoInput.VideoInput"
2037
+ }
2038
+ ]
2039
+ },
2040
+ "NestableFormElementUnion": {
2041
+ "anyOf": [
2042
+ {
2043
+ "$ref": "#/definitions/@arcgis.core.form.elements.FieldElement.FieldElement"
2044
+ },
2045
+ {
2046
+ "$ref": "#/definitions/@arcgis.core.form.elements.RelationshipElement.RelationshipElement"
2047
+ },
2048
+ {
2049
+ "$ref": "#/definitions/@arcgis.core.form.elements.TextElement.TextElement"
2050
+ }
2051
+ ],
2052
+ "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/)."
2053
+ },
621
2054
  "OperationalLayerJson": {
622
2055
  "anyOf": [
623
2056
  {
@@ -692,6 +2125,17 @@
692
2125
  ],
693
2126
  "description": "An operational layer in a web map/scene."
694
2127
  },
2128
+ "ParquetGeometryEncodingUnion": {
2129
+ "anyOf": [
2130
+ {
2131
+ "$ref": "#/definitions/@arcgis.core.layers.support.ParquetGeometryEncodingLocation.ParquetGeometryEncodingLocation"
2132
+ },
2133
+ {
2134
+ "$ref": "#/definitions/@arcgis.core.layers.support.ParquetGeometryEncodingWkb.ParquetGeometryEncodingWkb"
2135
+ }
2136
+ ],
2137
+ "description": "Supported Parquet geometry encoding types."
2138
+ },
695
2139
  "PointCloudFilterJson": {
696
2140
  "anyOf": [
697
2141
  {
@@ -706,6 +2150,17 @@
706
2150
  ],
707
2151
  "description": "Filters applied to the pointCloud which will hide a point.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/pointCloudFilter/}."
708
2152
  },
2153
+ "PopupPositionResult": {
2154
+ "enum": [
2155
+ "bottom-center",
2156
+ "bottom-left",
2157
+ "bottom-right",
2158
+ "top-center",
2159
+ "top-left",
2160
+ "top-right"
2161
+ ],
2162
+ "type": "string"
2163
+ },
709
2164
  "PortalType": {
710
2165
  "description": "The type of Portal.",
711
2166
  "enum": [
@@ -857,6 +2312,32 @@
857
2312
  ],
858
2313
  "description": "A renderer.\n\nPart of the ArcGIS REST API (see http://resources.arcgis.com/en/help/rest/apiref/renderer.html)."
859
2314
  },
2315
+ "RendererUnion": {
2316
+ "anyOf": [
2317
+ {
2318
+ "$ref": "#/definitions/@arcgis.core.renderers.SimpleRenderer.SimpleRenderer"
2319
+ },
2320
+ {
2321
+ "$ref": "#/definitions/@arcgis.core.renderers.ClassBreaksRenderer.ClassBreaksRenderer"
2322
+ },
2323
+ {
2324
+ "$ref": "#/definitions/@arcgis.core.renderers.UniqueValueRenderer.UniqueValueRenderer"
2325
+ },
2326
+ {
2327
+ "$ref": "#/definitions/@arcgis.core.renderers.DotDensityRenderer.DotDensityRenderer"
2328
+ },
2329
+ {
2330
+ "$ref": "#/definitions/@arcgis.core.renderers.DictionaryRenderer.DictionaryRenderer"
2331
+ },
2332
+ {
2333
+ "$ref": "#/definitions/@arcgis.core.renderers.PieChartRenderer.PieChartRenderer"
2334
+ },
2335
+ {
2336
+ "$ref": "#/definitions/@arcgis.core.renderers.HeatmapRenderer.HeatmapRenderer"
2337
+ }
2338
+ ],
2339
+ "description": "Union of renderers."
2340
+ },
860
2341
  "SignInCompletedEventArgs": {
861
2342
  "additionalProperties": false,
862
2343
  "description": "Arguments for the auth.sign-in-completed and auth.portal-sign-in-completed events. Only available in VertiGIS Studio Mobile.",
@@ -990,6 +2471,50 @@
990
2471
  ],
991
2472
  "description": "Symbol types used in web scenes."
992
2473
  },
2474
+ "SymbolUnion": {
2475
+ "anyOf": [
2476
+ {
2477
+ "$ref": "#/definitions/@arcgis.core.symbols.PictureFillSymbol.PictureFillSymbol"
2478
+ },
2479
+ {
2480
+ "$ref": "#/definitions/@arcgis.core.symbols.PictureMarkerSymbol.PictureMarkerSymbol"
2481
+ },
2482
+ {
2483
+ "$ref": "#/definitions/@arcgis.core.symbols.SimpleFillSymbol.SimpleFillSymbol"
2484
+ },
2485
+ {
2486
+ "$ref": "#/definitions/@arcgis.core.symbols.SimpleLineSymbol.SimpleLineSymbol"
2487
+ },
2488
+ {
2489
+ "$ref": "#/definitions/@arcgis.core.symbols.SimpleMarkerSymbol.SimpleMarkerSymbol"
2490
+ },
2491
+ {
2492
+ "$ref": "#/definitions/@arcgis.core.symbols.TextSymbol.TextSymbol"
2493
+ },
2494
+ {
2495
+ "$ref": "#/definitions/@arcgis.core.symbols.CIMSymbol.CIMSymbol"
2496
+ },
2497
+ {
2498
+ "$ref": "#/definitions/@arcgis.core.symbols.LabelSymbol3D.LabelSymbol3D"
2499
+ },
2500
+ {
2501
+ "$ref": "#/definitions/@arcgis.core.symbols.LineSymbol3D.LineSymbol3D"
2502
+ },
2503
+ {
2504
+ "$ref": "#/definitions/@arcgis.core.symbols.MeshSymbol3D.MeshSymbol3D"
2505
+ },
2506
+ {
2507
+ "$ref": "#/definitions/@arcgis.core.symbols.PointSymbol3D.PointSymbol3D"
2508
+ },
2509
+ {
2510
+ "$ref": "#/definitions/@arcgis.core.symbols.PolygonSymbol3D.PolygonSymbol3D"
2511
+ },
2512
+ {
2513
+ "$ref": "#/definitions/@arcgis.core.symbols.WebStyleSymbol.WebStyleSymbol"
2514
+ }
2515
+ ],
2516
+ "description": "Union of all symbols."
2517
+ },
993
2518
  "TimeSpan": {
994
2519
  "additionalProperties": false,
995
2520
  "description": "{@link https://learn.microsoft.com/en-us/dotnet/api/system.timespan?view=net-9.0}.",
@@ -1164,15 +2689,6 @@
1164
2689
  "edit.feature-updated:input": {
1165
2690
  "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
1166
2691
  },
1167
- "esri.Layer": {
1168
- "$ref": "esri/layers/Layer"
1169
- },
1170
- "esri.Point": {
1171
- "$ref": "esri/geometry/Point"
1172
- },
1173
- "esri.PortalItem": {
1174
- "$ref": "esri/portal/PortalItem"
1175
- },
1176
2692
  "esri.rest-api.AnnotationLayerJson.AnnotationLayerJson": {
1177
2693
  "additionalProperties": false,
1178
2694
  "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.",
@@ -1243,13 +2759,7 @@
1243
2759
  "type": "string"
1244
2760
  },
1245
2761
  "listMode": {
1246
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
1247
- "enum": [
1248
- "hide",
1249
- "hide-children",
1250
- "show"
1251
- ],
1252
- "type": "string"
2762
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
1253
2763
  },
1254
2764
  "maxScale": {
1255
2765
  "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.",
@@ -1602,13 +3112,7 @@
1602
3112
  "type": "string"
1603
3113
  },
1604
3114
  "listMode": {
1605
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
1606
- "enum": [
1607
- "hide",
1608
- "hide-children",
1609
- "show"
1610
- ],
1611
- "type": "string"
3115
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
1612
3116
  },
1613
3117
  "maxScale": {
1614
3118
  "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.",
@@ -1808,13 +3312,7 @@
1808
3312
  "description": "Additional properties that can define drawing information and a definition expression for the sublayer. See layerDefinition properties table."
1809
3313
  },
1810
3314
  "listMode": {
1811
- "description": "To show or hide the sublayer in the layer list. If property is present, must be one of the following values: show, hide.",
1812
- "enum": [
1813
- "hide",
1814
- "hide-children",
1815
- "show"
1816
- ],
1817
- "type": "string"
3315
+ "description": "To show or hide the sublayer in the layer list. If property is present, must be one of the following values: show, hide."
1818
3316
  },
1819
3317
  "opacity": {
1820
3318
  "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.",
@@ -1906,13 +3404,7 @@
1906
3404
  "type": "string"
1907
3405
  },
1908
3406
  "listMode": {
1909
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
1910
- "enum": [
1911
- "hide",
1912
- "hide-children",
1913
- "show"
1914
- ],
1915
- "type": "string"
3407
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
1916
3408
  },
1917
3409
  "locationInfo": {
1918
3410
  "$ref": "#/definitions/esri.rest-api.CSVLayerJson.LocationInfoJson",
@@ -2413,11 +3905,8 @@
2413
3905
  "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/}.",
2414
3906
  "properties": {
2415
3907
  "color": {
2416
- "description": "Color is represented as a three or four-element array.",
2417
- "items": {
2418
- "type": "number"
2419
- },
2420
- "type": "array"
3908
+ "$ref": "#/definitions/ColorJson",
3909
+ "description": "Color is represented as a three or four-element array."
2421
3910
  },
2422
3911
  "transparency": {
2423
3912
  "description": "The value has to lie between 100 (full transparency) and 0 (full opacity). Web scenes only.",
@@ -2737,13 +4226,7 @@
2737
4226
  "type": "string"
2738
4227
  },
2739
4228
  "listMode": {
2740
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
2741
- "enum": [
2742
- "hide",
2743
- "hide-children",
2744
- "show"
2745
- ],
2746
- "type": "string"
4229
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
2747
4230
  },
2748
4231
  "maxScale": {
2749
4232
  "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.",
@@ -3423,13 +4906,7 @@
3423
4906
  "type": "string"
3424
4907
  },
3425
4908
  "listMode": {
3426
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
3427
- "enum": [
3428
- "hide",
3429
- "hide-children",
3430
- "show"
3431
- ],
3432
- "type": "string"
4909
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
3433
4910
  },
3434
4911
  "maxScale": {
3435
4912
  "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.",
@@ -3568,13 +5045,7 @@
3568
5045
  "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."
3569
5046
  },
3570
5047
  "listMode": {
3571
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
3572
- "enum": [
3573
- "hide",
3574
- "hide-children",
3575
- "show"
3576
- ],
3577
- "type": "string"
5048
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
3578
5049
  },
3579
5050
  "maxScale": {
3580
5051
  "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.",
@@ -3835,7 +5306,7 @@
3835
5306
  "description": "Determines whether the camera is constrained to navigate only above, or also under the ground surface."
3836
5307
  },
3837
5308
  "surfaceColor": {
3838
- "$ref": "#/definitions/esri.rest-api.SymbolJson.ColorJson",
5309
+ "$ref": "#/definitions/ColorJson",
3839
5310
  "description": "Defines the color of the ground surface, displayed underneath the basemap. If no color, the default grid is shown."
3840
5311
  },
3841
5312
  "transparency": {
@@ -3907,13 +5378,7 @@
3907
5378
  "type": "array"
3908
5379
  },
3909
5380
  "listMode": {
3910
- "description": "To show or hide the group layer in the layer list. See {@link support /esri!ListMode}.",
3911
- "enum": [
3912
- "hide",
3913
- "hide-children",
3914
- "show"
3915
- ],
3916
- "type": "string"
5381
+ "description": "To show or hide the group layer in the layer list. See {@link support /esri!ListMode}."
3917
5382
  },
3918
5383
  "maxScale": {
3919
5384
  "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.",
@@ -4099,13 +5564,7 @@
4099
5564
  "type": "string"
4100
5565
  },
4101
5566
  "listMode": {
4102
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
4103
- "enum": [
4104
- "hide",
4105
- "hide-children",
4106
- "show"
4107
- ],
4108
- "type": "string"
5567
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
4109
5568
  },
4110
5569
  "maxScale": {
4111
5570
  "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.",
@@ -4317,13 +5776,7 @@
4317
5776
  "type": "string"
4318
5777
  },
4319
5778
  "listMode": {
4320
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
4321
- "enum": [
4322
- "hide",
4323
- "hide-children",
4324
- "show"
4325
- ],
4326
- "type": "string"
5779
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
4327
5780
  },
4328
5781
  "maxScale": {
4329
5782
  "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.",
@@ -4460,13 +5913,7 @@
4460
5913
  "type": "string"
4461
5914
  },
4462
5915
  "listMode": {
4463
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
4464
- "enum": [
4465
- "hide",
4466
- "hide-children",
4467
- "show"
4468
- ],
4469
- "type": "string"
5916
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
4470
5917
  },
4471
5918
  "maxScale": {
4472
5919
  "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.",
@@ -4822,13 +6269,7 @@
4822
6269
  "type": "string"
4823
6270
  },
4824
6271
  "listMode": {
4825
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
4826
- "enum": [
4827
- "hide",
4828
- "hide-children",
4829
- "show"
4830
- ],
4831
- "type": "string"
6272
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
4832
6273
  },
4833
6274
  "maxScale": {
4834
6275
  "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.",
@@ -5692,7 +7133,7 @@
5692
7133
  "type": "number"
5693
7134
  },
5694
7135
  "color": {
5695
- "$ref": "#/definitions/esri.rest-api.SymbolJson.ColorJson",
7136
+ "$ref": "#/definitions/ColorJson",
5696
7137
  "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."
5697
7138
  },
5698
7139
  "type": {
@@ -5923,13 +7364,7 @@
5923
7364
  "type": "array"
5924
7365
  },
5925
7366
  "listMode": {
5926
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
5927
- "enum": [
5928
- "hide",
5929
- "hide-children",
5930
- "show"
5931
- ],
5932
- "type": "string"
7367
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
5933
7368
  },
5934
7369
  "maxScale": {
5935
7370
  "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.",
@@ -6104,13 +7539,7 @@
6104
7539
  "type": "string"
6105
7540
  },
6106
7541
  "listMode": {
6107
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
6108
- "enum": [
6109
- "hide",
6110
- "hide-children",
6111
- "show"
6112
- ],
6113
- "type": "string"
7542
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
6114
7543
  },
6115
7544
  "maxScale": {
6116
7545
  "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.",
@@ -6451,13 +7880,7 @@
6451
7880
  "type": "string"
6452
7881
  },
6453
7882
  "listMode": {
6454
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
6455
- "enum": [
6456
- "hide",
6457
- "hide-children",
6458
- "show"
6459
- ],
6460
- "type": "string"
7883
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
6461
7884
  },
6462
7885
  "maxScale": {
6463
7886
  "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.",
@@ -6896,13 +8319,7 @@
6896
8319
  "type": "string"
6897
8320
  },
6898
8321
  "listMode": {
6899
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
6900
- "enum": [
6901
- "hide",
6902
- "hide-children",
6903
- "show"
6904
- ],
6905
- "type": "string"
8322
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
6906
8323
  },
6907
8324
  "maxScale": {
6908
8325
  "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.",
@@ -7141,7 +8558,7 @@
7141
8558
  "type": "number"
7142
8559
  },
7143
8560
  "color": {
7144
- "$ref": "#/definitions/esri.rest-api.SymbolJson.ColorJson",
8561
+ "$ref": "#/definitions/ColorJson",
7145
8562
  "description": "Color is represented as a three or four-element array."
7146
8563
  },
7147
8564
  "description": {
@@ -7162,11 +8579,7 @@
7162
8579
  "colors": {
7163
8580
  "description": "An array of colors that define the color ramp. Either colors or stops must be specified to construct the color ramp.",
7164
8581
  "items": {
7165
- "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/}.",
7166
- "items": {
7167
- "type": "number"
7168
- },
7169
- "type": "array"
8582
+ "$ref": "#/definitions/ColorJson"
7170
8583
  },
7171
8584
  "type": "array"
7172
8585
  },
@@ -7290,8 +8703,39 @@
7290
8703
  "color": {
7291
8704
  "anyOf": [
7292
8705
  {
7293
- "$ref": "#/definitions/esri.rest-api.SymbolJson.ColorJson",
7294
- "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/}."
8706
+ "items": [
8707
+ {
8708
+ "type": "number"
8709
+ },
8710
+ {
8711
+ "type": "number"
8712
+ },
8713
+ {
8714
+ "type": "number"
8715
+ },
8716
+ {
8717
+ "type": "number"
8718
+ }
8719
+ ],
8720
+ "maxItems": 4,
8721
+ "minItems": 4,
8722
+ "type": "array"
8723
+ },
8724
+ {
8725
+ "items": [
8726
+ {
8727
+ "type": "number"
8728
+ },
8729
+ {
8730
+ "type": "number"
8731
+ },
8732
+ {
8733
+ "type": "number"
8734
+ }
8735
+ ],
8736
+ "maxItems": 3,
8737
+ "minItems": 3,
8738
+ "type": "array"
7295
8739
  },
7296
8740
  {
7297
8741
  "type": "string"
@@ -7315,7 +8759,7 @@
7315
8759
  "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/}.",
7316
8760
  "properties": {
7317
8761
  "color": {
7318
- "$ref": "#/definitions/esri.rest-api.SymbolJson.ColorJson",
8762
+ "$ref": "#/definitions/ColorJson",
7319
8763
  "description": "Color is represented as a three or four-element array."
7320
8764
  },
7321
8765
  "description": {
@@ -8418,7 +9862,7 @@
8418
9862
  },
8419
9863
  "esri.rest-api.SceneLayerJson.SceneLayerJson": {
8420
9864
  "additionalProperties": false,
8421
- "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/}.",
9865
+ "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.",
8422
9866
  "properties": {
8423
9867
  "blendMode": {
8424
9868
  "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.",
@@ -8457,6 +9901,9 @@
8457
9901
  ],
8458
9902
  "type": "string"
8459
9903
  },
9904
+ "customParameters": {
9905
+ "description": "A sequence of custom parameters appended to the URL of all requests related to supporting ArcGIS layer types."
9906
+ },
8460
9907
  "disablePopup": {
8461
9908
  "description": "Indicates whether to allow a client to ignore popups defined by the service item.",
8462
9909
  "type": "boolean"
@@ -8469,6 +9916,10 @@
8469
9916
  "description": "A unique identifying string for the layer.",
8470
9917
  "type": "string"
8471
9918
  },
9919
+ "isReference": {
9920
+ "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).",
9921
+ "type": "boolean"
9922
+ },
8472
9923
  "itemId": {
8473
9924
  "description": "Optional string containing the item ID of the service if it's registered on ArcGIS Online or your organization's portal.",
8474
9925
  "type": "string"
@@ -8483,13 +9934,7 @@
8483
9934
  "type": "string"
8484
9935
  },
8485
9936
  "listMode": {
8486
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
8487
- "enum": [
8488
- "hide",
8489
- "hide-children",
8490
- "show"
8491
- ],
8492
- "type": "string"
9937
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
8493
9938
  },
8494
9939
  "maxScale": {
8495
9940
  "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.",
@@ -8691,13 +10136,7 @@
8691
10136
  "type": "string"
8692
10137
  },
8693
10138
  "listMode": {
8694
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
8695
- "enum": [
8696
- "hide",
8697
- "hide-children",
8698
- "show"
8699
- ],
8700
- "type": "string"
10139
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
8701
10140
  },
8702
10141
  "maxScale": {
8703
10142
  "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.",
@@ -8963,13 +10402,7 @@
8963
10402
  "type": "array"
8964
10403
  },
8965
10404
  "listMode": {
8966
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
8967
- "enum": [
8968
- "hide",
8969
- "hide-children",
8970
- "show"
8971
- ],
8972
- "type": "string"
10405
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
8973
10406
  },
8974
10407
  "maxScale": {
8975
10408
  "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.",
@@ -9111,13 +10544,7 @@
9111
10544
  "type": "string"
9112
10545
  },
9113
10546
  "listMode": {
9114
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
9115
- "enum": [
9116
- "hide",
9117
- "hide-children",
9118
- "show"
9119
- ],
9120
- "type": "string"
10547
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
9121
10548
  },
9122
10549
  "maxScale": {
9123
10550
  "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.",
@@ -9201,11 +10628,8 @@
9201
10628
  "description": "Optional border on the line that is used to improve the contrast of the line color against various background colors.",
9202
10629
  "properties": {
9203
10630
  "color": {
9204
- "description": "The color of the border.",
9205
- "items": {
9206
- "type": "number"
9207
- },
9208
- "type": "array"
10631
+ "$ref": "#/definitions/ColorJson",
10632
+ "description": "The color of the border."
9209
10633
  },
9210
10634
  "transparency": {
9211
10635
  "description": "A value between 100 (full transparency) and 0 (full opacity).",
@@ -9234,17 +10658,6 @@
9234
10658
  "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/}.",
9235
10659
  "properties": {
9236
10660
  "symbol": {
9237
- "anyOf": [
9238
- {
9239
- "$ref": "esri.CIMLineSymbol"
9240
- },
9241
- {
9242
- "$ref": "esri.CIMPointSymbol"
9243
- },
9244
- {
9245
- "$ref": "esri.CIMPolygonSymbol"
9246
- }
9247
- ],
9248
10661
  "description": "The symbol. Supported values are CIMPointSymbol, CIMLineSymbol, and CIMPolygonSymbol."
9249
10662
  },
9250
10663
  "type": {
@@ -9267,11 +10680,8 @@
9267
10680
  "description": "Optional border on the line that is used to improve the contrast of the line color against various background colors."
9268
10681
  },
9269
10682
  "color": {
9270
- "description": "The color of the line.",
9271
- "items": {
9272
- "type": "number"
9273
- },
9274
- "type": "array"
10683
+ "$ref": "#/definitions/ColorJson",
10684
+ "description": "The color of the line."
9275
10685
  },
9276
10686
  "size": {
9277
10687
  "description": "The width of the line in points.",
@@ -9292,13 +10702,6 @@
9292
10702
  ],
9293
10703
  "type": "object"
9294
10704
  },
9295
- "esri.rest-api.SymbolJson.ColorJson": {
9296
- "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/}.",
9297
- "items": {
9298
- "type": "number"
9299
- },
9300
- "type": "array"
9301
- },
9302
10705
  "esri.rest-api.SymbolJson.ExtrudeSymbol3DLayerJson": {
9303
10706
  "additionalProperties": false,
9304
10707
  "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/}.",
@@ -9547,11 +10950,8 @@
9547
10950
  "description": "The material used to shade the geometry.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/material/}.",
9548
10951
  "properties": {
9549
10952
  "color": {
9550
- "description": "Color is represented as a three or four-element array.",
9551
- "items": {
9552
- "type": "number"
9553
- },
9554
- "type": "array"
10953
+ "$ref": "#/definitions/ColorJson",
10954
+ "description": "Color is represented as a three or four-element array."
9555
10955
  },
9556
10956
  "colorMixMode": {
9557
10957
  "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.",
@@ -9666,11 +11066,8 @@
9666
11066
  "description": "The outline of the point, line or polygon.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/outline/}.",
9667
11067
  "properties": {
9668
11068
  "color": {
9669
- "description": "Color is represented as a three or four-element array.",
9670
- "items": {
9671
- "type": "number"
9672
- },
9673
- "type": "array"
11069
+ "$ref": "#/definitions/ColorJson",
11070
+ "description": "Color is represented as a three or four-element array."
9674
11071
  },
9675
11072
  "size": {
9676
11073
  "description": "Outline size in points, positive only.",
@@ -9930,11 +11327,8 @@
9930
11327
  "description": "Simple fill symbols can be used to symbolize polygon geometries.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/esriSFS_symbol/}.",
9931
11328
  "properties": {
9932
11329
  "color": {
9933
- "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.",
9934
- "items": {
9935
- "type": "number"
9936
- },
9937
- "type": "array"
11330
+ "$ref": "#/definitions/ColorJson",
11331
+ "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."
9938
11332
  },
9939
11333
  "outline": {
9940
11334
  "$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleLineSymbolJson",
@@ -9970,11 +11364,8 @@
9970
11364
  "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/}.",
9971
11365
  "properties": {
9972
11366
  "color": {
9973
- "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.",
9974
- "items": {
9975
- "type": "number"
9976
- },
9977
- "type": "array"
11367
+ "$ref": "#/definitions/ColorJson",
11368
+ "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."
9978
11369
  },
9979
11370
  "style": {
9980
11371
  "description": "The line style.",
@@ -10012,11 +11403,8 @@
10012
11403
  "type": "number"
10013
11404
  },
10014
11405
  "color": {
10015
- "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.",
10016
- "items": {
10017
- "type": "number"
10018
- },
10019
- "type": "array"
11406
+ "$ref": "#/definitions/ColorJson",
11407
+ "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."
10020
11408
  },
10021
11409
  "outline": {
10022
11410
  "$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleLineSymbolJson",
@@ -10239,40 +11627,28 @@
10239
11627
  "type": "number"
10240
11628
  },
10241
11629
  "backgroundColor": {
10242
- "description": "Background color of the text.",
10243
- "items": {
10244
- "type": "number"
10245
- },
10246
- "type": "array"
11630
+ "$ref": "#/definitions/ColorJson",
11631
+ "description": "Background color of the text."
10247
11632
  },
10248
11633
  "borderLineColor": {
10249
- "description": "Value indicating the the color of the border line.",
10250
- "items": {
10251
- "type": "number"
10252
- },
10253
- "type": "array"
11634
+ "$ref": "#/definitions/ColorJson",
11635
+ "description": "Value indicating the the color of the border line."
10254
11636
  },
10255
11637
  "borderLineSize": {
10256
11638
  "description": "Numeric value indicating the the size of the border line in points.",
10257
11639
  "type": "number"
10258
11640
  },
10259
11641
  "color": {
10260
- "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.",
10261
- "items": {
10262
- "type": "number"
10263
- },
10264
- "type": "array"
11642
+ "$ref": "#/definitions/ColorJson",
11643
+ "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."
10265
11644
  },
10266
11645
  "font": {
10267
11646
  "$ref": "#/definitions/esri.rest-api.SymbolJson.FontJson",
10268
11647
  "description": "Font used for text symbols."
10269
11648
  },
10270
11649
  "haloColor": {
10271
- "description": "Color of the halo around the text.",
10272
- "items": {
10273
- "type": "number"
10274
- },
10275
- "type": "array"
11650
+ "$ref": "#/definitions/ColorJson",
11651
+ "description": "Color of the halo around the text."
10276
11652
  },
10277
11653
  "haloSize": {
10278
11654
  "description": "Numeric value indicating the point size of a halo around the text symbol.",
@@ -10510,13 +11886,7 @@
10510
11886
  "type": "string"
10511
11887
  },
10512
11888
  "listMode": {
10513
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
10514
- "enum": [
10515
- "hide",
10516
- "hide-children",
10517
- "show"
10518
- ],
10519
- "type": "string"
11889
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
10520
11890
  },
10521
11891
  "maxScale": {
10522
11892
  "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.",
@@ -10654,13 +12024,7 @@
10654
12024
  "type": "string"
10655
12025
  },
10656
12026
  "listMode": {
10657
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
10658
- "enum": [
10659
- "hide",
10660
- "hide-children",
10661
- "show"
10662
- ],
10663
- "type": "string"
12027
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
10664
12028
  },
10665
12029
  "maxScale": {
10666
12030
  "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.",
@@ -10812,13 +12176,7 @@
10812
12176
  "type": "array"
10813
12177
  },
10814
12178
  "listMode": {
10815
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
10816
- "enum": [
10817
- "hide",
10818
- "hide-children",
10819
- "show"
10820
- ],
10821
- "type": "string"
12179
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
10822
12180
  },
10823
12181
  "maxScale": {
10824
12182
  "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.",
@@ -10984,13 +12342,7 @@
10984
12342
  "type": "string"
10985
12343
  },
10986
12344
  "listMode": {
10987
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
10988
- "enum": [
10989
- "hide",
10990
- "hide-children",
10991
- "show"
10992
- ],
10993
- "type": "string"
12345
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
10994
12346
  },
10995
12347
  "maxScale": {
10996
12348
  "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.",
@@ -11215,13 +12567,7 @@
11215
12567
  "type": "string"
11216
12568
  },
11217
12569
  "listMode": {
11218
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
11219
- "enum": [
11220
- "hide",
11221
- "hide-children",
11222
- "show"
11223
- ],
11224
- "type": "string"
12570
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
11225
12571
  },
11226
12572
  "maxScale": {
11227
12573
  "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.",
@@ -11419,13 +12765,7 @@
11419
12765
  "type": "string"
11420
12766
  },
11421
12767
  "listMode": {
11422
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
11423
- "enum": [
11424
- "hide",
11425
- "hide-children",
11426
- "show"
11427
- ],
11428
- "type": "string"
12768
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
11429
12769
  },
11430
12770
  "mapUrl": {
11431
12771
  "description": "The URL of the WMS map. You should also supply the url property, which is the URL of the WMS capabilities document.",
@@ -12346,13 +13686,7 @@
12346
13686
  "type": "string"
12347
13687
  },
12348
13688
  "listMode": {
12349
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
12350
- "enum": [
12351
- "hide",
12352
- "hide-children",
12353
- "show"
12354
- ],
12355
- "type": "string"
13689
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
12356
13690
  },
12357
13691
  "maxScale": {
12358
13692
  "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.",
@@ -12492,7 +13826,7 @@
12492
13826
  ]
12493
13827
  },
12494
13828
  "geolocation.position-changed:input": {
12495
- "$ref": "#/definitions/esri.Point"
13829
+ "$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
12496
13830
  },
12497
13831
  "geolocation.position-lost": {
12498
13832
  "description": "Raised when geolocation is disabled, either through signal loss or being turned off, and a user position is not available.",