@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,72 +1,1124 @@
1
1
  {
2
2
  "$ref": "#/definitions/viewer-spec.Action",
3
3
  "definitions": {
4
- "@arcgis.core.unionTypes.GeometryUnion": {
4
+ "@arcgis.core.Color.Color": {
5
+ "$ref": "esri.Color"
6
+ },
7
+ "@arcgis.core.Graphic.Graphic": {
8
+ "$ref": "esri.Graphic"
9
+ },
10
+ "@arcgis.core.PopupTemplate.PopupTemplate": {
11
+ "$ref": "esri.PopupTemplate"
12
+ },
13
+ "@arcgis.core.Viewpoint.Viewpoint": {
14
+ "$ref": "esri.Viewpoint"
15
+ },
16
+ "@arcgis.core.analysis.Analysis.Analysis": {
17
+ "$ref": "esri.analysis.Analysis"
18
+ },
19
+ "@arcgis.core.analysis.ElevationProfile.ElevationProfileLineGround.ElevationProfileLineGround": {
20
+ "$ref": "esri.analysis.ElevationProfile.ElevationProfileLineGround"
21
+ },
22
+ "@arcgis.core.analysis.ElevationProfile.ElevationProfileLineInput.ElevationProfileLineInput": {
23
+ "$ref": "esri.analysis.ElevationProfile.ElevationProfileLineInput"
24
+ },
25
+ "@arcgis.core.analysis.ElevationProfile.ElevationProfileLineQuery.ElevationProfileLineQuery": {
26
+ "$ref": "esri.analysis.ElevationProfile.ElevationProfileLineQuery"
27
+ },
28
+ "@arcgis.core.analysis.ElevationProfile.ElevationProfileLineScene.ElevationProfileLineScene": {
29
+ "$ref": "esri.analysis.ElevationProfile.ElevationProfileLineScene"
30
+ },
31
+ "@arcgis.core.analysis.ElevationProfile.types.ElevationProfileLineUnion": {
32
+ "$ref": "esri.analysis.ElevationProfile.types"
33
+ },
34
+ "@arcgis.core.analysis.VolumeMeasurement.types.VolumeMeasureType": {
35
+ "$ref": "esri.analysis.VolumeMeasurement.types"
36
+ },
37
+ "@arcgis.core.core.Collection.CollectionAfterEvent": {
38
+ "properties": {},
39
+ "type": "object"
40
+ },
41
+ "@arcgis.core.core.Collection.CollectionAfterItemEvent": {
42
+ "additionalProperties": false,
43
+ "properties": {
44
+ "item": {
45
+ "$ref": "T",
46
+ "description": "The item to add or remove from the collection."
47
+ }
48
+ },
49
+ "required": [
50
+ "item"
51
+ ],
52
+ "type": "object"
53
+ },
54
+ "@arcgis.core.core.Collection.CollectionChangeEvent": {
55
+ "additionalProperties": false,
56
+ "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.",
57
+ "properties": {
58
+ "added": {
59
+ "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).",
60
+ "items": {
61
+ "$ref": "#/definitions/@arcgis.core.layers.Layer.Layer"
62
+ },
63
+ "type": "array"
64
+ },
65
+ "moved": {
66
+ "description": "An array of items that moved in the collection using [reorder()](https://developers.arcgis.com/javascript/latest/references/core/core/Collection/#reorder).",
67
+ "items": {
68
+ "$ref": "#/definitions/@arcgis.core.layers.Layer.Layer"
69
+ },
70
+ "type": "array"
71
+ },
72
+ "removed": {
73
+ "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).",
74
+ "items": {
75
+ "$ref": "#/definitions/@arcgis.core.layers.Layer.Layer"
76
+ },
77
+ "type": "array"
78
+ }
79
+ },
80
+ "required": [
81
+ "added",
82
+ "moved",
83
+ "removed"
84
+ ],
85
+ "type": "object"
86
+ },
87
+ "@arcgis.core.core.Error.Error": {
88
+ "$ref": "esri.core.Error"
89
+ },
90
+ "@arcgis.core.core.quantity.Area": {
91
+ "$ref": "esri.core.quantity"
92
+ },
93
+ "@arcgis.core.core.quantity.Length": {
94
+ "$ref": "esri.core.quantity"
95
+ },
96
+ "@arcgis.core.core.quantity.Volume": {
97
+ "$ref": "esri.core.quantity"
98
+ },
99
+ "@arcgis.core.editing.types.EditedFeatureResult": {
100
+ "$ref": "esri.editing.types"
101
+ },
102
+ "@arcgis.core.editing.types.EditedFeatures": {
103
+ "$ref": "esri.editing.types"
104
+ },
105
+ "@arcgis.core.editing.types.EditsResultEvent": {
106
+ "additionalProperties": false,
107
+ "properties": {
108
+ "addedAttachments": {
109
+ "description": "An array of successfully added attachments.",
110
+ "items": {
111
+ "$ref": "#/definitions/@arcgis.core.editing.types.FeatureEditResult"
112
+ },
113
+ "type": "array"
114
+ },
115
+ "addedFeatures": {
116
+ "description": "An array of successfully added features.",
117
+ "items": {
118
+ "$ref": "#/definitions/@arcgis.core.editing.types.FeatureEditResult"
119
+ },
120
+ "type": "array"
121
+ },
122
+ "deletedAttachments": {
123
+ "description": "An array of successfully deleted attachments.",
124
+ "items": {
125
+ "$ref": "#/definitions/@arcgis.core.editing.types.FeatureEditResult"
126
+ },
127
+ "type": "array"
128
+ },
129
+ "deletedFeatures": {
130
+ "description": "An array of successfully deleted features.",
131
+ "items": {
132
+ "$ref": "#/definitions/@arcgis.core.editing.types.FeatureEditResult"
133
+ },
134
+ "type": "array"
135
+ },
136
+ "editedFeatures": {
137
+ "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.",
138
+ "items": {
139
+ "$ref": "#/definitions/@arcgis.core.editing.types.EditedFeatureResult"
140
+ },
141
+ "type": "array"
142
+ },
143
+ "exceededTransferLimit": {
144
+ "description": "Returns `true` when the number of records returned exceeds the maximum number configured on the service.",
145
+ "type": "boolean"
146
+ },
147
+ "updatedAttachments": {
148
+ "description": "An array of successfully updated attachments.",
149
+ "items": {
150
+ "$ref": "#/definitions/@arcgis.core.editing.types.FeatureEditResult"
151
+ },
152
+ "type": "array"
153
+ },
154
+ "updatedFeatures": {
155
+ "description": "An array of successfully updated features.",
156
+ "items": {
157
+ "$ref": "#/definitions/@arcgis.core.editing.types.FeatureEditResult"
158
+ },
159
+ "type": "array"
160
+ }
161
+ },
162
+ "required": [
163
+ "addedAttachments",
164
+ "addedFeatures",
165
+ "deletedAttachments",
166
+ "deletedFeatures",
167
+ "exceededTransferLimit",
168
+ "updatedAttachments",
169
+ "updatedFeatures"
170
+ ],
171
+ "type": "object"
172
+ },
173
+ "@arcgis.core.editing.types.FeatureEditResult": {
174
+ "$ref": "esri.editing.types"
175
+ },
176
+ "@arcgis.core.form.elements.AttachmentElement.AttachmentElement": {
177
+ "$ref": "esri.form.elements.AttachmentElement"
178
+ },
179
+ "@arcgis.core.form.elements.FieldElement.FieldElement": {
180
+ "$ref": "esri.form.elements.FieldElement"
181
+ },
182
+ "@arcgis.core.form.elements.GroupElement.GroupElement": {
183
+ "$ref": "esri.form.elements.GroupElement"
184
+ },
185
+ "@arcgis.core.form.elements.RelationshipElement.RelationshipElement": {
186
+ "$ref": "esri.form.elements.RelationshipElement"
187
+ },
188
+ "@arcgis.core.form.elements.TextElement.TextElement": {
189
+ "$ref": "esri.form.elements.TextElement"
190
+ },
191
+ "@arcgis.core.form.elements.UtilityNetworkAssociationsElement.UtilityNetworkAssociationsElement": {
192
+ "$ref": "esri.form.elements.UtilityNetworkAssociationsElement"
193
+ },
194
+ "@arcgis.core.form.elements.inputs.attachments.AttachmentInput.AttachmentInput": {
195
+ "$ref": "esri.form.elements.inputs.attachments.AttachmentInput"
196
+ },
197
+ "@arcgis.core.form.elements.inputs.attachments.AudioInput.AudioInput": {
198
+ "$ref": "esri.form.elements.inputs.attachments.AudioInput"
199
+ },
200
+ "@arcgis.core.form.elements.inputs.attachments.DocumentInput.DocumentInput": {
201
+ "$ref": "esri.form.elements.inputs.attachments.DocumentInput"
202
+ },
203
+ "@arcgis.core.form.elements.inputs.attachments.ImageInput.ImageInput": {
204
+ "$ref": "esri.form.elements.inputs.attachments.ImageInput"
205
+ },
206
+ "@arcgis.core.form.elements.inputs.attachments.SignatureInput.SignatureInput": {
207
+ "$ref": "esri.form.elements.inputs.attachments.SignatureInput"
208
+ },
209
+ "@arcgis.core.form.elements.inputs.attachments.VideoInput.VideoInput": {
210
+ "$ref": "esri.form.elements.inputs.attachments.VideoInput"
211
+ },
212
+ "@arcgis.core.geometry.Extent.Extent": {
213
+ "$ref": "esri.geometry.Extent"
214
+ },
215
+ "@arcgis.core.geometry.Geometry.Geometry": {
216
+ "$ref": "esri.geometry.Geometry"
217
+ },
218
+ "@arcgis.core.geometry.Mesh.Mesh": {
219
+ "$ref": "esri.geometry.Mesh"
220
+ },
221
+ "@arcgis.core.geometry.Multipoint.Multipoint": {
222
+ "$ref": "esri.geometry.Multipoint"
223
+ },
224
+ "@arcgis.core.geometry.Point.Point": {
225
+ "$ref": "esri.geometry.Point"
226
+ },
227
+ "@arcgis.core.geometry.Polyline.Polyline": {
228
+ "$ref": "esri.geometry.Polyline"
229
+ },
230
+ "@arcgis.core.geometry.SpatialReference.SpatialReference": {
231
+ "$ref": "esri.geometry.SpatialReference"
232
+ },
233
+ "@arcgis.core.geometry.support.MeshGeoreferencedVertexSpace.MeshGeoreferencedVertexSpace": {
234
+ "$ref": "esri.geometry.support.MeshGeoreferencedVertexSpace"
235
+ },
236
+ "@arcgis.core.geometry.support.MeshLocalVertexSpace.MeshLocalVertexSpace": {
237
+ "$ref": "esri.geometry.support.MeshLocalVertexSpace"
238
+ },
239
+ "@arcgis.core.geometry.types.MeshVertexSpaceUnion": {
5
240
  "anyOf": [
6
241
  {
7
- "$ref": "#/definitions/esri.Extent"
242
+ "$ref": "#/definitions/@arcgis.core.geometry.support.MeshLocalVertexSpace.MeshLocalVertexSpace"
8
243
  },
9
244
  {
10
- "$ref": "#/definitions/esri.Multipoint"
245
+ "$ref": "#/definitions/@arcgis.core.geometry.support.MeshGeoreferencedVertexSpace.MeshGeoreferencedVertexSpace"
246
+ }
247
+ ]
248
+ },
249
+ "@arcgis.core.layers.BaseElevationLayer.BaseElevationLayer": {
250
+ "$ref": "esri.layers.BaseElevationLayer"
251
+ },
252
+ "@arcgis.core.layers.ElevationLayer.ElevationLayer": {
253
+ "$ref": "esri.layers.ElevationLayer"
254
+ },
255
+ "@arcgis.core.layers.Layer.Layer": {
256
+ "$ref": "esri.layers.Layer"
257
+ },
258
+ "@arcgis.core.layers.Layer.LayerLayerviewCreateErrorEvent": {
259
+ "additionalProperties": false,
260
+ "properties": {
261
+ "error": {
262
+ "$ref": "#/definitions/Error",
263
+ "description": "An error object describing why the layer view failed to create."
264
+ },
265
+ "view": {
266
+ "$ref": "#/definitions/@arcgis.core.views.View.View",
267
+ "description": "The view that failed to create a layerview for the layer emitting this event."
268
+ }
269
+ },
270
+ "required": [
271
+ "error",
272
+ "view"
273
+ ],
274
+ "type": "object"
275
+ },
276
+ "@arcgis.core.layers.Layer.LayerLayerviewCreateEvent": {
277
+ "additionalProperties": false,
278
+ "properties": {
279
+ "layerView": {
280
+ "$ref": "#/definitions/@arcgis.core.views.layers.LayerView.LayerView",
281
+ "description": "The LayerView rendered in the view representing the layer in `layer`."
282
+ },
283
+ "view": {
284
+ "$ref": "#/definitions/@arcgis.core.views.View.View",
285
+ "description": "The view in which the `layerView` was created."
286
+ }
287
+ },
288
+ "required": [
289
+ "layerView",
290
+ "view"
291
+ ],
292
+ "type": "object"
293
+ },
294
+ "@arcgis.core.layers.Layer.LayerLayerviewDestroyEvent": {
295
+ "additionalProperties": false,
296
+ "properties": {
297
+ "layerView": {
298
+ "$ref": "#/definitions/@arcgis.core.views.layers.LayerView.LayerView",
299
+ "description": "The destroyed LayerView representing the layer."
300
+ },
301
+ "view": {
302
+ "$ref": "#/definitions/@arcgis.core.views.View.View",
303
+ "description": "The view in which the `layerView` was destroyed."
304
+ }
305
+ },
306
+ "required": [
307
+ "layerView",
308
+ "view"
309
+ ],
310
+ "type": "object"
311
+ },
312
+ "@arcgis.core.layers.LinkChartLayer.InitializationLinkChartConfig": {
313
+ "additionalProperties": false,
314
+ "description": "Defines the initial layout for the link chart and any layout settings for newly created link chart layers.",
315
+ "properties": {
316
+ "doNotRecalculateLayout": {
317
+ "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.",
318
+ "type": "boolean"
319
+ },
320
+ "layoutMode": {
321
+ "$ref": "#/definitions/@arcgis.core.layers.knowledgeGraph.types.LayoutMode",
322
+ "description": "The layout mode to be applied by default. The system default is `organic-standard`."
323
+ },
324
+ "layoutSettings": {
325
+ "$ref": "#/definitions/@arcgis.core.linkChart.LayoutSettings.LayoutSettings",
326
+ "description": "Additional layout options for the default layout configuration."
327
+ }
328
+ },
329
+ "type": "object"
330
+ },
331
+ "@arcgis.core.layers.buildingSublayers.BuildingComponentSublayer.BuildingComponentSublayer": {
332
+ "$ref": "esri.layers.buildingSublayers.BuildingComponentSublayer"
333
+ },
334
+ "@arcgis.core.layers.buildingSublayers.BuildingGroupSublayer.BuildingGroupSublayer": {
335
+ "$ref": "esri.layers.buildingSublayers.BuildingGroupSublayer"
336
+ },
337
+ "@arcgis.core.layers.knowledgeGraph.types.LayoutMode": {
338
+ "$ref": "esri.layers.knowledgeGraph.types"
339
+ },
340
+ "@arcgis.core.layers.mixins.RefreshableLayer.RefreshEvent": {
341
+ "additionalProperties": false,
342
+ "properties": {
343
+ "dataChanged": {
344
+ "description": "Indicates if the layer's data has changed.",
345
+ "type": "boolean"
346
+ }
347
+ },
348
+ "type": "object"
349
+ },
350
+ "@arcgis.core.layers.support.CodedValueDomain.CodedValueDomain": {
351
+ "$ref": "esri.layers.support.CodedValueDomain"
352
+ },
353
+ "@arcgis.core.layers.support.DateTimeFieldFormat.DateTimeFieldFormat": {
354
+ "$ref": "esri.layers.support.DateTimeFieldFormat"
355
+ },
356
+ "@arcgis.core.layers.support.FeatureReductionBinning.FeatureReductionBinning": {
357
+ "$ref": "esri.layers.support.FeatureReductionBinning"
358
+ },
359
+ "@arcgis.core.layers.support.FeatureReductionCluster.FeatureReductionCluster": {
360
+ "$ref": "esri.layers.support.FeatureReductionCluster"
361
+ },
362
+ "@arcgis.core.layers.support.FeatureReductionSelection.FeatureReductionSelection": {
363
+ "$ref": "esri.layers.support.FeatureReductionSelection"
364
+ },
365
+ "@arcgis.core.layers.support.FeatureType.FeatureType": {
366
+ "$ref": "esri.layers.support.FeatureType"
367
+ },
368
+ "@arcgis.core.layers.support.InheritedDomain.InheritedDomain": {
369
+ "$ref": "esri.layers.support.InheritedDomain"
370
+ },
371
+ "@arcgis.core.layers.support.NumberFieldFormat.NumberFieldFormat": {
372
+ "$ref": "esri.layers.support.NumberFieldFormat"
373
+ },
374
+ "@arcgis.core.layers.support.ParquetGeometryEncodingLocation.ParquetGeometryEncodingLocation": {
375
+ "$ref": "esri.layers.support.ParquetGeometryEncodingLocation"
376
+ },
377
+ "@arcgis.core.layers.support.ParquetGeometryEncodingWkb.ParquetGeometryEncodingWkb": {
378
+ "$ref": "esri.layers.support.ParquetGeometryEncodingWkb"
379
+ },
380
+ "@arcgis.core.layers.support.RangeDomain.RangeDomain": {
381
+ "$ref": "esri.layers.support.RangeDomain"
382
+ },
383
+ "@arcgis.core.linkChart.LayoutSettings.LayoutSettings": {
384
+ "$ref": "esri.linkChart.LayoutSettings"
385
+ },
386
+ "@arcgis.core.popup.content.Content.Content": {
387
+ "$ref": "esri.popup.content.Content"
388
+ },
389
+ "@arcgis.core.portal.PortalItem.PortalItem": {
390
+ "$ref": "esri.portal.PortalItem"
391
+ },
392
+ "@arcgis.core.renderers.ClassBreaksRenderer.ClassBreaksRenderer": {
393
+ "$ref": "esri.renderers.ClassBreaksRenderer"
394
+ },
395
+ "@arcgis.core.renderers.DictionaryRenderer.DictionaryRenderer": {
396
+ "$ref": "esri.renderers.DictionaryRenderer"
397
+ },
398
+ "@arcgis.core.renderers.DotDensityRenderer.DotDensityRenderer": {
399
+ "$ref": "esri.renderers.DotDensityRenderer"
400
+ },
401
+ "@arcgis.core.renderers.HeatmapRenderer.HeatmapRenderer": {
402
+ "$ref": "esri.renderers.HeatmapRenderer"
403
+ },
404
+ "@arcgis.core.renderers.PieChartRenderer.PieChartRenderer": {
405
+ "$ref": "esri.renderers.PieChartRenderer"
406
+ },
407
+ "@arcgis.core.renderers.SimpleRenderer.SimpleRenderer": {
408
+ "$ref": "esri.renderers.SimpleRenderer"
409
+ },
410
+ "@arcgis.core.renderers.UniqueValueRenderer.UniqueValueRenderer": {
411
+ "$ref": "esri.renderers.UniqueValueRenderer"
412
+ },
413
+ "@arcgis.core.renderers.types.RendererUnion": {
414
+ "anyOf": [
415
+ {
416
+ "$ref": "#/definitions/@arcgis.core.renderers.SimpleRenderer.SimpleRenderer"
417
+ },
418
+ {
419
+ "$ref": "#/definitions/@arcgis.core.renderers.ClassBreaksRenderer.ClassBreaksRenderer"
420
+ },
421
+ {
422
+ "$ref": "#/definitions/@arcgis.core.renderers.UniqueValueRenderer.UniqueValueRenderer"
11
423
  },
12
424
  {
13
- "$ref": "#/definitions/esri.Point"
425
+ "$ref": "#/definitions/@arcgis.core.renderers.DotDensityRenderer.DotDensityRenderer"
14
426
  },
15
427
  {
16
- "$ref": "#/definitions/esri.Polygon"
428
+ "$ref": "#/definitions/@arcgis.core.renderers.DictionaryRenderer.DictionaryRenderer"
17
429
  },
18
430
  {
19
- "$ref": "#/definitions/esri.Polyline"
431
+ "$ref": "#/definitions/@arcgis.core.renderers.PieChartRenderer.PieChartRenderer"
20
432
  },
21
433
  {
22
- "$ref": "#/definitions/esri.Mesh"
434
+ "$ref": "#/definitions/@arcgis.core.renderers.HeatmapRenderer.HeatmapRenderer"
23
435
  }
24
436
  ],
25
- "description": "Union of all geometries.\n\n{@link https://developers.arcgis.com/javascript/latest/api-reference/esri-unionTypes.html#GeometryUnion Read more...}"
437
+ "description": "Union of renderers."
26
438
  },
27
- "@arcgis.core.unionTypes.SymbolUnion": {
439
+ "@arcgis.core.rest.support.FeatureSet.FeatureSet": {
440
+ "$ref": "esri.rest.support.FeatureSet"
441
+ },
442
+ "@arcgis.core.symbols.CIMSymbol.CIMSymbol": {
443
+ "$ref": "esri.symbols.CIMSymbol"
444
+ },
445
+ "@arcgis.core.symbols.LabelSymbol3D.LabelSymbol3D": {
446
+ "$ref": "esri.symbols.LabelSymbol3D"
447
+ },
448
+ "@arcgis.core.symbols.LineSymbol3D.LineSymbol3D": {
449
+ "$ref": "esri.symbols.LineSymbol3D"
450
+ },
451
+ "@arcgis.core.symbols.MeshSymbol3D.MeshSymbol3D": {
452
+ "$ref": "esri.symbols.MeshSymbol3D"
453
+ },
454
+ "@arcgis.core.symbols.PictureFillSymbol.PictureFillSymbol": {
455
+ "$ref": "esri.symbols.PictureFillSymbol"
456
+ },
457
+ "@arcgis.core.symbols.PictureMarkerSymbol.PictureMarkerSymbol": {
458
+ "$ref": "esri.symbols.PictureMarkerSymbol"
459
+ },
460
+ "@arcgis.core.symbols.PointSymbol3D.PointSymbol3D": {
461
+ "$ref": "esri.symbols.PointSymbol3D"
462
+ },
463
+ "@arcgis.core.symbols.PolygonSymbol3D.PolygonSymbol3D": {
464
+ "$ref": "esri.symbols.PolygonSymbol3D"
465
+ },
466
+ "@arcgis.core.symbols.SimpleFillSymbol.SimpleFillSymbol": {
467
+ "$ref": "esri.symbols.SimpleFillSymbol"
468
+ },
469
+ "@arcgis.core.symbols.SimpleLineSymbol.SimpleLineSymbol": {
470
+ "$ref": "esri.symbols.SimpleLineSymbol"
471
+ },
472
+ "@arcgis.core.symbols.SimpleMarkerSymbol.SimpleMarkerSymbol": {
473
+ "$ref": "esri.symbols.SimpleMarkerSymbol"
474
+ },
475
+ "@arcgis.core.symbols.TextSymbol.TextSymbol": {
476
+ "$ref": "esri.symbols.TextSymbol"
477
+ },
478
+ "@arcgis.core.symbols.WebStyleSymbol.WebStyleSymbol": {
479
+ "$ref": "esri.symbols.WebStyleSymbol"
480
+ },
481
+ "@arcgis.core.symbols.cim.types.CIMAnimatedSymbolEasingType": {
482
+ "$ref": "esri.symbols.cim.types"
483
+ },
484
+ "@arcgis.core.symbols.cim.types.CIMAnimatedSymbolProperties": {
485
+ "additionalProperties": false,
486
+ "description": "Represents animated symbol properties, a collection of symbol properties that apply when the symbol layer has animation data.",
487
+ "properties": {
488
+ "duration": {
489
+ "description": "The time (in seconds) it take to play through the symbol's animation once. This determines a symbol's playback speed.",
490
+ "type": "number"
491
+ },
492
+ "easing": {
493
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMAnimatedSymbolEasingType",
494
+ "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."
495
+ },
496
+ "playAnimation": {
497
+ "description": "Indicates whether the animated symbol should play its animation.",
498
+ "type": "boolean"
499
+ },
500
+ "randomizeStartSeed": {
501
+ "description": "The starting value for generating a random number. Used by the `randomizeStartTime` property to determine the time offset for each feature.",
502
+ "type": "number"
503
+ },
504
+ "randomizeStartTime": {
505
+ "description": "Indicates whether to generate a randomized start offset in seconds to apply to the symbol animation of each feature.",
506
+ "type": "boolean"
507
+ },
508
+ "repeatDelay": {
509
+ "description": "The number of seconds to delay before repeating an animation cycle.",
510
+ "type": "number"
511
+ },
512
+ "repeatType": {
513
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMAnimatedSymbolRepeatType",
514
+ "description": "Determines how to repeat the animation of a symbol when the animation cycle ends."
515
+ },
516
+ "reverseAnimation": {
517
+ "description": "Indicates whether the animated symbol should play back in reverse.",
518
+ "type": "boolean"
519
+ },
520
+ "startTimeOffset": {
521
+ "description": "The time offset in seconds to use as the starting point of the symbol animation. This is used if `randomizeStartTime` is `false`.",
522
+ "type": "number"
523
+ }
524
+ },
525
+ "type": "object"
526
+ },
527
+ "@arcgis.core.symbols.cim.types.CIMAnimatedSymbolRepeatType": {
528
+ "$ref": "esri.symbols.cim.types"
529
+ },
530
+ "@arcgis.core.symbols.cim.types.CIMColorRampUnion": {
531
+ "anyOf": [
532
+ {
533
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMFixedColorRamp"
534
+ },
535
+ {
536
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMLinearContinuousColorRamp"
537
+ },
538
+ {
539
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMMultipartColorRamp"
540
+ }
541
+ ],
542
+ "description": "Represents a color ramp."
543
+ },
544
+ "@arcgis.core.symbols.cim.types.CIMFixedColorRamp": {
545
+ "$ref": "esri.symbols.cim.types"
546
+ },
547
+ "@arcgis.core.symbols.cim.types.CIMGradientFill": {
548
+ "$ref": "esri.symbols.cim.types"
549
+ },
550
+ "@arcgis.core.symbols.cim.types.CIMGradientStroke": {
551
+ "$ref": "esri.symbols.cim.types"
552
+ },
553
+ "@arcgis.core.symbols.cim.types.CIMHatchFill": {
554
+ "$ref": "esri.symbols.cim.types"
555
+ },
556
+ "@arcgis.core.symbols.cim.types.CIMLineSymbol": {
557
+ "$ref": "esri.symbols.cim.types"
558
+ },
559
+ "@arcgis.core.symbols.cim.types.CIMLinearContinuousColorRamp": {
560
+ "$ref": "esri.symbols.cim.types"
561
+ },
562
+ "@arcgis.core.symbols.cim.types.CIMMultipartColorRamp": {
563
+ "$ref": "esri.symbols.cim.types"
564
+ },
565
+ "@arcgis.core.symbols.cim.types.CIMPictureFill": {
566
+ "$ref": "esri.symbols.cim.types"
567
+ },
568
+ "@arcgis.core.symbols.cim.types.CIMPictureMarker": {
569
+ "$ref": "esri.symbols.cim.types"
570
+ },
571
+ "@arcgis.core.symbols.cim.types.CIMPictureStroke": {
572
+ "$ref": "esri.symbols.cim.types"
573
+ },
574
+ "@arcgis.core.symbols.cim.types.CIMPointSymbol": {
575
+ "$ref": "esri.symbols.cim.types"
576
+ },
577
+ "@arcgis.core.symbols.cim.types.CIMPolygonSymbol": {
578
+ "$ref": "esri.symbols.cim.types"
579
+ },
580
+ "@arcgis.core.symbols.cim.types.CIMSolidFill": {
581
+ "$ref": "esri.symbols.cim.types"
582
+ },
583
+ "@arcgis.core.symbols.cim.types.CIMSolidStroke": {
584
+ "$ref": "esri.symbols.cim.types"
585
+ },
586
+ "@arcgis.core.symbols.cim.types.CIMSymbolUnion": {
28
587
  "anyOf": [
29
588
  {
30
- "$ref": "#/definitions/esri.PictureFillSymbol"
589
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMLineSymbol"
31
590
  },
32
591
  {
33
- "$ref": "#/definitions/esri.PictureMarkerSymbol"
592
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMPointSymbol"
34
593
  },
35
594
  {
36
- "$ref": "#/definitions/esri.SimpleFillSymbol"
595
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMPolygonSymbol"
37
596
  },
38
597
  {
39
- "$ref": "#/definitions/esri.SimpleLineSymbol"
598
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMTextSymbol"
599
+ }
600
+ ],
601
+ "description": "Represents a union type of all CIM symbol types."
602
+ },
603
+ "@arcgis.core.symbols.cim.types.CIMTextSymbol": {
604
+ "$ref": "esri.symbols.cim.types"
605
+ },
606
+ "@arcgis.core.symbols.cim.types.CIMVectorMarker": {
607
+ "$ref": "esri.symbols.cim.types"
608
+ },
609
+ "@arcgis.core.symbols.types.SymbolUnion": {
610
+ "anyOf": [
611
+ {
612
+ "$ref": "#/definitions/@arcgis.core.symbols.PictureFillSymbol.PictureFillSymbol"
613
+ },
614
+ {
615
+ "$ref": "#/definitions/@arcgis.core.symbols.PictureMarkerSymbol.PictureMarkerSymbol"
616
+ },
617
+ {
618
+ "$ref": "#/definitions/@arcgis.core.symbols.SimpleFillSymbol.SimpleFillSymbol"
619
+ },
620
+ {
621
+ "$ref": "#/definitions/@arcgis.core.symbols.SimpleLineSymbol.SimpleLineSymbol"
622
+ },
623
+ {
624
+ "$ref": "#/definitions/@arcgis.core.symbols.SimpleMarkerSymbol.SimpleMarkerSymbol"
40
625
  },
41
626
  {
42
- "$ref": "#/definitions/esri.SimpleMarkerSymbol"
627
+ "$ref": "#/definitions/@arcgis.core.symbols.TextSymbol.TextSymbol"
43
628
  },
44
629
  {
45
- "$ref": "#/definitions/esri.TextSymbol"
630
+ "$ref": "#/definitions/@arcgis.core.symbols.CIMSymbol.CIMSymbol"
46
631
  },
47
632
  {
48
- "$ref": "#/definitions/esri.CIMSymbol"
633
+ "$ref": "#/definitions/@arcgis.core.symbols.LabelSymbol3D.LabelSymbol3D"
634
+ },
635
+ {
636
+ "$ref": "#/definitions/@arcgis.core.symbols.LineSymbol3D.LineSymbol3D"
637
+ },
638
+ {
639
+ "$ref": "#/definitions/@arcgis.core.symbols.MeshSymbol3D.MeshSymbol3D"
640
+ },
641
+ {
642
+ "$ref": "#/definitions/@arcgis.core.symbols.PointSymbol3D.PointSymbol3D"
643
+ },
644
+ {
645
+ "$ref": "#/definitions/@arcgis.core.symbols.PolygonSymbol3D.PolygonSymbol3D"
646
+ },
647
+ {
648
+ "$ref": "#/definitions/@arcgis.core.symbols.WebStyleSymbol.WebStyleSymbol"
649
+ }
650
+ ],
651
+ "description": "Union of all symbols."
652
+ },
653
+ "@arcgis.core.unionTypes.GeometryUnion": {
654
+ "$ref": "esri.unionTypes"
655
+ },
656
+ "@arcgis.core.unionTypes.SymbolUnion": {
657
+ "$ref": "esri.unionTypes"
658
+ },
659
+ "@arcgis.core.views.2d.analysis.AreaMeasurementAnalysisView2D.AreaMeasurementAnalysisView2D": {
660
+ "$ref": "esri.views.2d.analysis.AreaMeasurementAnalysisView2D"
661
+ },
662
+ "@arcgis.core.views.2d.analysis.DistanceMeasurementAnalysisView2D.DistanceMeasurementAnalysisView2D": {
663
+ "$ref": "esri.views.2d.analysis.DistanceMeasurementAnalysisView2D"
664
+ },
665
+ "@arcgis.core.views.2d.analysis.ElevationProfileAnalysisView2D.ElevationProfileAnalysisView2D": {
666
+ "$ref": "esri.views.2d.analysis.ElevationProfileAnalysisView2D"
667
+ },
668
+ "@arcgis.core.views.3d.analysis.AreaMeasurementAnalysisView3D.AreaMeasurementAnalysisView3D": {
669
+ "$ref": "esri.views.3d.analysis.AreaMeasurementAnalysisView3D"
670
+ },
671
+ "@arcgis.core.views.3d.analysis.DimensionAnalysisView3D.DimensionAnalysisView3D": {
672
+ "$ref": "esri.views.3d.analysis.DimensionAnalysisView3D"
673
+ },
674
+ "@arcgis.core.views.3d.analysis.DirectLineMeasurement.types.DirectLineMeasurementAnalysisResult": {
675
+ "additionalProperties": false,
676
+ "description": "Result obtained from a [DirectLineMeasurementAnalysis](https://developers.arcgis.com/javascript/latest/references/core/analysis/DirectLineMeasurementAnalysis/).",
677
+ "properties": {
678
+ "directDistance": {
679
+ "$ref": "#/definitions/@arcgis.core.core.quantity.Length",
680
+ "description": "The 3D distance between the two points that is computed in a Euclidean manner."
681
+ },
682
+ "horizontalDistance": {
683
+ "$ref": "#/definitions/@arcgis.core.core.quantity.Length",
684
+ "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."
685
+ },
686
+ "mode": {
687
+ "$ref": "#/definitions/@arcgis.core.views.analysis.types.MeasurementMode",
688
+ "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."
689
+ },
690
+ "verticalDistance": {
691
+ "$ref": "#/definitions/@arcgis.core.core.quantity.Length",
692
+ "description": "Vertical distance measured as the absolute difference of the elevation of the two points."
693
+ }
694
+ },
695
+ "required": [
696
+ "directDistance",
697
+ "horizontalDistance",
698
+ "mode",
699
+ "verticalDistance"
700
+ ],
701
+ "type": "object"
702
+ },
703
+ "@arcgis.core.views.3d.analysis.DirectLineMeasurementAnalysisView3D.DirectLineMeasurementAnalysisView3D": {
704
+ "$ref": "esri.views.3d.analysis.DirectLineMeasurementAnalysisView3D"
705
+ },
706
+ "@arcgis.core.views.3d.analysis.ElevationProfileAnalysisView3D.ElevationProfileAnalysisView3D": {
707
+ "$ref": "esri.views.3d.analysis.ElevationProfileAnalysisView3D"
708
+ },
709
+ "@arcgis.core.views.3d.analysis.LineOfSightAnalysisResult.LineOfSightAnalysisResult": {
710
+ "additionalProperties": false,
711
+ "description": "Contains the result for a line of sight analysis from a [LineOfSightAnalysis](https://developers.arcgis.com/javascript/latest/references/core/analysis/LineOfSightAnalysis/).",
712
+ "properties": {
713
+ "declaredClass": {
714
+ "description": "The name of the class. The declared class name is formatted as `esri.folder.className`.",
715
+ "type": "string"
716
+ },
717
+ "destroyed": {
718
+ "type": "boolean"
719
+ },
720
+ "initialized": {
721
+ "description": "Set to `true` once the initialize function has executed.",
722
+ "type": "boolean"
723
+ },
724
+ "intersectedGraphic": {
725
+ "$ref": "T_22",
726
+ "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`."
727
+ },
728
+ "intersectedLocation": {
729
+ "$ref": "#/definitions/@arcgis.core.geometry.Point.Point",
730
+ "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`."
731
+ },
732
+ "target": {
733
+ "$ref": "T_16",
734
+ "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)."
49
735
  },
736
+ "visible": {
737
+ "description": "Whether the target is visible from the observer or not.",
738
+ "type": "boolean"
739
+ }
740
+ },
741
+ "required": [
742
+ "declaredClass",
743
+ "destroyed",
744
+ "initialized",
745
+ "intersectedGraphic",
746
+ "intersectedLocation",
747
+ "target",
748
+ "visible"
749
+ ],
750
+ "type": "object"
751
+ },
752
+ "@arcgis.core.views.3d.analysis.LineOfSightAnalysisView3D.LineOfSightAnalysisView3D": {
753
+ "$ref": "esri.views.3d.analysis.LineOfSightAnalysisView3D"
754
+ },
755
+ "@arcgis.core.views.3d.analysis.ShadowCastAnalysisView3D.ShadowCastAnalysisView3D": {
756
+ "$ref": "esri.views.3d.analysis.ShadowCastAnalysisView3D"
757
+ },
758
+ "@arcgis.core.views.3d.analysis.SliceAnalysisView3D.SliceAnalysisView3D": {
759
+ "$ref": "esri.views.3d.analysis.SliceAnalysisView3D"
760
+ },
761
+ "@arcgis.core.views.3d.analysis.ViewshedAnalysisView3D.ViewshedAnalysisView3D": {
762
+ "$ref": "esri.views.3d.analysis.ViewshedAnalysisView3D"
763
+ },
764
+ "@arcgis.core.views.3d.analysis.VolumeMeasurement.VolumeMeasurementResult.VolumeMeasurementResult": {
765
+ "additionalProperties": false,
766
+ "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.",
767
+ "properties": {
768
+ "area": {
769
+ "$ref": "#/definitions/@arcgis.core.core.quantity.Area",
770
+ "description": "The area of the measured volume."
771
+ },
772
+ "cutVolume": {
773
+ "$ref": "#/definitions/@arcgis.core.core.quantity.Volume",
774
+ "description": "Volume that needs to be removed to reach the target surface defined by the polygon."
775
+ },
776
+ "declaredClass": {
777
+ "description": "The name of the class. The declared class name is formatted as `esri.folder.className`.",
778
+ "type": "string"
779
+ },
780
+ "destroyed": {
781
+ "type": "boolean"
782
+ },
783
+ "fillVolume": {
784
+ "$ref": "#/definitions/@arcgis.core.core.quantity.Volume",
785
+ "description": "Volume that needs to be added to reach the target surface defined by the polygon."
786
+ },
787
+ "initialized": {
788
+ "description": "Set to `true` once the initialize function has executed.",
789
+ "type": "boolean"
790
+ },
791
+ "measureType": {
792
+ "$ref": "#/definitions/@arcgis.core.analysis.VolumeMeasurement.types.VolumeMeasureType",
793
+ "description": "Volume measure type."
794
+ },
795
+ "netVolume": {
796
+ "$ref": "#/definitions/@arcgis.core.core.quantity.Volume",
797
+ "description": "Difference between the cut volume and fill volume. A positive value indicates a surplus volume that needs to be removed."
798
+ },
799
+ "perimeter": {
800
+ "$ref": "#/definitions/@arcgis.core.core.quantity.Length",
801
+ "description": "The perimeter of the measured volume."
802
+ },
803
+ "totalVolume": {
804
+ "$ref": "#/definitions/@arcgis.core.core.quantity.Volume",
805
+ "description": "Sum of the cut volume and fill volume."
806
+ }
807
+ },
808
+ "required": [
809
+ "area",
810
+ "cutVolume",
811
+ "declaredClass",
812
+ "destroyed",
813
+ "fillVolume",
814
+ "initialized",
815
+ "measureType",
816
+ "netVolume",
817
+ "perimeter",
818
+ "totalVolume"
819
+ ],
820
+ "type": "object"
821
+ },
822
+ "@arcgis.core.views.3d.analysis.VolumeMeasurementAnalysisView3D.VolumeMeasurementAnalysisView3D": {
823
+ "$ref": "esri.views.3d.analysis.VolumeMeasurementAnalysisView3D"
824
+ },
825
+ "@arcgis.core.views.3d.environment.CloudyWeather.CloudyWeather": {
826
+ "$ref": "esri.views.3d.environment.CloudyWeather"
827
+ },
828
+ "@arcgis.core.views.3d.environment.FoggyWeather.FoggyWeather": {
829
+ "$ref": "esri.views.3d.environment.FoggyWeather"
830
+ },
831
+ "@arcgis.core.views.3d.environment.RainyWeather.RainyWeather": {
832
+ "$ref": "esri.views.3d.environment.RainyWeather"
833
+ },
834
+ "@arcgis.core.views.3d.environment.SnowyWeather.SnowyWeather": {
835
+ "$ref": "esri.views.3d.environment.SnowyWeather"
836
+ },
837
+ "@arcgis.core.views.3d.environment.SunLighting.SunLighting": {
838
+ "$ref": "esri.views.3d.environment.SunLighting"
839
+ },
840
+ "@arcgis.core.views.3d.environment.SunnyWeather.SunnyWeather": {
841
+ "$ref": "esri.views.3d.environment.SunnyWeather"
842
+ },
843
+ "@arcgis.core.views.3d.environment.VirtualLighting.VirtualLighting": {
844
+ "$ref": "esri.views.3d.environment.VirtualLighting"
845
+ },
846
+ "@arcgis.core.views.3d.environment.types.LightingUnion": {
847
+ "anyOf": [
50
848
  {
51
- "$ref": "esri.LabelSymbol3D"
849
+ "$ref": "#/definitions/@arcgis.core.views.3d.environment.SunLighting.SunLighting"
52
850
  },
53
851
  {
54
- "$ref": "#/definitions/esri.LineSymbol3D"
852
+ "$ref": "#/definitions/@arcgis.core.views.3d.environment.VirtualLighting.VirtualLighting"
853
+ }
854
+ ]
855
+ },
856
+ "@arcgis.core.views.3d.environment.types.WeatherUnion": {
857
+ "anyOf": [
858
+ {
859
+ "$ref": "#/definitions/@arcgis.core.views.3d.environment.CloudyWeather.CloudyWeather"
55
860
  },
56
861
  {
57
- "$ref": "#/definitions/esri.MeshSymbol3D"
862
+ "$ref": "#/definitions/@arcgis.core.views.3d.environment.FoggyWeather.FoggyWeather"
58
863
  },
59
864
  {
60
- "$ref": "#/definitions/esri.PointSymbol3D"
865
+ "$ref": "#/definitions/@arcgis.core.views.3d.environment.RainyWeather.RainyWeather"
61
866
  },
62
867
  {
63
- "$ref": "#/definitions/esri.PolygonSymbol3D"
868
+ "$ref": "#/definitions/@arcgis.core.views.3d.environment.SnowyWeather.SnowyWeather"
64
869
  },
65
870
  {
66
- "$ref": "esri.WebStyleSymbol"
871
+ "$ref": "#/definitions/@arcgis.core.views.3d.environment.SunnyWeather.SunnyWeather"
67
872
  }
873
+ ]
874
+ },
875
+ "@arcgis.core.views.View.View": {
876
+ "$ref": "esri.views.View"
877
+ },
878
+ "@arcgis.core.views.analysis.AreaMeasurement.types.AreaMeasurementResult": {
879
+ "additionalProperties": false,
880
+ "description": "Result obtained from an [AreaMeasurementAnalysis](https://developers.arcgis.com/javascript/latest/references/core/analysis/AreaMeasurementAnalysis/).",
881
+ "properties": {
882
+ "area": {
883
+ "$ref": "#/definitions/@arcgis.core.core.quantity.Area",
884
+ "description": "Area of the polygon."
885
+ },
886
+ "mode": {
887
+ "$ref": "#/definitions/@arcgis.core.views.analysis.types.MeasurementMode",
888
+ "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)."
889
+ },
890
+ "perimeter": {
891
+ "$ref": "#/definitions/@arcgis.core.core.quantity.Length",
892
+ "description": "Perimeter length of the polygon."
893
+ }
894
+ },
895
+ "required": [
896
+ "area",
897
+ "mode",
898
+ "perimeter"
68
899
  ],
69
- "description": "Union of symbols.\n\n{@link https://developers.arcgis.com/javascript/latest/api-reference/esri-unionTypes.html#SymbolUnion Read more...}"
900
+ "type": "object"
901
+ },
902
+ "@arcgis.core.views.analysis.DistanceMeasurement.types.DistanceMeasurementResult": {
903
+ "additionalProperties": false,
904
+ "description": "Result obtained from an [DistanceMeasurementAnalysis](https://developers.arcgis.com/javascript/latest/references/core/analysis/DistanceMeasurementAnalysis/).",
905
+ "properties": {
906
+ "length": {
907
+ "$ref": "#/definitions/@arcgis.core.core.quantity.Length",
908
+ "description": "Length of the polyline."
909
+ },
910
+ "mode": {
911
+ "$ref": "#/definitions/@arcgis.core.views.analysis.types.MeasurementMode",
912
+ "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."
913
+ }
914
+ },
915
+ "required": [
916
+ "length",
917
+ "mode"
918
+ ],
919
+ "type": "object"
920
+ },
921
+ "@arcgis.core.views.analysis.ElevationProfile.ElevationProfileResult.ElevationProfileResult": {
922
+ "additionalProperties": false,
923
+ "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.",
924
+ "properties": {
925
+ "available": {
926
+ "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.",
927
+ "type": "boolean"
928
+ },
929
+ "declaredClass": {
930
+ "description": "The name of the class. The declared class name is formatted as `esri.folder.className`.",
931
+ "type": "string"
932
+ },
933
+ "destroyed": {
934
+ "type": "boolean"
935
+ },
936
+ "initialized": {
937
+ "description": "Set to `true` once the initialize function has executed.",
938
+ "type": "boolean"
939
+ },
940
+ "profile": {
941
+ "$ref": "#/definitions/@arcgis.core.analysis.ElevationProfile.types.ElevationProfileLineUnion",
942
+ "description": "The [profile line](https://developers.arcgis.com/javascript/latest/references/core/analysis/ElevationProfileAnalysis/#profiles) whose elevation is represented by this result."
943
+ },
944
+ "progress": {
945
+ "description": "Represents the progress of the elevation profile generation, ranging from 0 to 1.",
946
+ "type": "number"
947
+ },
948
+ "samples": {
949
+ "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).",
950
+ "items": {
951
+ "$ref": "#/definitions/@arcgis.core.views.analysis.ElevationProfile.types.ElevationProfileSample"
952
+ },
953
+ "type": "array"
954
+ },
955
+ "statistics": {
956
+ "$ref": "#/definitions/@arcgis.core.views.analysis.ElevationProfile.types.ElevationProfileStatistics",
957
+ "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)."
958
+ }
959
+ },
960
+ "required": [
961
+ "available",
962
+ "declaredClass",
963
+ "destroyed",
964
+ "initialized",
965
+ "profile",
966
+ "progress",
967
+ "samples",
968
+ "statistics"
969
+ ],
970
+ "type": "object"
971
+ },
972
+ "@arcgis.core.views.analysis.ElevationProfile.types.ElevationProfileSample": {
973
+ "$ref": "esri.views.analysis.ElevationProfile.types"
974
+ },
975
+ "@arcgis.core.views.analysis.ElevationProfile.types.ElevationProfileStatistics": {
976
+ "$ref": "esri.views.analysis.ElevationProfile.types"
977
+ },
978
+ "@arcgis.core.views.analysis.types.AnalysisViewUnion": {
979
+ "$ref": "esri.views.analysis.types"
980
+ },
981
+ "@arcgis.core.views.analysis.types.MeasurementMode": {
982
+ "$ref": "esri.views.analysis.types"
983
+ },
984
+ "@arcgis.core.views.layers.LayerView.LayerView": {
985
+ "$ref": "esri.views.layers.LayerView"
986
+ },
987
+ "@arcgis.core.views.layers.StreamLayerView.StreamUpdateRateEvent": {
988
+ "additionalProperties": false,
989
+ "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.",
990
+ "properties": {
991
+ "client": {
992
+ "description": "The client update rate per second. Returns number of features being processed on the client.",
993
+ "type": "number"
994
+ },
995
+ "websocket": {
996
+ "description": "Update rate per second for websocket/service. Returns number of features being pushed from the server.",
997
+ "type": "number"
998
+ }
999
+ },
1000
+ "required": [
1001
+ "client",
1002
+ "websocket"
1003
+ ],
1004
+ "type": "object"
1005
+ },
1006
+ "@arcgis.core.views.types.AnalysisViewCreateErrorEvent": {
1007
+ "additionalProperties": false,
1008
+ "properties": {
1009
+ "analysis": {
1010
+ "$ref": "#/definitions/@arcgis.core.analysis.Analysis.Analysis",
1011
+ "description": "The analysis for which the `analysisView` was created."
1012
+ },
1013
+ "error": {
1014
+ "$ref": "#/definitions/Error",
1015
+ "description": "An error object describing why the analysis view could not be created."
1016
+ }
1017
+ },
1018
+ "required": [
1019
+ "analysis",
1020
+ "error"
1021
+ ],
1022
+ "type": "object"
1023
+ },
1024
+ "@arcgis.core.views.types.AnalysisViewCreateEvent": {
1025
+ "additionalProperties": false,
1026
+ "properties": {
1027
+ "analysis": {
1028
+ "$ref": "#/definitions/@arcgis.core.analysis.Analysis.Analysis",
1029
+ "description": "The analysis for which the `analysisView` was created."
1030
+ },
1031
+ "analysisView": {
1032
+ "$ref": "#/definitions/@arcgis.core.views.analysis.types.AnalysisViewUnion",
1033
+ "description": "The analysis view that was created."
1034
+ }
1035
+ },
1036
+ "required": [
1037
+ "analysis",
1038
+ "analysisView"
1039
+ ],
1040
+ "type": "object"
1041
+ },
1042
+ "@arcgis.core.views.types.AnalysisViewDestroyEvent": {
1043
+ "additionalProperties": false,
1044
+ "properties": {
1045
+ "analysis": {
1046
+ "$ref": "#/definitions/@arcgis.core.analysis.Analysis.Analysis",
1047
+ "description": "The analysis whose analysis view was destroyed."
1048
+ },
1049
+ "analysisView": {
1050
+ "$ref": "#/definitions/@arcgis.core.views.analysis.types.AnalysisViewUnion",
1051
+ "description": "The analysis view that was destroyed."
1052
+ }
1053
+ },
1054
+ "required": [
1055
+ "analysis",
1056
+ "analysisView"
1057
+ ],
1058
+ "type": "object"
1059
+ },
1060
+ "@arcgis.core.webdoc.applicationProperties.Viewing.Viewing": {
1061
+ "$ref": "esri.webdoc.applicationProperties.Viewing"
1062
+ },
1063
+ "@arcgis.core.webscene.ApplicationProperties.ApplicationProperties": {
1064
+ "additionalProperties": false,
1065
+ "description": "Represents configuration of application and UI elements.",
1066
+ "properties": {
1067
+ "declaredClass": {
1068
+ "description": "The name of the class. The declared class name is formatted as `esri.folder.className`.",
1069
+ "type": "string"
1070
+ },
1071
+ "destroyed": {
1072
+ "type": "boolean"
1073
+ },
1074
+ "initialized": {
1075
+ "description": "Set to `true` once the initialize function has executed.",
1076
+ "type": "boolean"
1077
+ },
1078
+ "viewing": {
1079
+ "$ref": "#/definitions/@arcgis.core.webdoc.applicationProperties.Viewing.Viewing",
1080
+ "description": "View-specific properties of application and UI elements."
1081
+ }
1082
+ },
1083
+ "required": [
1084
+ "declaredClass",
1085
+ "destroyed",
1086
+ "initialized",
1087
+ "viewing"
1088
+ ],
1089
+ "type": "object"
1090
+ },
1091
+ "@arcgis.core.webscene.support.FeatureReferenceGlobalId.FeatureReferenceGlobalId": {
1092
+ "$ref": "esri.webscene.support.FeatureReferenceGlobalId"
1093
+ },
1094
+ "@arcgis.core.webscene.support.FeatureReferenceObjectId.FeatureReferenceObjectId": {
1095
+ "$ref": "esri.webscene.support.FeatureReferenceObjectId"
1096
+ },
1097
+ "@arcgis.core.webscene.types.FeatureReferenceIdUnion": {
1098
+ "anyOf": [
1099
+ {
1100
+ "$ref": "#/definitions/@arcgis.core.webscene.support.FeatureReferenceGlobalId.FeatureReferenceGlobalId"
1101
+ },
1102
+ {
1103
+ "$ref": "#/definitions/@arcgis.core.webscene.support.FeatureReferenceObjectId.FeatureReferenceObjectId"
1104
+ }
1105
+ ]
1106
+ },
1107
+ "@arcgis.core.widgets.Popup.types.ActionEvent": {
1108
+ "additionalProperties": false,
1109
+ "properties": {
1110
+ "action": {
1111
+ "$ref": "#/definitions/@arcgis.core.widgets.Popup.types.PopupAction",
1112
+ "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."
1113
+ }
1114
+ },
1115
+ "required": [
1116
+ "action"
1117
+ ],
1118
+ "type": "object"
1119
+ },
1120
+ "@arcgis.core.widgets.Popup.types.PopupAction": {
1121
+ "$ref": "esri.widgets.Popup.types"
70
1122
  },
71
1123
  "@vertigis.arcgis-extensions.FailureMode.FailureMode": {
72
1124
  "description": "Possible modes of failure when there is an error resolving or initializing an item.",
@@ -128,22 +1180,22 @@
128
1180
  "geometry": {
129
1181
  "anyOf": [
130
1182
  {
131
- "$ref": "#/definitions/esri.Extent"
1183
+ "$ref": "#/definitions/@arcgis.core.geometry.Extent.Extent"
132
1184
  },
133
1185
  {
134
- "$ref": "#/definitions/esri.Multipoint"
1186
+ "$ref": "#/definitions/@arcgis.core.geometry.Multipoint.Multipoint"
135
1187
  },
136
1188
  {
137
- "$ref": "#/definitions/esri.Point"
1189
+ "$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
138
1190
  },
139
1191
  {
140
- "$ref": "#/definitions/esri.Polygon"
1192
+ "$ref": "T_6"
141
1193
  },
142
1194
  {
143
- "$ref": "#/definitions/esri.Polyline"
1195
+ "$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
144
1196
  },
145
1197
  {
146
- "$ref": "#/definitions/esri.Mesh"
1198
+ "$ref": "#/definitions/@arcgis.core.geometry.Mesh.Mesh"
147
1199
  },
148
1200
  {
149
1201
  "$ref": "#/definitions/esri.rest-api.GeometryJson.PointJson"
@@ -195,10 +1247,10 @@
195
1247
  "items": {
196
1248
  "anyOf": [
197
1249
  {
198
- "$ref": "@vertigis.arcgis-extensions.Hyperlink.HyperlinkProperties"
1250
+ "$ref": "#/definitions/@vertigis.arcgis-extensions.Hyperlink.HyperlinkProperties"
199
1251
  },
200
1252
  {
201
- "$ref": "@vertigis.arcgis-extensions.Hyperlink.Hyperlink"
1253
+ "$ref": "T_40"
202
1254
  }
203
1255
  ]
204
1256
  },
@@ -216,7 +1268,7 @@
216
1268
  "type": "array"
217
1269
  },
218
1270
  "outSpatialReference": {
219
- "$ref": "#/definitions/esri.SpatialReference",
1271
+ "$ref": "#/definitions/@arcgis.core.geometry.SpatialReference.SpatialReference",
220
1272
  "description": "See {@link data /FeatureSettings!FeatureSettings.outSpatialReference}."
221
1273
  },
222
1274
  "popupContentExtensions": {
@@ -224,10 +1276,10 @@
224
1276
  "items": {
225
1277
  "anyOf": [
226
1278
  {
227
- "$ref": "@vertigis.arcgis-extensions.data.PopupContentExtension.PopupContentExtensionProperties"
1279
+ "$ref": "#/definitions/@vertigis.arcgis-extensions.data.PopupContentExtension.PopupContentExtensionProperties"
228
1280
  },
229
1281
  {
230
- "$ref": "@vertigis.arcgis-extensions.data.PopupContentExtension.PopupContentExtension"
1282
+ "$ref": "T_39"
231
1283
  }
232
1284
  ]
233
1285
  },
@@ -239,7 +1291,7 @@
239
1291
  "$ref": "#/definitions/esri.rest-api.PopupInfoJson.PopupInfoJson"
240
1292
  },
241
1293
  {
242
- "$ref": "#/definitions/esri.PopupTemplate"
1294
+ "$ref": "#/definitions/@arcgis.core.PopupTemplate.PopupTemplate"
243
1295
  }
244
1296
  ],
245
1297
  "description": "The template for displaying content in a pop-up when the feature is selected. If not explicitly set, it will be inherited from the associated layer extension if there is one."
@@ -274,7 +1326,7 @@
274
1326
  "field": {
275
1327
  "anyOf": [
276
1328
  {
277
- "$ref": "#/definitions/esri.Field"
1329
+ "$ref": "T_42"
278
1330
  },
279
1331
  {
280
1332
  "$ref": "#/definitions/@vertigis.arcgis-extensions.data.FieldExtension.FieldProperties"
@@ -433,7 +1485,7 @@
433
1485
  "content": {
434
1486
  "anyOf": [
435
1487
  {
436
- "$ref": "#/definitions/esri.Content"
1488
+ "$ref": "#/definitions/@arcgis.core.popup.content.Content.Content"
437
1489
  },
438
1490
  {
439
1491
  "$ref": "#/definitions/@vertigis.arcgis-extensions.data.PopupContentExtension.ContentProperties"
@@ -476,10 +1528,10 @@
476
1528
  "items": {
477
1529
  "anyOf": [
478
1530
  {
479
- "$ref": "@vertigis.arcgis-extensions.data.FieldExtension.FieldExtensionProperties"
1531
+ "$ref": "#/definitions/@vertigis.arcgis-extensions.data.FieldExtension.FieldExtensionProperties"
480
1532
  },
481
1533
  {
482
- "$ref": "@vertigis.arcgis-extensions.data.FieldExtension.FieldExtension"
1534
+ "$ref": "T_41"
483
1535
  }
484
1536
  ]
485
1537
  },
@@ -490,7 +1542,7 @@
490
1542
  "items": {
491
1543
  "anyOf": [
492
1544
  {
493
- "$ref": "#/definitions/esri.Field"
1545
+ "$ref": "T_42"
494
1546
  },
495
1547
  {
496
1548
  "$ref": "#/definitions/esri.rest-api.FieldJson.FieldJson"
@@ -508,7 +1560,7 @@
508
1560
  "type": "string"
509
1561
  },
510
1562
  "spatialReference": {
511
- "$ref": "#/definitions/esri.SpatialReference",
1563
+ "$ref": "#/definitions/@arcgis.core.geometry.SpatialReference.SpatialReference",
512
1564
  "description": "See {@link data /Schema!Schema.spatialReference}."
513
1565
  },
514
1566
  "timeZone": {
@@ -524,7 +1576,7 @@
524
1576
  "items": {
525
1577
  "anyOf": [
526
1578
  {
527
- "$ref": "#/definitions/esri.FeatureType"
1579
+ "$ref": "#/definitions/@arcgis.core.layers.support.FeatureType.FeatureType"
528
1580
  },
529
1581
  {
530
1582
  "$ref": "#/definitions/esri.rest-api.TypeJson.TypeJson"
@@ -536,6 +1588,10 @@
536
1588
  },
537
1589
  "type": "object"
538
1590
  },
1591
+ "@vertigis.arcgis-extensions.data._Relationship.RelationshipType": {
1592
+ "description": "The type of the Relationship.",
1593
+ "type": "string"
1594
+ },
539
1595
  "@vertigis.arcgis-extensions.data._TableExtension.TableReference": {
540
1596
  "additionalProperties": false,
541
1597
  "description": "Matches an existing table in a map.",
@@ -629,7 +1685,7 @@
629
1685
  "viewpoint": {
630
1686
  "anyOf": [
631
1687
  {
632
- "$ref": "#/definitions/esri.Viewpoint"
1688
+ "$ref": "#/definitions/@arcgis.core.Viewpoint.Viewpoint"
633
1689
  },
634
1690
  {
635
1691
  "$ref": "#/definitions/esri.rest-api.ViewpointJson.ViewpointJson"
@@ -651,7 +1707,7 @@
651
1707
  "@vertigis.arcgis-extensions.mapping.MapExtension.WebMapLike": {
652
1708
  "anyOf": [
653
1709
  {
654
- "$ref": "#/definitions/esri.PortalItem"
1710
+ "$ref": "#/definitions/@arcgis.core.portal.PortalItem.PortalItem"
655
1711
  },
656
1712
  {
657
1713
  "$ref": "#/definitions/esri.rest-api.ItemJson.ItemJson"
@@ -674,7 +1730,7 @@
674
1730
  "@vertigis.arcgis-extensions.mapping.MapExtension.WebSceneLike": {
675
1731
  "anyOf": [
676
1732
  {
677
- "$ref": "#/definitions/esri.PortalItem"
1733
+ "$ref": "#/definitions/@arcgis.core.portal.PortalItem.PortalItem"
678
1734
  },
679
1735
  {
680
1736
  "$ref": "#/definitions/esri.rest-api.ItemJson.ItemJson"
@@ -785,6 +1841,25 @@
785
1841
  },
786
1842
  "type": "object"
787
1843
  },
1844
+ "@vertigis.arcgis-extensions.support.InitializableBase.InitializeWarningEvent": {
1845
+ "additionalProperties": false,
1846
+ "description": "Raised when there is an error initializing an {@link support /InitializableBase!InitializableBase}.",
1847
+ "properties": {
1848
+ "error": {
1849
+ "$ref": "@vertigis.arcgis-extensions.support.InitializeError.InitializeError",
1850
+ "description": "Original error that occurred."
1851
+ },
1852
+ "target": {
1853
+ "$ref": "@vertigis.arcgis-extensions.support.InitializableBase.InitializableBase",
1854
+ "description": "The {@link support /InitializableBase!InitializableBase} that raised the event."
1855
+ }
1856
+ },
1857
+ "required": [
1858
+ "error",
1859
+ "target"
1860
+ ],
1861
+ "type": "object"
1862
+ },
788
1863
  "@vertigis.arcgis-extensions.tasks.CountResult.CountResult": {
789
1864
  "additionalProperties": false,
790
1865
  "description": "A count result for services.",
@@ -808,7 +1883,7 @@
808
1883
  "anyOf": [
809
1884
  {},
810
1885
  {
811
- "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
1886
+ "$ref": "T_60"
812
1887
  },
813
1888
  {
814
1889
  "type": "string"
@@ -836,24 +1911,89 @@
836
1911
  "type": "array"
837
1912
  },
838
1913
  "outSpatialReference": {
839
- "$ref": "#/definitions/esri.SpatialReference",
1914
+ "$ref": "#/definitions/@arcgis.core.geometry.SpatialReference.SpatialReference",
840
1915
  "description": "The spatial reference of the results."
841
1916
  },
842
1917
  "searchArea": {
843
- "$ref": "#/definitions/esri.Geometry",
1918
+ "$ref": "#/definitions/@arcgis.core.geometry.Geometry.Geometry",
844
1919
  "description": "If specified, results will be limited to those that intersect the given geometry. No effect for reverse geocoding."
845
1920
  },
846
1921
  "searchPoint": {
847
- "$ref": "#/definitions/esri.Point",
1922
+ "$ref": "#/definitions/@arcgis.core.geometry.Point.Point",
848
1923
  "description": "If specified, results will be weighted for the specified point. No effect for reverse geocoding."
849
1924
  }
850
1925
  },
851
1926
  "type": "object"
852
1927
  },
1928
+ "@vertigis.arcgis-extensions.utilities.ObservableMap.MapAfterItemEvent": {
1929
+ "additionalProperties": false,
1930
+ "description": "Raised after an item is added or removed from an {@link ObservableMap}.",
1931
+ "properties": {
1932
+ "item": {
1933
+ "$ref": "T_45",
1934
+ "description": "The item to add or remove from the collection."
1935
+ },
1936
+ "target": {
1937
+ "$ref": "@vertigis.arcgis-extensions.utilities.collection.AfterItemChangeEvent.TCollection",
1938
+ "description": "The collection like object that raised the event."
1939
+ }
1940
+ },
1941
+ "required": [
1942
+ "item",
1943
+ "target"
1944
+ ],
1945
+ "type": "object"
1946
+ },
1947
+ "@vertigis.arcgis-extensions.utilities.ObservableMap.MapChangeEvent": {
1948
+ "additionalProperties": false,
1949
+ "description": "Raised when items are added or removed from an {@link ObservableMap}.",
1950
+ "properties": {
1951
+ "added": {
1952
+ "description": "The items that were added.",
1953
+ "items": {
1954
+ "items": [
1955
+ {
1956
+ "type": "string"
1957
+ },
1958
+ {}
1959
+ ],
1960
+ "maxItems": 2,
1961
+ "minItems": 2,
1962
+ "type": "array"
1963
+ },
1964
+ "type": "array"
1965
+ },
1966
+ "removed": {
1967
+ "description": "The items that were removed.",
1968
+ "items": {
1969
+ "items": [
1970
+ {
1971
+ "type": "string"
1972
+ },
1973
+ {}
1974
+ ],
1975
+ "maxItems": 2,
1976
+ "minItems": 2,
1977
+ "type": "array"
1978
+ },
1979
+ "type": "array"
1980
+ },
1981
+ "target": {
1982
+ "$ref": "@vertigis.arcgis-extensions.utilities.ObservableMap.ObservableMap",
1983
+ "description": "The {@link ObservableMap} that raised the event."
1984
+ }
1985
+ },
1986
+ "required": [
1987
+ "added",
1988
+ "removed",
1989
+ "target"
1990
+ ],
1991
+ "type": "object"
1992
+ },
853
1993
  "@vertigis.arcgis-extensions.utilities.portal.PortalItemLike": {
854
1994
  "anyOf": [
855
1995
  {
856
- "$ref": "#/definitions/esri.PortalItem"
1996
+ "$ref": "#/definitions/@arcgis.core.portal.PortalItem.PortalItem"
857
1997
  },
858
1998
  {
859
1999
  "$ref": "#/definitions/esri.rest-api.ItemJson.ItemJson"
@@ -959,11 +2099,11 @@
959
2099
  "$ref": "#/definitions/CreateGraphicsResult"
960
2100
  },
961
2101
  {
962
- "$ref": "#/definitions/esri.Graphic"
2102
+ "$ref": "#/definitions/@arcgis.core.Graphic.Graphic"
963
2103
  },
964
2104
  {
965
2105
  "items": {
966
- "$ref": "#/definitions/esri.Graphic"
2106
+ "$ref": "#/definitions/@arcgis.core.Graphic.Graphic"
967
2107
  },
968
2108
  "type": "array"
969
2109
  },
@@ -971,13 +2111,13 @@
971
2111
  "$ref": "#/definitions/esri.rest-api.FeatureJson.FeatureJson"
972
2112
  },
973
2113
  {
974
- "$ref": "#/definitions/esri.FeatureSet"
2114
+ "$ref": "#/definitions/@arcgis.core.rest.support.FeatureSet.FeatureSet"
975
2115
  },
976
2116
  {
977
2117
  "items": {
978
2118
  "anyOf": [
979
2119
  {
980
- "$ref": "#/definitions/esri.Graphic"
2120
+ "$ref": "#/definitions/@arcgis.core.Graphic.Graphic"
981
2121
  },
982
2122
  {
983
2123
  "$ref": "#/definitions/esri.rest-api.FeatureJson.FeatureJson"
@@ -1013,7 +2153,7 @@
1013
2153
  "description": "Map(s) to use for the command/operation."
1014
2154
  },
1015
2155
  "newPoint": {
1016
- "$ref": "#/definitions/esri.Point",
2156
+ "$ref": "#/definitions/@arcgis.core.geometry.Point.Point",
1017
2157
  "description": "The new point to be added."
1018
2158
  }
1019
2159
  },
@@ -1049,13 +2189,25 @@
1049
2189
  },
1050
2190
  "type": "object"
1051
2191
  },
1052
- "ArrayBufferLike": {
2192
+ "AttachmentInputUnion": {
1053
2193
  "anyOf": [
1054
2194
  {
1055
- "$ref": "ArrayBuffer"
2195
+ "$ref": "#/definitions/@arcgis.core.form.elements.inputs.attachments.AudioInput.AudioInput"
2196
+ },
2197
+ {
2198
+ "$ref": "#/definitions/@arcgis.core.form.elements.inputs.attachments.DocumentInput.DocumentInput"
2199
+ },
2200
+ {
2201
+ "$ref": "#/definitions/@arcgis.core.form.elements.inputs.attachments.ImageInput.ImageInput"
2202
+ },
2203
+ {
2204
+ "$ref": "#/definitions/@arcgis.core.form.elements.inputs.attachments.SignatureInput.SignatureInput"
2205
+ },
2206
+ {
2207
+ "$ref": "#/definitions/@arcgis.core.form.elements.inputs.attachments.VideoInput.VideoInput"
1056
2208
  },
1057
2209
  {
1058
- "$ref": "SharedArrayBuffer"
2210
+ "$ref": "#/definitions/@arcgis.core.form.elements.inputs.attachments.AttachmentInput.AttachmentInput"
1059
2211
  }
1060
2212
  ]
1061
2213
  },
@@ -1070,6 +2222,9 @@
1070
2222
  {
1071
2223
  "$ref": "#/definitions/esri.rest-api.MapServiceLayerJson.MapServiceLayerJson"
1072
2224
  },
2225
+ {
2226
+ "$ref": "#/definitions/esri.rest-api.SceneLayerJson.SceneLayerJson"
2227
+ },
1073
2228
  {
1074
2229
  "$ref": "#/definitions/esri.rest-api.TiledImageServiceLayerJson.TiledImageServiceLayerJson"
1075
2230
  },
@@ -1094,6 +2249,65 @@
1094
2249
  ],
1095
2250
  "description": "A base map layer in a web map/scene."
1096
2251
  },
2252
+ "BuildingSublayerUnion": {
2253
+ "anyOf": [
2254
+ {
2255
+ "$ref": "#/definitions/@arcgis.core.layers.buildingSublayers.BuildingComponentSublayer.BuildingComponentSublayer"
2256
+ },
2257
+ {
2258
+ "$ref": "#/definitions/@arcgis.core.layers.buildingSublayers.BuildingGroupSublayer.BuildingGroupSublayer"
2259
+ }
2260
+ ]
2261
+ },
2262
+ "CIMSymbolLayerUnion": {
2263
+ "anyOf": [
2264
+ {
2265
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMGradientFill"
2266
+ },
2267
+ {
2268
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMGradientStroke"
2269
+ },
2270
+ {
2271
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMHatchFill"
2272
+ },
2273
+ {
2274
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMPictureMarker"
2275
+ },
2276
+ {
2277
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMVectorMarker"
2278
+ },
2279
+ {
2280
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMPictureFill"
2281
+ },
2282
+ {
2283
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMPictureStroke"
2284
+ },
2285
+ {
2286
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMSolidFill"
2287
+ },
2288
+ {
2289
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMSolidStroke"
2290
+ }
2291
+ ],
2292
+ "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"
2293
+ },
2294
+ "CIMSymbolUnion": {
2295
+ "anyOf": [
2296
+ {
2297
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMLineSymbol"
2298
+ },
2299
+ {
2300
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMPointSymbol"
2301
+ },
2302
+ {
2303
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMPolygonSymbol"
2304
+ },
2305
+ {
2306
+ "$ref": "#/definitions/@arcgis.core.symbols.cim.types.CIMTextSymbol"
2307
+ }
2308
+ ],
2309
+ "description": "Represents a union type of all CIM symbol types."
2310
+ },
1097
2311
  "CaptureGeometryArgs": {
1098
2312
  "additionalProperties": false,
1099
2313
  "description": "Arguments for the \"sketching.capture-geometry\" operation.",
@@ -1244,7 +2458,7 @@
1244
2458
  "description": "The result of a Graphic being coincidentally edited as a part of a editing session with topological editing enabled. Web Only.",
1245
2459
  "properties": {
1246
2460
  "graphic": {
1247
- "$ref": "#/definitions/esri.Graphic",
2461
+ "$ref": "#/definitions/@arcgis.core.Graphic.Graphic",
1248
2462
  "description": "The coincident graphic that was included in an editing session with topological editing enabled."
1249
2463
  },
1250
2464
  "originalGeometry": {
@@ -1258,6 +2472,46 @@
1258
2472
  ],
1259
2473
  "type": "object"
1260
2474
  },
2475
+ "ColorJson": {
2476
+ "anyOf": [
2477
+ {
2478
+ "items": [
2479
+ {
2480
+ "type": "number"
2481
+ },
2482
+ {
2483
+ "type": "number"
2484
+ },
2485
+ {
2486
+ "type": "number"
2487
+ },
2488
+ {
2489
+ "type": "number"
2490
+ }
2491
+ ],
2492
+ "maxItems": 4,
2493
+ "minItems": 4,
2494
+ "type": "array"
2495
+ },
2496
+ {
2497
+ "items": [
2498
+ {
2499
+ "type": "number"
2500
+ },
2501
+ {
2502
+ "type": "number"
2503
+ },
2504
+ {
2505
+ "type": "number"
2506
+ }
2507
+ ],
2508
+ "maxItems": 3,
2509
+ "minItems": 3,
2510
+ "type": "array"
2511
+ }
2512
+ ],
2513
+ "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/}."
2514
+ },
1261
2515
  "ConfirmOperationArgs": {
1262
2516
  "additionalProperties": false,
1263
2517
  "description": "Arguments for the 'ui.confirm' operation.",
@@ -1348,10 +2602,10 @@
1348
2602
  "$ref": "#/definitions/CreateGraphicsResult"
1349
2603
  },
1350
2604
  {
1351
- "$ref": "#/definitions/esri.Graphic"
2605
+ "$ref": "#/definitions/@arcgis.core.Graphic.Graphic"
1352
2606
  },
1353
2607
  {
1354
- "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
2608
+ "$ref": "T_60"
1355
2609
  },
1356
2610
  {
1357
2611
  "$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
@@ -1369,41 +2623,41 @@
1369
2623
  "$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
1370
2624
  },
1371
2625
  {
1372
- "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
2626
+ "$ref": "T_60"
1373
2627
  }
1374
2628
  ]
1375
2629
  },
1376
2630
  "type": "array"
1377
2631
  },
1378
2632
  {
1379
- "$ref": "#/definitions/esri.Extent"
2633
+ "$ref": "#/definitions/@arcgis.core.geometry.Extent.Extent"
1380
2634
  },
1381
2635
  {
1382
- "$ref": "#/definitions/esri.Multipoint"
2636
+ "$ref": "#/definitions/@arcgis.core.geometry.Multipoint.Multipoint"
1383
2637
  },
1384
2638
  {
1385
- "$ref": "#/definitions/esri.Point"
2639
+ "$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
1386
2640
  },
1387
2641
  {
1388
- "$ref": "#/definitions/esri.Polygon"
2642
+ "$ref": "T_6"
1389
2643
  },
1390
2644
  {
1391
- "$ref": "#/definitions/esri.Polyline"
2645
+ "$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
1392
2646
  },
1393
2647
  {
1394
- "$ref": "#/definitions/esri.Mesh"
2648
+ "$ref": "#/definitions/@arcgis.core.geometry.Mesh.Mesh"
1395
2649
  },
1396
2650
  {
1397
2651
  "$ref": "#/definitions/esri.rest-api.FeatureJson.FeatureJson"
1398
2652
  },
1399
2653
  {
1400
- "$ref": "#/definitions/esri.FeatureSet"
2654
+ "$ref": "#/definitions/@arcgis.core.rest.support.FeatureSet.FeatureSet"
1401
2655
  },
1402
2656
  {
1403
2657
  "items": {
1404
2658
  "anyOf": [
1405
2659
  {
1406
- "$ref": "#/definitions/esri.Graphic"
2660
+ "$ref": "#/definitions/@arcgis.core.Graphic.Graphic"
1407
2661
  },
1408
2662
  {
1409
2663
  "$ref": "#/definitions/esri.rest-api.FeatureJson.FeatureJson"
@@ -1431,22 +2685,22 @@
1431
2685
  "items": {
1432
2686
  "anyOf": [
1433
2687
  {
1434
- "$ref": "#/definitions/esri.Extent"
2688
+ "$ref": "#/definitions/@arcgis.core.geometry.Extent.Extent"
1435
2689
  },
1436
2690
  {
1437
- "$ref": "#/definitions/esri.Multipoint"
2691
+ "$ref": "#/definitions/@arcgis.core.geometry.Multipoint.Multipoint"
1438
2692
  },
1439
2693
  {
1440
- "$ref": "#/definitions/esri.Point"
2694
+ "$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
1441
2695
  },
1442
2696
  {
1443
- "$ref": "#/definitions/esri.Polygon"
2697
+ "$ref": "T_6"
1444
2698
  },
1445
2699
  {
1446
- "$ref": "#/definitions/esri.Polyline"
2700
+ "$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
1447
2701
  },
1448
2702
  {
1449
- "$ref": "#/definitions/esri.Mesh"
2703
+ "$ref": "#/definitions/@arcgis.core.geometry.Mesh.Mesh"
1450
2704
  },
1451
2705
  {
1452
2706
  "$ref": "#/definitions/esri.rest-api.GeometryJson.PointJson"
@@ -1468,7 +2722,7 @@
1468
2722
  "type": "array"
1469
2723
  },
1470
2724
  {
1471
- "$ref": "#/definitions/esri.Geometry"
2725
+ "$ref": "#/definitions/@arcgis.core.geometry.Geometry.Geometry"
1472
2726
  }
1473
2727
  ],
1474
2728
  "description": "The geometry that was captured."
@@ -1480,43 +2734,43 @@
1480
2734
  "symbol": {
1481
2735
  "anyOf": [
1482
2736
  {
1483
- "$ref": "#/definitions/esri.PictureFillSymbol"
2737
+ "$ref": "#/definitions/@arcgis.core.symbols.PictureFillSymbol.PictureFillSymbol"
1484
2738
  },
1485
2739
  {
1486
- "$ref": "#/definitions/esri.PictureMarkerSymbol"
2740
+ "$ref": "#/definitions/@arcgis.core.symbols.PictureMarkerSymbol.PictureMarkerSymbol"
1487
2741
  },
1488
2742
  {
1489
- "$ref": "#/definitions/esri.SimpleFillSymbol"
2743
+ "$ref": "#/definitions/@arcgis.core.symbols.SimpleFillSymbol.SimpleFillSymbol"
1490
2744
  },
1491
2745
  {
1492
- "$ref": "#/definitions/esri.SimpleLineSymbol"
2746
+ "$ref": "#/definitions/@arcgis.core.symbols.SimpleLineSymbol.SimpleLineSymbol"
1493
2747
  },
1494
2748
  {
1495
- "$ref": "#/definitions/esri.SimpleMarkerSymbol"
2749
+ "$ref": "#/definitions/@arcgis.core.symbols.SimpleMarkerSymbol.SimpleMarkerSymbol"
1496
2750
  },
1497
2751
  {
1498
- "$ref": "#/definitions/esri.TextSymbol"
2752
+ "$ref": "#/definitions/@arcgis.core.symbols.TextSymbol.TextSymbol"
1499
2753
  },
1500
2754
  {
1501
- "$ref": "#/definitions/esri.CIMSymbol"
2755
+ "$ref": "#/definitions/@arcgis.core.symbols.CIMSymbol.CIMSymbol"
1502
2756
  },
1503
2757
  {
1504
- "$ref": "esri.LabelSymbol3D"
2758
+ "$ref": "#/definitions/@arcgis.core.symbols.LabelSymbol3D.LabelSymbol3D"
1505
2759
  },
1506
2760
  {
1507
- "$ref": "#/definitions/esri.LineSymbol3D"
2761
+ "$ref": "#/definitions/@arcgis.core.symbols.LineSymbol3D.LineSymbol3D"
1508
2762
  },
1509
2763
  {
1510
- "$ref": "#/definitions/esri.MeshSymbol3D"
2764
+ "$ref": "#/definitions/@arcgis.core.symbols.MeshSymbol3D.MeshSymbol3D"
1511
2765
  },
1512
2766
  {
1513
- "$ref": "#/definitions/esri.PointSymbol3D"
2767
+ "$ref": "#/definitions/@arcgis.core.symbols.PointSymbol3D.PointSymbol3D"
1514
2768
  },
1515
2769
  {
1516
- "$ref": "#/definitions/esri.PolygonSymbol3D"
2770
+ "$ref": "#/definitions/@arcgis.core.symbols.PolygonSymbol3D.PolygonSymbol3D"
1517
2771
  },
1518
2772
  {
1519
- "$ref": "esri.WebStyleSymbol"
2773
+ "$ref": "#/definitions/@arcgis.core.symbols.WebStyleSymbol.WebStyleSymbol"
1520
2774
  },
1521
2775
  {
1522
2776
  "$ref": "#/definitions/esri.rest-api.SymbolJson.CIMSymbolReferenceJson"
@@ -1564,7 +2818,7 @@
1564
2818
  "graphics": {
1565
2819
  "description": "The resulting graphics.",
1566
2820
  "items": {
1567
- "$ref": "#/definitions/esri.Graphic"
2821
+ "$ref": "#/definitions/@arcgis.core.Graphic.Graphic"
1568
2822
  },
1569
2823
  "type": "array"
1570
2824
  },
@@ -1652,7 +2906,7 @@
1652
2906
  "type": "number"
1653
2907
  },
1654
2908
  "point": {
1655
- "$ref": "#/definitions/esri.Point",
2909
+ "$ref": "#/definitions/@arcgis.core.geometry.Point.Point",
1656
2910
  "description": "The point to remove from the geometry. If this property is defined, the 'pointIndex' and 'partIndex' properties are ignored. If no point nor pointIndex/partIndex are specified, any active points will be deleted. If there are no active points, the entire geometry will be deleted."
1657
2911
  },
1658
2912
  "pointIndex": {
@@ -1886,7 +3140,7 @@
1886
3140
  "type": "string"
1887
3141
  },
1888
3142
  "message": {
1889
- "$ref": "#/definitions/TranslatableText",
3143
+ "$ref": "TranslatableText",
1890
3144
  "description": "The message to be displayed in the notification. Mobile only supports a string for this property."
1891
3145
  },
1892
3146
  "notificationGroup": {
@@ -2004,6 +3258,20 @@
2004
3258
  ],
2005
3259
  "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/}."
2006
3260
  },
3261
+ "DomainUnion": {
3262
+ "anyOf": [
3263
+ {
3264
+ "$ref": "#/definitions/@arcgis.core.layers.support.CodedValueDomain.CodedValueDomain"
3265
+ },
3266
+ {
3267
+ "$ref": "#/definitions/@arcgis.core.layers.support.InheritedDomain.InheritedDomain"
3268
+ },
3269
+ {
3270
+ "$ref": "#/definitions/@arcgis.core.layers.support.RangeDomain.RangeDomain"
3271
+ }
3272
+ ],
3273
+ "description": "Supported domain types. Domains are used to constrain allowable values of a layer."
3274
+ },
2007
3275
  "EdgesJson": {
2008
3276
  "anyOf": [
2009
3277
  {
@@ -2064,22 +3332,22 @@
2064
3332
  "symbol": {
2065
3333
  "anyOf": [
2066
3334
  {
2067
- "$ref": "#/definitions/esri.PictureFillSymbol"
3335
+ "$ref": "#/definitions/@arcgis.core.symbols.PictureFillSymbol.PictureFillSymbol"
2068
3336
  },
2069
3337
  {
2070
- "$ref": "#/definitions/esri.PictureMarkerSymbol"
3338
+ "$ref": "#/definitions/@arcgis.core.symbols.PictureMarkerSymbol.PictureMarkerSymbol"
2071
3339
  },
2072
3340
  {
2073
- "$ref": "#/definitions/esri.SimpleFillSymbol"
3341
+ "$ref": "#/definitions/@arcgis.core.symbols.SimpleFillSymbol.SimpleFillSymbol"
2074
3342
  },
2075
3343
  {
2076
- "$ref": "#/definitions/esri.SimpleLineSymbol"
3344
+ "$ref": "#/definitions/@arcgis.core.symbols.SimpleLineSymbol.SimpleLineSymbol"
2077
3345
  },
2078
3346
  {
2079
- "$ref": "#/definitions/esri.SimpleMarkerSymbol"
3347
+ "$ref": "#/definitions/@arcgis.core.symbols.SimpleMarkerSymbol.SimpleMarkerSymbol"
2080
3348
  },
2081
3349
  {
2082
- "$ref": "#/definitions/esri.TextSymbol"
3350
+ "$ref": "#/definitions/@arcgis.core.symbols.TextSymbol.TextSymbol"
2083
3351
  },
2084
3352
  {
2085
3353
  "$ref": "Symbol"
@@ -2148,7 +3416,7 @@
2148
3416
  "coincidentFeatures": {
2149
3417
  "description": "Any coincident Features that were included in the geometry editing session, if topological editing was enabled. Web only.",
2150
3418
  "items": {
2151
- "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
3419
+ "$ref": "T_60"
2152
3420
  },
2153
3421
  "type": "array"
2154
3422
  },
@@ -2182,22 +3450,22 @@
2182
3450
  "symbol": {
2183
3451
  "anyOf": [
2184
3452
  {
2185
- "$ref": "#/definitions/esri.PictureFillSymbol"
3453
+ "$ref": "#/definitions/@arcgis.core.symbols.PictureFillSymbol.PictureFillSymbol"
2186
3454
  },
2187
3455
  {
2188
- "$ref": "#/definitions/esri.PictureMarkerSymbol"
3456
+ "$ref": "#/definitions/@arcgis.core.symbols.PictureMarkerSymbol.PictureMarkerSymbol"
2189
3457
  },
2190
3458
  {
2191
- "$ref": "#/definitions/esri.SimpleFillSymbol"
3459
+ "$ref": "#/definitions/@arcgis.core.symbols.SimpleFillSymbol.SimpleFillSymbol"
2192
3460
  },
2193
3461
  {
2194
- "$ref": "#/definitions/esri.SimpleLineSymbol"
3462
+ "$ref": "#/definitions/@arcgis.core.symbols.SimpleLineSymbol.SimpleLineSymbol"
2195
3463
  },
2196
3464
  {
2197
- "$ref": "#/definitions/esri.SimpleMarkerSymbol"
3465
+ "$ref": "#/definitions/@arcgis.core.symbols.SimpleMarkerSymbol.SimpleMarkerSymbol"
2198
3466
  },
2199
3467
  {
2200
- "$ref": "#/definitions/esri.TextSymbol"
3468
+ "$ref": "#/definitions/@arcgis.core.symbols.TextSymbol.TextSymbol"
2201
3469
  },
2202
3470
  {
2203
3471
  "$ref": "Symbol"
@@ -2290,6 +3558,54 @@
2290
3558
  ],
2291
3559
  "description": "Elevation layers that can be used in a web scene's ground."
2292
3560
  },
3561
+ "ElevationLayerUnion": {
3562
+ "anyOf": [
3563
+ {
3564
+ "$ref": "#/definitions/@arcgis.core.layers.ElevationLayer.ElevationLayer"
3565
+ },
3566
+ {
3567
+ "$ref": "#/definitions/@arcgis.core.layers.BaseElevationLayer.BaseElevationLayer"
3568
+ }
3569
+ ],
3570
+ "description": "Union of supported ground elevation layer types."
3571
+ },
3572
+ "ElevationProfileLineUnion": {
3573
+ "anyOf": [
3574
+ {
3575
+ "$ref": "#/definitions/@arcgis.core.analysis.ElevationProfile.ElevationProfileLineGround.ElevationProfileLineGround"
3576
+ },
3577
+ {
3578
+ "$ref": "#/definitions/@arcgis.core.analysis.ElevationProfile.ElevationProfileLineInput.ElevationProfileLineInput"
3579
+ },
3580
+ {
3581
+ "$ref": "#/definitions/@arcgis.core.analysis.ElevationProfile.ElevationProfileLineQuery.ElevationProfileLineQuery"
3582
+ },
3583
+ {
3584
+ "$ref": "#/definitions/@arcgis.core.analysis.ElevationProfile.ElevationProfileLineScene.ElevationProfileLineScene"
3585
+ }
3586
+ ],
3587
+ "description": "Union of all supported elevation profile lines."
3588
+ },
3589
+ "Error": {
3590
+ "additionalProperties": false,
3591
+ "properties": {
3592
+ "cause": {},
3593
+ "message": {
3594
+ "type": "string"
3595
+ },
3596
+ "name": {
3597
+ "type": "string"
3598
+ },
3599
+ "stack": {
3600
+ "type": "string"
3601
+ }
3602
+ },
3603
+ "required": [
3604
+ "message",
3605
+ "name"
3606
+ ],
3607
+ "type": "object"
3608
+ },
2293
3609
  "EvaluateWorkflowArgs": {
2294
3610
  "additionalProperties": false,
2295
3611
  "description": "Arguments for the workflow.evaluate command.",
@@ -2343,10 +3659,23 @@
2343
3659
  ],
2344
3660
  "description": "Feature reductions declutter the screen by hiding features that would otherwise intersect with other features on screen."
2345
3661
  },
3662
+ "FeatureReductionUnion": {
3663
+ "anyOf": [
3664
+ {
3665
+ "$ref": "#/definitions/@arcgis.core.layers.support.FeatureReductionBinning.FeatureReductionBinning"
3666
+ },
3667
+ {
3668
+ "$ref": "#/definitions/@arcgis.core.layers.support.FeatureReductionCluster.FeatureReductionCluster"
3669
+ },
3670
+ {
3671
+ "$ref": "#/definitions/@arcgis.core.layers.support.FeatureReductionSelection.FeatureReductionSelection"
3672
+ }
3673
+ ]
3674
+ },
2346
3675
  "Features": {
2347
3676
  "anyOf": [
2348
3677
  {
2349
- "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
3678
+ "$ref": "T_60"
2350
3679
  },
2351
3680
  {
2352
3681
  "$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
@@ -2364,7 +3693,7 @@
2364
3693
  "$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
2365
3694
  },
2366
3695
  {
2367
- "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
3696
+ "$ref": "T_60"
2368
3697
  }
2369
3698
  ]
2370
3699
  },
@@ -2382,7 +3711,7 @@
2382
3711
  "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
2383
3712
  },
2384
3713
  {
2385
- "$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
3714
+ "$ref": "esri.ChangeEvent.Target"
2386
3715
  },
2387
3716
  {
2388
3717
  "$ref": "@vertigis.arcgis-extensions.data.FeatureList.FeatureList"
@@ -2397,7 +3726,7 @@
2397
3726
  "$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
2398
3727
  },
2399
3728
  {
2400
- "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
3729
+ "$ref": "T_60"
2401
3730
  }
2402
3731
  ]
2403
3732
  },
@@ -2406,6 +3735,17 @@
2406
3735
  ],
2407
3736
  "description": "Represents one or more features."
2408
3737
  },
3738
+ "FieldFormatUnion": {
3739
+ "anyOf": [
3740
+ {
3741
+ "$ref": "#/definitions/@arcgis.core.layers.support.DateTimeFieldFormat.DateTimeFieldFormat"
3742
+ },
3743
+ {
3744
+ "$ref": "#/definitions/@arcgis.core.layers.support.NumberFieldFormat.NumberFieldFormat"
3745
+ }
3746
+ ],
3747
+ "description": "Supported field formatting types."
3748
+ },
2409
3749
  "FilterModeJson": {
2410
3750
  "anyOf": [
2411
3751
  {
@@ -2417,6 +3757,29 @@
2417
3757
  ],
2418
3758
  "description": "Filter mode represents the way elements draw when participating in a filter block."
2419
3759
  },
3760
+ "FormElementUnion": {
3761
+ "anyOf": [
3762
+ {
3763
+ "$ref": "#/definitions/@arcgis.core.form.elements.FieldElement.FieldElement"
3764
+ },
3765
+ {
3766
+ "$ref": "#/definitions/@arcgis.core.form.elements.AttachmentElement.AttachmentElement"
3767
+ },
3768
+ {
3769
+ "$ref": "#/definitions/@arcgis.core.form.elements.RelationshipElement.RelationshipElement"
3770
+ },
3771
+ {
3772
+ "$ref": "#/definitions/@arcgis.core.form.elements.TextElement.TextElement"
3773
+ },
3774
+ {
3775
+ "$ref": "#/definitions/@arcgis.core.form.elements.GroupElement.GroupElement"
3776
+ },
3777
+ {
3778
+ "$ref": "#/definitions/@arcgis.core.form.elements.UtilityNetworkAssociationsElement.UtilityNetworkAssociationsElement"
3779
+ }
3780
+ ],
3781
+ "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."
3782
+ },
2420
3783
  "FromGraphicsArgs": {
2421
3784
  "additionalProperties": false,
2422
3785
  "description": "Arguments for the \"results.from-graphics\" operation.",
@@ -2440,7 +3803,7 @@
2440
3803
  "layer": {
2441
3804
  "anyOf": [
2442
3805
  {
2443
- "$ref": "#/definitions/esri.Layer"
3806
+ "$ref": "#/definitions/@arcgis.core.layers.Layer.Layer"
2444
3807
  },
2445
3808
  {
2446
3809
  "type": "string"
@@ -2459,7 +3822,7 @@
2459
3822
  "sublayer": {
2460
3823
  "anyOf": [
2461
3824
  {
2462
- "$ref": "#/definitions/esri.Sublayer"
3825
+ "$ref": "T_9"
2463
3826
  },
2464
3827
  {
2465
3828
  "type": "number"
@@ -2517,7 +3880,7 @@
2517
3880
  "type": "boolean"
2518
3881
  },
2519
3882
  "position": {
2520
- "$ref": "#/definitions/esri.Point",
3883
+ "$ref": "#/definitions/@arcgis.core.geometry.Point.Point",
2521
3884
  "description": "The current position."
2522
3885
  }
2523
3886
  },
@@ -2590,10 +3953,10 @@
2590
3953
  "$ref": "#/definitions/CreateGraphicsResult"
2591
3954
  },
2592
3955
  {
2593
- "$ref": "#/definitions/esri.Graphic"
3956
+ "$ref": "#/definitions/@arcgis.core.Graphic.Graphic"
2594
3957
  },
2595
3958
  {
2596
- "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
3959
+ "$ref": "T_60"
2597
3960
  },
2598
3961
  {
2599
3962
  "$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
@@ -2611,41 +3974,41 @@
2611
3974
  "$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
2612
3975
  },
2613
3976
  {
2614
- "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
3977
+ "$ref": "T_60"
2615
3978
  }
2616
3979
  ]
2617
3980
  },
2618
3981
  "type": "array"
2619
3982
  },
2620
3983
  {
2621
- "$ref": "#/definitions/esri.Extent"
3984
+ "$ref": "#/definitions/@arcgis.core.geometry.Extent.Extent"
2622
3985
  },
2623
3986
  {
2624
- "$ref": "#/definitions/esri.Multipoint"
3987
+ "$ref": "#/definitions/@arcgis.core.geometry.Multipoint.Multipoint"
2625
3988
  },
2626
3989
  {
2627
- "$ref": "#/definitions/esri.Point"
3990
+ "$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
2628
3991
  },
2629
3992
  {
2630
- "$ref": "#/definitions/esri.Polygon"
3993
+ "$ref": "T_6"
2631
3994
  },
2632
3995
  {
2633
- "$ref": "#/definitions/esri.Polyline"
3996
+ "$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
2634
3997
  },
2635
3998
  {
2636
- "$ref": "#/definitions/esri.Mesh"
3999
+ "$ref": "#/definitions/@arcgis.core.geometry.Mesh.Mesh"
2637
4000
  },
2638
4001
  {
2639
4002
  "$ref": "#/definitions/esri.rest-api.FeatureJson.FeatureJson"
2640
4003
  },
2641
4004
  {
2642
- "$ref": "#/definitions/esri.FeatureSet"
4005
+ "$ref": "#/definitions/@arcgis.core.rest.support.FeatureSet.FeatureSet"
2643
4006
  },
2644
4007
  {
2645
4008
  "items": {
2646
4009
  "anyOf": [
2647
4010
  {
2648
- "$ref": "#/definitions/esri.Graphic"
4011
+ "$ref": "#/definitions/@arcgis.core.Graphic.Graphic"
2649
4012
  },
2650
4013
  {
2651
4014
  "$ref": "#/definitions/esri.rest-api.FeatureJson.FeatureJson"
@@ -2673,22 +4036,22 @@
2673
4036
  "items": {
2674
4037
  "anyOf": [
2675
4038
  {
2676
- "$ref": "#/definitions/esri.Extent"
4039
+ "$ref": "#/definitions/@arcgis.core.geometry.Extent.Extent"
2677
4040
  },
2678
4041
  {
2679
- "$ref": "#/definitions/esri.Multipoint"
4042
+ "$ref": "#/definitions/@arcgis.core.geometry.Multipoint.Multipoint"
2680
4043
  },
2681
4044
  {
2682
- "$ref": "#/definitions/esri.Point"
4045
+ "$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
2683
4046
  },
2684
4047
  {
2685
- "$ref": "#/definitions/esri.Polygon"
4048
+ "$ref": "T_6"
2686
4049
  },
2687
4050
  {
2688
- "$ref": "#/definitions/esri.Polyline"
4051
+ "$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
2689
4052
  },
2690
4053
  {
2691
- "$ref": "#/definitions/esri.Mesh"
4054
+ "$ref": "#/definitions/@arcgis.core.geometry.Mesh.Mesh"
2692
4055
  },
2693
4056
  {
2694
4057
  "$ref": "#/definitions/esri.rest-api.GeometryJson.PointJson"
@@ -2712,25 +4075,68 @@
2712
4075
  ],
2713
4076
  "description": "An object that is convertible to one or more geometries."
2714
4077
  },
4078
+ "GeometryUnion": {
4079
+ "anyOf": [
4080
+ {
4081
+ "$ref": "#/definitions/@arcgis.core.geometry.Extent.Extent"
4082
+ },
4083
+ {
4084
+ "$ref": "#/definitions/@arcgis.core.geometry.Multipoint.Multipoint"
4085
+ },
4086
+ {
4087
+ "$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
4088
+ },
4089
+ {
4090
+ "$ref": "T_6"
4091
+ },
4092
+ {
4093
+ "$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
4094
+ },
4095
+ {
4096
+ "$ref": "#/definitions/@arcgis.core.geometry.Mesh.Mesh"
4097
+ }
4098
+ ],
4099
+ "description": "Union of all geometries."
4100
+ },
4101
+ "GeometryWithoutMeshUnion": {
4102
+ "anyOf": [
4103
+ {
4104
+ "$ref": "#/definitions/@arcgis.core.geometry.Extent.Extent"
4105
+ },
4106
+ {
4107
+ "$ref": "#/definitions/@arcgis.core.geometry.Multipoint.Multipoint"
4108
+ },
4109
+ {
4110
+ "$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
4111
+ },
4112
+ {
4113
+ "$ref": "T_6"
4114
+ },
4115
+ {
4116
+ "$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
4117
+ }
4118
+ ],
4119
+ "description": "Union of all non-mesh geometries."
4120
+ },
2715
4121
  "GraphicsLike": {
2716
4122
  "anyOf": [
2717
4123
  {
2718
4124
  "$ref": "#/definitions/CreateGraphicsResult"
2719
4125
  },
2720
4126
  {
2721
- "$ref": "#/definitions/esri.Graphic"
4127
+ "$ref": "#/definitions/@arcgis.core.Graphic.Graphic"
2722
4128
  },
2723
4129
  {
2724
4130
  "$ref": "#/definitions/esri.rest-api.FeatureJson.FeatureJson"
2725
4131
  },
2726
4132
  {
2727
- "$ref": "#/definitions/esri.FeatureSet"
4133
+ "$ref": "#/definitions/@arcgis.core.rest.support.FeatureSet.FeatureSet"
2728
4134
  },
2729
4135
  {
2730
4136
  "items": {
2731
4137
  "anyOf": [
2732
4138
  {
2733
- "$ref": "#/definitions/esri.Graphic"
4139
+ "$ref": "#/definitions/@arcgis.core.Graphic.Graphic"
2734
4140
  },
2735
4141
  {
2736
4142
  "$ref": "#/definitions/esri.rest-api.FeatureJson.FeatureJson"
@@ -2818,7 +4224,7 @@
2818
4224
  "type": "array"
2819
4225
  },
2820
4226
  "outSpatialReference": {
2821
- "$ref": "#/definitions/esri.SpatialReference",
4227
+ "$ref": "#/definitions/@arcgis.core.geometry.SpatialReference.SpatialReference",
2822
4228
  "description": "The spatial reference for the returned geometry. Not supported in VertiGIS Studio Mobile."
2823
4229
  },
2824
4230
  "pointTolerance": {
@@ -2863,7 +4269,7 @@
2863
4269
  "description": "Map(s) to use for the command/operation."
2864
4270
  },
2865
4271
  "newPoint": {
2866
- "$ref": "#/definitions/esri.Point",
4272
+ "$ref": "#/definitions/@arcgis.core.geometry.Point.Point",
2867
4273
  "description": "The new point to be added."
2868
4274
  },
2869
4275
  "partIndex": {
@@ -2894,7 +4300,7 @@
2894
4300
  "$ref": "#/definitions/@vertigis.arcgis-extensions.data._TableExtension.TableReference"
2895
4301
  },
2896
4302
  {
2897
- "$ref": "#/definitions/esri.Layer"
4303
+ "$ref": "#/definitions/@arcgis.core.layers.Layer.Layer"
2898
4304
  },
2899
4305
  {
2900
4306
  "$ref": "@vertigis.arcgis-extensions.mapping._LayerExtension.LayerExtension"
@@ -2944,7 +4350,7 @@
2944
4350
  "$ref": "#/definitions/@vertigis.arcgis-extensions.data._TableExtension.TableReference"
2945
4351
  },
2946
4352
  {
2947
- "$ref": "#/definitions/esri.Layer"
4353
+ "$ref": "#/definitions/@arcgis.core.layers.Layer.Layer"
2948
4354
  },
2949
4355
  {
2950
4356
  "$ref": "@vertigis.arcgis-extensions.mapping._LayerExtension.LayerExtension"
@@ -3095,6 +4501,39 @@
3095
4501
  ],
3096
4502
  "description": "A reference to a model (using its ID or model instance)."
3097
4503
  },
4504
+ "NestableAttachmentInputUnion": {
4505
+ "anyOf": [
4506
+ {
4507
+ "$ref": "#/definitions/@arcgis.core.form.elements.inputs.attachments.AudioInput.AudioInput"
4508
+ },
4509
+ {
4510
+ "$ref": "#/definitions/@arcgis.core.form.elements.inputs.attachments.DocumentInput.DocumentInput"
4511
+ },
4512
+ {
4513
+ "$ref": "#/definitions/@arcgis.core.form.elements.inputs.attachments.ImageInput.ImageInput"
4514
+ },
4515
+ {
4516
+ "$ref": "#/definitions/@arcgis.core.form.elements.inputs.attachments.SignatureInput.SignatureInput"
4517
+ },
4518
+ {
4519
+ "$ref": "#/definitions/@arcgis.core.form.elements.inputs.attachments.VideoInput.VideoInput"
4520
+ }
4521
+ ]
4522
+ },
4523
+ "NestableFormElementUnion": {
4524
+ "anyOf": [
4525
+ {
4526
+ "$ref": "#/definitions/@arcgis.core.form.elements.FieldElement.FieldElement"
4527
+ },
4528
+ {
4529
+ "$ref": "#/definitions/@arcgis.core.form.elements.RelationshipElement.RelationshipElement"
4530
+ },
4531
+ {
4532
+ "$ref": "#/definitions/@arcgis.core.form.elements.TextElement.TextElement"
4533
+ }
4534
+ ],
4535
+ "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/)."
4536
+ },
3098
4537
  "NotificationCategory": {
3099
4538
  "description": "A category for a notification that affects the color and icon used.",
3100
4539
  "enum": [
@@ -3215,13 +4654,24 @@
3215
4654
  "$ref": "#/definitions/esri.rest-api.WebTileLayerJson.WebTileLayerJson"
3216
4655
  },
3217
4656
  {
3218
- "$ref": "#/definitions/esri.rest-api.WFSLayerJson.WFSLayerJson"
4657
+ "$ref": "#/definitions/esri.rest-api.WFSLayerJson.WFSLayerJson"
4658
+ },
4659
+ {
4660
+ "$ref": "#/definitions/esri.rest-api.WMSLayerJson.WMSLayerJson"
4661
+ }
4662
+ ],
4663
+ "description": "An operational layer in a web map/scene."
4664
+ },
4665
+ "ParquetGeometryEncodingUnion": {
4666
+ "anyOf": [
4667
+ {
4668
+ "$ref": "#/definitions/@arcgis.core.layers.support.ParquetGeometryEncodingLocation.ParquetGeometryEncodingLocation"
3219
4669
  },
3220
4670
  {
3221
- "$ref": "#/definitions/esri.rest-api.WMSLayerJson.WMSLayerJson"
4671
+ "$ref": "#/definitions/@arcgis.core.layers.support.ParquetGeometryEncodingWkb.ParquetGeometryEncodingWkb"
3222
4672
  }
3223
4673
  ],
3224
- "description": "An operational layer in a web map/scene."
4674
+ "description": "Supported Parquet geometry encoding types."
3225
4675
  },
3226
4676
  "PointCloudFilterJson": {
3227
4677
  "anyOf": [
@@ -3237,6 +4687,17 @@
3237
4687
  ],
3238
4688
  "description": "Filters applied to the pointCloud which will hide a point.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/pointCloudFilter/}."
3239
4689
  },
4690
+ "PopupPositionResult": {
4691
+ "enum": [
4692
+ "bottom-center",
4693
+ "bottom-left",
4694
+ "bottom-right",
4695
+ "top-center",
4696
+ "top-left",
4697
+ "top-right"
4698
+ ],
4699
+ "type": "string"
4700
+ },
3240
4701
  "Position": {
3241
4702
  "description": "A position for a display notification.",
3242
4703
  "enum": [
@@ -3326,6 +4787,32 @@
3326
4787
  ],
3327
4788
  "description": "A renderer.\n\nPart of the ArcGIS REST API (see http://resources.arcgis.com/en/help/rest/apiref/renderer.html)."
3328
4789
  },
4790
+ "RendererUnion": {
4791
+ "anyOf": [
4792
+ {
4793
+ "$ref": "#/definitions/@arcgis.core.renderers.SimpleRenderer.SimpleRenderer"
4794
+ },
4795
+ {
4796
+ "$ref": "#/definitions/@arcgis.core.renderers.ClassBreaksRenderer.ClassBreaksRenderer"
4797
+ },
4798
+ {
4799
+ "$ref": "#/definitions/@arcgis.core.renderers.UniqueValueRenderer.UniqueValueRenderer"
4800
+ },
4801
+ {
4802
+ "$ref": "#/definitions/@arcgis.core.renderers.DotDensityRenderer.DotDensityRenderer"
4803
+ },
4804
+ {
4805
+ "$ref": "#/definitions/@arcgis.core.renderers.DictionaryRenderer.DictionaryRenderer"
4806
+ },
4807
+ {
4808
+ "$ref": "#/definitions/@arcgis.core.renderers.PieChartRenderer.PieChartRenderer"
4809
+ },
4810
+ {
4811
+ "$ref": "#/definitions/@arcgis.core.renderers.HeatmapRenderer.HeatmapRenderer"
4812
+ }
4813
+ ],
4814
+ "description": "Union of renderers."
4815
+ },
3329
4816
  "Results": {
3330
4817
  "additionalProperties": false,
3331
4818
  "description": "Feature results from an operation.",
@@ -3369,7 +4856,7 @@
3369
4856
  "type": "number"
3370
4857
  },
3371
4858
  "extent": {
3372
- "$ref": "#/definitions/esri.Extent",
4859
+ "$ref": "#/definitions/@arcgis.core.geometry.Extent.Extent",
3373
4860
  "description": "The map extent. Defaults to the map's current extent. The actual print extent is calculated from the center point of the map extent, the print scale and the layout frame- or the output dimensions."
3374
4861
  },
3375
4862
  "id": {
@@ -3428,11 +4915,11 @@
3428
4915
  "type": "number"
3429
4916
  },
3430
4917
  "extent": {
3431
- "$ref": "#/definitions/esri.Extent",
4918
+ "$ref": "#/definitions/@arcgis.core.geometry.Extent.Extent",
3432
4919
  "description": "The initial extent of the 2D map(s). Defaults to the map's current extent. If scale is provided, only the center point is used."
3433
4920
  },
3434
4921
  "grid": {
3435
- "$ref": "#/definitions/esri.SpatialReference",
4922
+ "$ref": "#/definitions/@arcgis.core.geometry.SpatialReference.SpatialReference",
3436
4923
  "description": "The WKID of the spatial reference used to draw a grid on the map(s)."
3437
4924
  },
3438
4925
  "id": {
@@ -3468,7 +4955,7 @@
3468
4955
  "type": "string"
3469
4956
  },
3470
4957
  "viewpoint": {
3471
- "$ref": "#/definitions/esri.Viewpoint",
4958
+ "$ref": "#/definitions/@arcgis.core.Viewpoint.Viewpoint",
3472
4959
  "description": "The initial viewpoint of the 3D map(s). Defaults to the scene's current viewpoint."
3473
4960
  }
3474
4961
  },
@@ -3532,7 +5019,7 @@
3532
5019
  "type": "boolean"
3533
5020
  },
3534
5021
  "mapViewpoint": {
3535
- "$ref": "#/definitions/esri.Viewpoint",
5022
+ "$ref": "#/definitions/@arcgis.core.Viewpoint.Viewpoint",
3536
5023
  "description": "The map Viewpoint at the time of the search. Mobile only."
3537
5024
  },
3538
5025
  "maps": {
@@ -3548,11 +5035,11 @@
3548
5035
  "type": "number"
3549
5036
  },
3550
5037
  "near": {
3551
- "$ref": "#/definitions/esri.Point",
5038
+ "$ref": "#/definitions/@arcgis.core.geometry.Point.Point",
3552
5039
  "description": "If specified, this will influence the score of spatial features based on their proximity to this point. Most commonly this would be the user's current location, but can be any point of interest. This option requires searchArea to also be specified. Not supported in VertiGIS Studio Mobile."
3553
5040
  },
3554
5041
  "outSpatialReference": {
3555
- "$ref": "#/definitions/esri.SpatialReference",
5042
+ "$ref": "#/definitions/@arcgis.core.geometry.SpatialReference.SpatialReference",
3556
5043
  "description": "The spatial reference for the returned geometry. Not supported in VertiGIS Studio Mobile."
3557
5044
  },
3558
5045
  "searchArea": {
@@ -3694,7 +5181,7 @@
3694
5181
  "ShowResultsArgs": {
3695
5182
  "anyOf": [
3696
5183
  {
3697
- "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
5184
+ "$ref": "T_60"
3698
5185
  },
3699
5186
  {
3700
5187
  "$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
@@ -3712,7 +5199,7 @@
3712
5199
  "$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
3713
5200
  },
3714
5201
  {
3715
- "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
5202
+ "$ref": "T_60"
3716
5203
  }
3717
5204
  ]
3718
5205
  },
@@ -3865,7 +5352,7 @@
3865
5352
  "type": "array"
3866
5353
  },
3867
5354
  "guideColor": {
3868
- "$ref": "#/definitions/esri.Color",
5355
+ "$ref": "#/definitions/@arcgis.core.Color.Color",
3869
5356
  "description": "The color to use for snapping guides generated by this source."
3870
5357
  },
3871
5358
  "required": {
@@ -4019,7 +5506,7 @@
4019
5506
  "lineSymbol": {
4020
5507
  "anyOf": [
4021
5508
  {
4022
- "$ref": "#/definitions/esri.SimpleLineSymbol"
5509
+ "$ref": "#/definitions/@arcgis.core.symbols.SimpleLineSymbol.SimpleLineSymbol"
4023
5510
  },
4024
5511
  {
4025
5512
  "$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleLineSymbolJson"
@@ -4030,7 +5517,7 @@
4030
5517
  "lineSymbol3D": {
4031
5518
  "anyOf": [
4032
5519
  {
4033
- "$ref": "#/definitions/esri.LineSymbol3D"
5520
+ "$ref": "#/definitions/@arcgis.core.symbols.LineSymbol3D.LineSymbol3D"
4034
5521
  },
4035
5522
  {
4036
5523
  "$ref": "#/definitions/esri.rest-api.SymbolJson.LineSymbol3DJson"
@@ -4041,10 +5528,10 @@
4041
5528
  "pointSymbol": {
4042
5529
  "anyOf": [
4043
5530
  {
4044
- "$ref": "#/definitions/esri.PictureMarkerSymbol"
5531
+ "$ref": "#/definitions/@arcgis.core.symbols.PictureMarkerSymbol.PictureMarkerSymbol"
4045
5532
  },
4046
5533
  {
4047
- "$ref": "#/definitions/esri.SimpleMarkerSymbol"
5534
+ "$ref": "#/definitions/@arcgis.core.symbols.SimpleMarkerSymbol.SimpleMarkerSymbol"
4048
5535
  },
4049
5536
  {
4050
5537
  "$ref": "#/definitions/esri.rest-api.SymbolJson.PictureMarkerSymbolJson"
@@ -4058,7 +5545,7 @@
4058
5545
  "pointSymbol3D": {
4059
5546
  "anyOf": [
4060
5547
  {
4061
- "$ref": "#/definitions/esri.PointSymbol3D"
5548
+ "$ref": "#/definitions/@arcgis.core.symbols.PointSymbol3D.PointSymbol3D"
4062
5549
  },
4063
5550
  {
4064
5551
  "$ref": "#/definitions/esri.rest-api.SymbolJson.PointSymbol3DJson"
@@ -4069,10 +5556,10 @@
4069
5556
  "polygonSymbol": {
4070
5557
  "anyOf": [
4071
5558
  {
4072
- "$ref": "#/definitions/esri.PictureFillSymbol"
5559
+ "$ref": "#/definitions/@arcgis.core.symbols.PictureFillSymbol.PictureFillSymbol"
4073
5560
  },
4074
5561
  {
4075
- "$ref": "#/definitions/esri.SimpleFillSymbol"
5562
+ "$ref": "#/definitions/@arcgis.core.symbols.SimpleFillSymbol.SimpleFillSymbol"
4076
5563
  },
4077
5564
  {
4078
5565
  "$ref": "#/definitions/esri.rest-api.SymbolJson.PictureFillSymbolJson"
@@ -4086,7 +5573,7 @@
4086
5573
  "polygonSymbol3D": {
4087
5574
  "anyOf": [
4088
5575
  {
4089
- "$ref": "#/definitions/esri.PolygonSymbol3D"
5576
+ "$ref": "#/definitions/@arcgis.core.symbols.PolygonSymbol3D.PolygonSymbol3D"
4090
5577
  },
4091
5578
  {
4092
5579
  "$ref": "#/definitions/esri.rest-api.SymbolJson.PolygonSymbol3DJson"
@@ -4097,6 +5584,50 @@
4097
5584
  },
4098
5585
  "type": "object"
4099
5586
  },
5587
+ "SymbolUnion": {
5588
+ "anyOf": [
5589
+ {
5590
+ "$ref": "#/definitions/@arcgis.core.symbols.PictureFillSymbol.PictureFillSymbol"
5591
+ },
5592
+ {
5593
+ "$ref": "#/definitions/@arcgis.core.symbols.PictureMarkerSymbol.PictureMarkerSymbol"
5594
+ },
5595
+ {
5596
+ "$ref": "#/definitions/@arcgis.core.symbols.SimpleFillSymbol.SimpleFillSymbol"
5597
+ },
5598
+ {
5599
+ "$ref": "#/definitions/@arcgis.core.symbols.SimpleLineSymbol.SimpleLineSymbol"
5600
+ },
5601
+ {
5602
+ "$ref": "#/definitions/@arcgis.core.symbols.SimpleMarkerSymbol.SimpleMarkerSymbol"
5603
+ },
5604
+ {
5605
+ "$ref": "#/definitions/@arcgis.core.symbols.TextSymbol.TextSymbol"
5606
+ },
5607
+ {
5608
+ "$ref": "#/definitions/@arcgis.core.symbols.CIMSymbol.CIMSymbol"
5609
+ },
5610
+ {
5611
+ "$ref": "#/definitions/@arcgis.core.symbols.LabelSymbol3D.LabelSymbol3D"
5612
+ },
5613
+ {
5614
+ "$ref": "#/definitions/@arcgis.core.symbols.LineSymbol3D.LineSymbol3D"
5615
+ },
5616
+ {
5617
+ "$ref": "#/definitions/@arcgis.core.symbols.MeshSymbol3D.MeshSymbol3D"
5618
+ },
5619
+ {
5620
+ "$ref": "#/definitions/@arcgis.core.symbols.PointSymbol3D.PointSymbol3D"
5621
+ },
5622
+ {
5623
+ "$ref": "#/definitions/@arcgis.core.symbols.PolygonSymbol3D.PolygonSymbol3D"
5624
+ },
5625
+ {
5626
+ "$ref": "#/definitions/@arcgis.core.symbols.WebStyleSymbol.WebStyleSymbol"
5627
+ }
5628
+ ],
5629
+ "description": "Union of all symbols."
5630
+ },
4100
5631
  "TargetsResultsSetArgs": {
4101
5632
  "additionalProperties": false,
4102
5633
  "description": "Arguments for various commands that target a result set of features.",
@@ -4129,7 +5660,7 @@
4129
5660
  "TranslatableText": {
4130
5661
  "anyOf": [
4131
5662
  {
4132
- "$ref": "#/definitions/TranslateOptions"
5663
+ "$ref": "TranslateOptions"
4133
5664
  },
4134
5665
  {
4135
5666
  "type": "string"
@@ -4249,7 +5780,7 @@
4249
5780
  "description": "The format of the geometry in this table."
4250
5781
  },
4251
5782
  "inSpatialReference": {
4252
- "$ref": "#/definitions/esri.SpatialReference",
5783
+ "$ref": "#/definitions/@arcgis.core.geometry.SpatialReference.SpatialReference",
4253
5784
  "description": "The spatial reference of the geometry in this table."
4254
5785
  },
4255
5786
  "includeHeaderRow": {
@@ -4272,7 +5803,7 @@
4272
5803
  "type": "array"
4273
5804
  },
4274
5805
  "outSpatialReference": {
4275
- "$ref": "#/definitions/esri.SpatialReference",
5806
+ "$ref": "#/definitions/@arcgis.core.geometry.SpatialReference.SpatialReference",
4276
5807
  "description": "The output spatial reference of the converted table."
4277
5808
  },
4278
5809
  "primaryKeyField": {
@@ -4440,16 +5971,16 @@
4440
5971
  "viewpoint": {
4441
5972
  "anyOf": [
4442
5973
  {
4443
- "$ref": "@vertigis.arcgis-extensions.mapping.Bookmark.BookmarkProperties"
5974
+ "$ref": "#/definitions/@vertigis.arcgis-extensions.mapping.Bookmark.BookmarkProperties"
4444
5975
  },
4445
5976
  {
4446
- "$ref": "#/definitions/esri.Viewpoint"
5977
+ "$ref": "#/definitions/@arcgis.core.Viewpoint.Viewpoint"
4447
5978
  },
4448
5979
  {
4449
5980
  "$ref": "#/definitions/esri.rest-api.ViewpointJson.ViewpointJson"
4450
5981
  },
4451
5982
  {
4452
- "$ref": "@vertigis.arcgis-extensions.mapping.Bookmark.Bookmark"
5983
+ "$ref": "T_52"
4453
5984
  },
4454
5985
  {
4455
5986
  "type": "string"
@@ -4554,10 +6085,10 @@
4554
6085
  "$ref": "#/definitions/CreateGraphicsResult"
4555
6086
  },
4556
6087
  {
4557
- "$ref": "#/definitions/esri.Graphic"
6088
+ "$ref": "#/definitions/@arcgis.core.Graphic.Graphic"
4558
6089
  },
4559
6090
  {
4560
- "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
6091
+ "$ref": "T_60"
4561
6092
  },
4562
6093
  {
4563
6094
  "$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
@@ -4575,41 +6106,41 @@
4575
6106
  "$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
4576
6107
  },
4577
6108
  {
4578
- "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
6109
+ "$ref": "T_60"
4579
6110
  }
4580
6111
  ]
4581
6112
  },
4582
6113
  "type": "array"
4583
6114
  },
4584
6115
  {
4585
- "$ref": "#/definitions/esri.Extent"
6116
+ "$ref": "#/definitions/@arcgis.core.geometry.Extent.Extent"
4586
6117
  },
4587
6118
  {
4588
- "$ref": "#/definitions/esri.Multipoint"
6119
+ "$ref": "#/definitions/@arcgis.core.geometry.Multipoint.Multipoint"
4589
6120
  },
4590
6121
  {
4591
- "$ref": "#/definitions/esri.Point"
6122
+ "$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
4592
6123
  },
4593
6124
  {
4594
- "$ref": "#/definitions/esri.Polygon"
6125
+ "$ref": "T_6"
4595
6126
  },
4596
6127
  {
4597
- "$ref": "#/definitions/esri.Polyline"
6128
+ "$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
4598
6129
  },
4599
6130
  {
4600
- "$ref": "#/definitions/esri.Mesh"
6131
+ "$ref": "#/definitions/@arcgis.core.geometry.Mesh.Mesh"
4601
6132
  },
4602
6133
  {
4603
6134
  "$ref": "#/definitions/esri.rest-api.FeatureJson.FeatureJson"
4604
6135
  },
4605
6136
  {
4606
- "$ref": "#/definitions/esri.FeatureSet"
6137
+ "$ref": "#/definitions/@arcgis.core.rest.support.FeatureSet.FeatureSet"
4607
6138
  },
4608
6139
  {
4609
6140
  "items": {
4610
6141
  "anyOf": [
4611
6142
  {
4612
- "$ref": "#/definitions/esri.Graphic"
6143
+ "$ref": "#/definitions/@arcgis.core.Graphic.Graphic"
4613
6144
  },
4614
6145
  {
4615
6146
  "$ref": "#/definitions/esri.rest-api.FeatureJson.FeatureJson"
@@ -4637,22 +6168,22 @@
4637
6168
  "items": {
4638
6169
  "anyOf": [
4639
6170
  {
4640
- "$ref": "#/definitions/esri.Extent"
6171
+ "$ref": "#/definitions/@arcgis.core.geometry.Extent.Extent"
4641
6172
  },
4642
6173
  {
4643
- "$ref": "#/definitions/esri.Multipoint"
6174
+ "$ref": "#/definitions/@arcgis.core.geometry.Multipoint.Multipoint"
4644
6175
  },
4645
6176
  {
4646
- "$ref": "#/definitions/esri.Point"
6177
+ "$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
4647
6178
  },
4648
6179
  {
4649
- "$ref": "#/definitions/esri.Polygon"
6180
+ "$ref": "T_6"
4650
6181
  },
4651
6182
  {
4652
- "$ref": "#/definitions/esri.Polyline"
6183
+ "$ref": "#/definitions/@arcgis.core.geometry.Polyline.Polyline"
4653
6184
  },
4654
6185
  {
4655
- "$ref": "#/definitions/esri.Mesh"
6186
+ "$ref": "#/definitions/@arcgis.core.geometry.Mesh.Mesh"
4656
6187
  },
4657
6188
  {
4658
6189
  "$ref": "#/definitions/esri.rest-api.GeometryJson.PointJson"
@@ -4721,7 +6252,7 @@
4721
6252
  "edit.add-feature:input": {
4722
6253
  "anyOf": [
4723
6254
  {
4724
- "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
6255
+ "$ref": "T_60"
4725
6256
  },
4726
6257
  {
4727
6258
  "$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
@@ -4739,7 +6270,7 @@
4739
6270
  "$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
4740
6271
  },
4741
6272
  {
4742
- "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
6273
+ "$ref": "T_60"
4743
6274
  }
4744
6275
  ]
4745
6276
  },
@@ -4771,7 +6302,7 @@
4771
6302
  "edit.delete-features:input": {
4772
6303
  "anyOf": [
4773
6304
  {
4774
- "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
6305
+ "$ref": "T_60"
4775
6306
  },
4776
6307
  {
4777
6308
  "$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
@@ -4789,7 +6320,7 @@
4789
6320
  "$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
4790
6321
  },
4791
6322
  {
4792
- "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
6323
+ "$ref": "T_60"
4793
6324
  }
4794
6325
  ]
4795
6326
  },
@@ -4837,7 +6368,7 @@
4837
6368
  "edit.display-update-feature:input": {
4838
6369
  "anyOf": [
4839
6370
  {
4840
- "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
6371
+ "$ref": "T_60"
4841
6372
  },
4842
6373
  {
4843
6374
  "$ref": "#/definitions/DisplayUpdateFeatureArgs"
@@ -4853,7 +6384,7 @@
4853
6384
  "edit.update-feature:input": {
4854
6385
  "anyOf": [
4855
6386
  {
4856
- "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
6387
+ "$ref": "T_60"
4857
6388
  },
4858
6389
  {
4859
6390
  "$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
@@ -4871,7 +6402,7 @@
4871
6402
  "$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
4872
6403
  },
4873
6404
  {
4874
- "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
6405
+ "$ref": "T_60"
4875
6406
  }
4876
6407
  ]
4877
6408
  },
@@ -4885,96 +6416,6 @@
4885
6416
  }
4886
6417
  ]
4887
6418
  },
4888
- "esri.CIMSymbol": {
4889
- "$ref": "esri/symbols/CIMSymbol"
4890
- },
4891
- "esri.Color": {
4892
- "$ref": "esri/Color"
4893
- },
4894
- "esri.Content": {
4895
- "$ref": "esri/popup/content/AttachmentsContent"
4896
- },
4897
- "esri.Extent": {
4898
- "$ref": "esri/geometry/Extent"
4899
- },
4900
- "esri.FeatureSet": {
4901
- "$ref": "esri/rest/support/FeatureSet"
4902
- },
4903
- "esri.FeatureType": {
4904
- "$ref": "esri/layers/support/FeatureType"
4905
- },
4906
- "esri.Field": {
4907
- "$ref": "esri/layers/support/Field"
4908
- },
4909
- "esri.Geometry": {
4910
- "$ref": "esri/geometry/Geometry"
4911
- },
4912
- "esri.Graphic": {
4913
- "$ref": "esri/Graphic"
4914
- },
4915
- "esri.Layer": {
4916
- "$ref": "esri/layers/Layer"
4917
- },
4918
- "esri.LineSymbol3D": {
4919
- "$ref": "esri/symbols/LineSymbol3D"
4920
- },
4921
- "esri.Mesh": {
4922
- "$ref": "esri/geometry/Mesh"
4923
- },
4924
- "esri.MeshSymbol3D": {
4925
- "$ref": "esri/symbols/MeshSymbol3D"
4926
- },
4927
- "esri.Multipoint": {
4928
- "$ref": "esri/geometry/Multipoint"
4929
- },
4930
- "esri.PictureFillSymbol": {
4931
- "$ref": "esri/symbols/PictureFillSymbol"
4932
- },
4933
- "esri.PictureMarkerSymbol": {
4934
- "$ref": "esri/symbols/PictureMarkerSymbol"
4935
- },
4936
- "esri.Point": {
4937
- "$ref": "esri/geometry/Point"
4938
- },
4939
- "esri.PointSymbol3D": {
4940
- "$ref": "esri/symbols/PointSymbol3D"
4941
- },
4942
- "esri.Polygon": {
4943
- "$ref": "esri/geometry/Polygon"
4944
- },
4945
- "esri.PolygonSymbol3D": {
4946
- "$ref": "esri/symbols/PolygonSymbol3D"
4947
- },
4948
- "esri.Polyline": {
4949
- "$ref": "esri/geometry/Polyline"
4950
- },
4951
- "esri.PopupTemplate": {
4952
- "$ref": "esri/PopupTemplate"
4953
- },
4954
- "esri.PortalItem": {
4955
- "$ref": "esri/portal/PortalItem"
4956
- },
4957
- "esri.SimpleFillSymbol": {
4958
- "$ref": "esri/symbols/SimpleFillSymbol"
4959
- },
4960
- "esri.SimpleLineSymbol": {
4961
- "$ref": "esri/symbols/SimpleLineSymbol"
4962
- },
4963
- "esri.SimpleMarkerSymbol": {
4964
- "$ref": "esri/symbols/SimpleMarkerSymbol"
4965
- },
4966
- "esri.SpatialReference": {
4967
- "$ref": "esri/geometry/SpatialReference"
4968
- },
4969
- "esri.Sublayer": {
4970
- "$ref": "esri/layers/support/Sublayer"
4971
- },
4972
- "esri.TextSymbol": {
4973
- "$ref": "esri/symbols/TextSymbol"
4974
- },
4975
- "esri.Viewpoint": {
4976
- "$ref": "esri/Viewpoint"
4977
- },
4978
6419
  "esri.rest-api.AnnotationLayerJson.AnnotationLayerJson": {
4979
6420
  "additionalProperties": false,
4980
6421
  "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.",
@@ -5045,13 +6486,7 @@
5045
6486
  "type": "string"
5046
6487
  },
5047
6488
  "listMode": {
5048
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
5049
- "enum": [
5050
- "hide",
5051
- "hide-children",
5052
- "show"
5053
- ],
5054
- "type": "string"
6489
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
5055
6490
  },
5056
6491
  "maxScale": {
5057
6492
  "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.",
@@ -5404,13 +6839,7 @@
5404
6839
  "type": "string"
5405
6840
  },
5406
6841
  "listMode": {
5407
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
5408
- "enum": [
5409
- "hide",
5410
- "hide-children",
5411
- "show"
5412
- ],
5413
- "type": "string"
6842
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
5414
6843
  },
5415
6844
  "maxScale": {
5416
6845
  "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.",
@@ -5610,13 +7039,7 @@
5610
7039
  "description": "Additional properties that can define drawing information and a definition expression for the sublayer. See layerDefinition properties table."
5611
7040
  },
5612
7041
  "listMode": {
5613
- "description": "To show or hide the sublayer in the layer list. If property is present, must be one of the following values: show, hide.",
5614
- "enum": [
5615
- "hide",
5616
- "hide-children",
5617
- "show"
5618
- ],
5619
- "type": "string"
7042
+ "description": "To show or hide the sublayer in the layer list. If property is present, must be one of the following values: show, hide."
5620
7043
  },
5621
7044
  "opacity": {
5622
7045
  "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.",
@@ -5708,13 +7131,7 @@
5708
7131
  "type": "string"
5709
7132
  },
5710
7133
  "listMode": {
5711
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
5712
- "enum": [
5713
- "hide",
5714
- "hide-children",
5715
- "show"
5716
- ],
5717
- "type": "string"
7134
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
5718
7135
  },
5719
7136
  "locationInfo": {
5720
7137
  "$ref": "#/definitions/esri.rest-api.CSVLayerJson.LocationInfoJson",
@@ -6215,11 +7632,8 @@
6215
7632
  "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/}.",
6216
7633
  "properties": {
6217
7634
  "color": {
6218
- "description": "Color is represented as a three or four-element array.",
6219
- "items": {
6220
- "type": "number"
6221
- },
6222
- "type": "array"
7635
+ "$ref": "#/definitions/ColorJson",
7636
+ "description": "Color is represented as a three or four-element array."
6223
7637
  },
6224
7638
  "transparency": {
6225
7639
  "description": "The value has to lie between 100 (full transparency) and 0 (full opacity). Web scenes only.",
@@ -6539,13 +7953,7 @@
6539
7953
  "type": "string"
6540
7954
  },
6541
7955
  "listMode": {
6542
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
6543
- "enum": [
6544
- "hide",
6545
- "hide-children",
6546
- "show"
6547
- ],
6548
- "type": "string"
7956
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
6549
7957
  },
6550
7958
  "maxScale": {
6551
7959
  "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.",
@@ -7225,13 +8633,7 @@
7225
8633
  "type": "string"
7226
8634
  },
7227
8635
  "listMode": {
7228
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
7229
- "enum": [
7230
- "hide",
7231
- "hide-children",
7232
- "show"
7233
- ],
7234
- "type": "string"
8636
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
7235
8637
  },
7236
8638
  "maxScale": {
7237
8639
  "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.",
@@ -7370,13 +8772,7 @@
7370
8772
  "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."
7371
8773
  },
7372
8774
  "listMode": {
7373
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
7374
- "enum": [
7375
- "hide",
7376
- "hide-children",
7377
- "show"
7378
- ],
7379
- "type": "string"
8775
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
7380
8776
  },
7381
8777
  "maxScale": {
7382
8778
  "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.",
@@ -7637,7 +9033,7 @@
7637
9033
  "description": "Determines whether the camera is constrained to navigate only above, or also under the ground surface."
7638
9034
  },
7639
9035
  "surfaceColor": {
7640
- "$ref": "#/definitions/esri.rest-api.SymbolJson.ColorJson",
9036
+ "$ref": "#/definitions/ColorJson",
7641
9037
  "description": "Defines the color of the ground surface, displayed underneath the basemap. If no color, the default grid is shown."
7642
9038
  },
7643
9039
  "transparency": {
@@ -7709,13 +9105,7 @@
7709
9105
  "type": "array"
7710
9106
  },
7711
9107
  "listMode": {
7712
- "description": "To show or hide the group layer in the layer list. See {@link support /esri!ListMode}.",
7713
- "enum": [
7714
- "hide",
7715
- "hide-children",
7716
- "show"
7717
- ],
7718
- "type": "string"
9108
+ "description": "To show or hide the group layer in the layer list. See {@link support /esri!ListMode}."
7719
9109
  },
7720
9110
  "maxScale": {
7721
9111
  "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.",
@@ -7901,13 +9291,7 @@
7901
9291
  "type": "string"
7902
9292
  },
7903
9293
  "listMode": {
7904
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
7905
- "enum": [
7906
- "hide",
7907
- "hide-children",
7908
- "show"
7909
- ],
7910
- "type": "string"
9294
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
7911
9295
  },
7912
9296
  "maxScale": {
7913
9297
  "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.",
@@ -8119,13 +9503,7 @@
8119
9503
  "type": "string"
8120
9504
  },
8121
9505
  "listMode": {
8122
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
8123
- "enum": [
8124
- "hide",
8125
- "hide-children",
8126
- "show"
8127
- ],
8128
- "type": "string"
9506
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
8129
9507
  },
8130
9508
  "maxScale": {
8131
9509
  "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.",
@@ -8262,13 +9640,7 @@
8262
9640
  "type": "string"
8263
9641
  },
8264
9642
  "listMode": {
8265
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
8266
- "enum": [
8267
- "hide",
8268
- "hide-children",
8269
- "show"
8270
- ],
8271
- "type": "string"
9643
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
8272
9644
  },
8273
9645
  "maxScale": {
8274
9646
  "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.",
@@ -8624,13 +9996,7 @@
8624
9996
  "type": "string"
8625
9997
  },
8626
9998
  "listMode": {
8627
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
8628
- "enum": [
8629
- "hide",
8630
- "hide-children",
8631
- "show"
8632
- ],
8633
- "type": "string"
9999
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
8634
10000
  },
8635
10001
  "maxScale": {
8636
10002
  "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.",
@@ -9494,7 +10860,7 @@
9494
10860
  "type": "number"
9495
10861
  },
9496
10862
  "color": {
9497
- "$ref": "#/definitions/esri.rest-api.SymbolJson.ColorJson",
10863
+ "$ref": "#/definitions/ColorJson",
9498
10864
  "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."
9499
10865
  },
9500
10866
  "type": {
@@ -9725,13 +11091,7 @@
9725
11091
  "type": "array"
9726
11092
  },
9727
11093
  "listMode": {
9728
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
9729
- "enum": [
9730
- "hide",
9731
- "hide-children",
9732
- "show"
9733
- ],
9734
- "type": "string"
11094
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
9735
11095
  },
9736
11096
  "maxScale": {
9737
11097
  "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.",
@@ -9906,13 +11266,7 @@
9906
11266
  "type": "string"
9907
11267
  },
9908
11268
  "listMode": {
9909
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
9910
- "enum": [
9911
- "hide",
9912
- "hide-children",
9913
- "show"
9914
- ],
9915
- "type": "string"
11269
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
9916
11270
  },
9917
11271
  "maxScale": {
9918
11272
  "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.",
@@ -10253,13 +11607,7 @@
10253
11607
  "type": "string"
10254
11608
  },
10255
11609
  "listMode": {
10256
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
10257
- "enum": [
10258
- "hide",
10259
- "hide-children",
10260
- "show"
10261
- ],
10262
- "type": "string"
11610
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
10263
11611
  },
10264
11612
  "maxScale": {
10265
11613
  "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.",
@@ -10698,13 +12046,7 @@
10698
12046
  "type": "string"
10699
12047
  },
10700
12048
  "listMode": {
10701
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
10702
- "enum": [
10703
- "hide",
10704
- "hide-children",
10705
- "show"
10706
- ],
10707
- "type": "string"
12049
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
10708
12050
  },
10709
12051
  "maxScale": {
10710
12052
  "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.",
@@ -10943,7 +12285,7 @@
10943
12285
  "type": "number"
10944
12286
  },
10945
12287
  "color": {
10946
- "$ref": "#/definitions/esri.rest-api.SymbolJson.ColorJson",
12288
+ "$ref": "#/definitions/ColorJson",
10947
12289
  "description": "Color is represented as a three or four-element array."
10948
12290
  },
10949
12291
  "description": {
@@ -10964,11 +12306,7 @@
10964
12306
  "colors": {
10965
12307
  "description": "An array of colors that define the color ramp. Either colors or stops must be specified to construct the color ramp.",
10966
12308
  "items": {
10967
- "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/}.",
10968
- "items": {
10969
- "type": "number"
10970
- },
10971
- "type": "array"
12309
+ "$ref": "#/definitions/ColorJson"
10972
12310
  },
10973
12311
  "type": "array"
10974
12312
  },
@@ -11092,8 +12430,39 @@
11092
12430
  "color": {
11093
12431
  "anyOf": [
11094
12432
  {
11095
- "$ref": "#/definitions/esri.rest-api.SymbolJson.ColorJson",
11096
- "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/}."
12433
+ "items": [
12434
+ {
12435
+ "type": "number"
12436
+ },
12437
+ {
12438
+ "type": "number"
12439
+ },
12440
+ {
12441
+ "type": "number"
12442
+ },
12443
+ {
12444
+ "type": "number"
12445
+ }
12446
+ ],
12447
+ "maxItems": 4,
12448
+ "minItems": 4,
12449
+ "type": "array"
12450
+ },
12451
+ {
12452
+ "items": [
12453
+ {
12454
+ "type": "number"
12455
+ },
12456
+ {
12457
+ "type": "number"
12458
+ },
12459
+ {
12460
+ "type": "number"
12461
+ }
12462
+ ],
12463
+ "maxItems": 3,
12464
+ "minItems": 3,
12465
+ "type": "array"
11097
12466
  },
11098
12467
  {
11099
12468
  "type": "string"
@@ -11117,7 +12486,7 @@
11117
12486
  "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/}.",
11118
12487
  "properties": {
11119
12488
  "color": {
11120
- "$ref": "#/definitions/esri.rest-api.SymbolJson.ColorJson",
12489
+ "$ref": "#/definitions/ColorJson",
11121
12490
  "description": "Color is represented as a three or four-element array."
11122
12491
  },
11123
12492
  "description": {
@@ -12220,7 +13589,7 @@
12220
13589
  },
12221
13590
  "esri.rest-api.SceneLayerJson.SceneLayerJson": {
12222
13591
  "additionalProperties": false,
12223
- "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/}.",
13592
+ "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.",
12224
13593
  "properties": {
12225
13594
  "blendMode": {
12226
13595
  "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.",
@@ -12259,6 +13628,9 @@
12259
13628
  ],
12260
13629
  "type": "string"
12261
13630
  },
13631
+ "customParameters": {
13632
+ "description": "A sequence of custom parameters appended to the URL of all requests related to supporting ArcGIS layer types."
13633
+ },
12262
13634
  "disablePopup": {
12263
13635
  "description": "Indicates whether to allow a client to ignore popups defined by the service item.",
12264
13636
  "type": "boolean"
@@ -12271,6 +13643,10 @@
12271
13643
  "description": "A unique identifying string for the layer.",
12272
13644
  "type": "string"
12273
13645
  },
13646
+ "isReference": {
13647
+ "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).",
13648
+ "type": "boolean"
13649
+ },
12274
13650
  "itemId": {
12275
13651
  "description": "Optional string containing the item ID of the service if it's registered on ArcGIS Online or your organization's portal.",
12276
13652
  "type": "string"
@@ -12285,13 +13661,7 @@
12285
13661
  "type": "string"
12286
13662
  },
12287
13663
  "listMode": {
12288
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
12289
- "enum": [
12290
- "hide",
12291
- "hide-children",
12292
- "show"
12293
- ],
12294
- "type": "string"
13664
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
12295
13665
  },
12296
13666
  "maxScale": {
12297
13667
  "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.",
@@ -12493,13 +13863,7 @@
12493
13863
  "type": "string"
12494
13864
  },
12495
13865
  "listMode": {
12496
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
12497
- "enum": [
12498
- "hide",
12499
- "hide-children",
12500
- "show"
12501
- ],
12502
- "type": "string"
13866
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
12503
13867
  },
12504
13868
  "maxScale": {
12505
13869
  "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.",
@@ -12765,13 +14129,7 @@
12765
14129
  "type": "array"
12766
14130
  },
12767
14131
  "listMode": {
12768
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
12769
- "enum": [
12770
- "hide",
12771
- "hide-children",
12772
- "show"
12773
- ],
12774
- "type": "string"
14132
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
12775
14133
  },
12776
14134
  "maxScale": {
12777
14135
  "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.",
@@ -12913,13 +14271,7 @@
12913
14271
  "type": "string"
12914
14272
  },
12915
14273
  "listMode": {
12916
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
12917
- "enum": [
12918
- "hide",
12919
- "hide-children",
12920
- "show"
12921
- ],
12922
- "type": "string"
14274
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
12923
14275
  },
12924
14276
  "maxScale": {
12925
14277
  "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.",
@@ -13003,11 +14355,8 @@
13003
14355
  "description": "Optional border on the line that is used to improve the contrast of the line color against various background colors.",
13004
14356
  "properties": {
13005
14357
  "color": {
13006
- "description": "The color of the border.",
13007
- "items": {
13008
- "type": "number"
13009
- },
13010
- "type": "array"
14358
+ "$ref": "#/definitions/ColorJson",
14359
+ "description": "The color of the border."
13011
14360
  },
13012
14361
  "transparency": {
13013
14362
  "description": "A value between 100 (full transparency) and 0 (full opacity).",
@@ -13036,17 +14385,6 @@
13036
14385
  "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/}.",
13037
14386
  "properties": {
13038
14387
  "symbol": {
13039
- "anyOf": [
13040
- {
13041
- "$ref": "esri.CIMLineSymbol"
13042
- },
13043
- {
13044
- "$ref": "esri.CIMPointSymbol"
13045
- },
13046
- {
13047
- "$ref": "esri.CIMPolygonSymbol"
13048
- }
13049
- ],
13050
14388
  "description": "The symbol. Supported values are CIMPointSymbol, CIMLineSymbol, and CIMPolygonSymbol."
13051
14389
  },
13052
14390
  "type": {
@@ -13069,11 +14407,8 @@
13069
14407
  "description": "Optional border on the line that is used to improve the contrast of the line color against various background colors."
13070
14408
  },
13071
14409
  "color": {
13072
- "description": "The color of the line.",
13073
- "items": {
13074
- "type": "number"
13075
- },
13076
- "type": "array"
14410
+ "$ref": "#/definitions/ColorJson",
14411
+ "description": "The color of the line."
13077
14412
  },
13078
14413
  "size": {
13079
14414
  "description": "The width of the line in points.",
@@ -13094,13 +14429,6 @@
13094
14429
  ],
13095
14430
  "type": "object"
13096
14431
  },
13097
- "esri.rest-api.SymbolJson.ColorJson": {
13098
- "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/}.",
13099
- "items": {
13100
- "type": "number"
13101
- },
13102
- "type": "array"
13103
- },
13104
14432
  "esri.rest-api.SymbolJson.ExtrudeSymbol3DLayerJson": {
13105
14433
  "additionalProperties": false,
13106
14434
  "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/}.",
@@ -13349,11 +14677,8 @@
13349
14677
  "description": "The material used to shade the geometry.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/material/}.",
13350
14678
  "properties": {
13351
14679
  "color": {
13352
- "description": "Color is represented as a three or four-element array.",
13353
- "items": {
13354
- "type": "number"
13355
- },
13356
- "type": "array"
14680
+ "$ref": "#/definitions/ColorJson",
14681
+ "description": "Color is represented as a three or four-element array."
13357
14682
  },
13358
14683
  "colorMixMode": {
13359
14684
  "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.",
@@ -13468,11 +14793,8 @@
13468
14793
  "description": "The outline of the point, line or polygon.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/outline/}.",
13469
14794
  "properties": {
13470
14795
  "color": {
13471
- "description": "Color is represented as a three or four-element array.",
13472
- "items": {
13473
- "type": "number"
13474
- },
13475
- "type": "array"
14796
+ "$ref": "#/definitions/ColorJson",
14797
+ "description": "Color is represented as a three or four-element array."
13476
14798
  },
13477
14799
  "size": {
13478
14800
  "description": "Outline size in points, positive only.",
@@ -13732,11 +15054,8 @@
13732
15054
  "description": "Simple fill symbols can be used to symbolize polygon geometries.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/esriSFS_symbol/}.",
13733
15055
  "properties": {
13734
15056
  "color": {
13735
- "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.",
13736
- "items": {
13737
- "type": "number"
13738
- },
13739
- "type": "array"
15057
+ "$ref": "#/definitions/ColorJson",
15058
+ "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."
13740
15059
  },
13741
15060
  "outline": {
13742
15061
  "$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleLineSymbolJson",
@@ -13772,11 +15091,8 @@
13772
15091
  "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/}.",
13773
15092
  "properties": {
13774
15093
  "color": {
13775
- "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.",
13776
- "items": {
13777
- "type": "number"
13778
- },
13779
- "type": "array"
15094
+ "$ref": "#/definitions/ColorJson",
15095
+ "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."
13780
15096
  },
13781
15097
  "style": {
13782
15098
  "description": "The line style.",
@@ -13814,11 +15130,8 @@
13814
15130
  "type": "number"
13815
15131
  },
13816
15132
  "color": {
13817
- "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.",
13818
- "items": {
13819
- "type": "number"
13820
- },
13821
- "type": "array"
15133
+ "$ref": "#/definitions/ColorJson",
15134
+ "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."
13822
15135
  },
13823
15136
  "outline": {
13824
15137
  "$ref": "#/definitions/esri.rest-api.SymbolJson.SimpleLineSymbolJson",
@@ -14041,40 +15354,28 @@
14041
15354
  "type": "number"
14042
15355
  },
14043
15356
  "backgroundColor": {
14044
- "description": "Background color of the text.",
14045
- "items": {
14046
- "type": "number"
14047
- },
14048
- "type": "array"
15357
+ "$ref": "#/definitions/ColorJson",
15358
+ "description": "Background color of the text."
14049
15359
  },
14050
15360
  "borderLineColor": {
14051
- "description": "Value indicating the the color of the border line.",
14052
- "items": {
14053
- "type": "number"
14054
- },
14055
- "type": "array"
15361
+ "$ref": "#/definitions/ColorJson",
15362
+ "description": "Value indicating the the color of the border line."
14056
15363
  },
14057
15364
  "borderLineSize": {
14058
15365
  "description": "Numeric value indicating the the size of the border line in points.",
14059
15366
  "type": "number"
14060
15367
  },
14061
15368
  "color": {
14062
- "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.",
14063
- "items": {
14064
- "type": "number"
14065
- },
14066
- "type": "array"
15369
+ "$ref": "#/definitions/ColorJson",
15370
+ "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."
14067
15371
  },
14068
15372
  "font": {
14069
15373
  "$ref": "#/definitions/esri.rest-api.SymbolJson.FontJson",
14070
15374
  "description": "Font used for text symbols."
14071
15375
  },
14072
15376
  "haloColor": {
14073
- "description": "Color of the halo around the text.",
14074
- "items": {
14075
- "type": "number"
14076
- },
14077
- "type": "array"
15377
+ "$ref": "#/definitions/ColorJson",
15378
+ "description": "Color of the halo around the text."
14078
15379
  },
14079
15380
  "haloSize": {
14080
15381
  "description": "Numeric value indicating the point size of a halo around the text symbol.",
@@ -14312,13 +15613,7 @@
14312
15613
  "type": "string"
14313
15614
  },
14314
15615
  "listMode": {
14315
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
14316
- "enum": [
14317
- "hide",
14318
- "hide-children",
14319
- "show"
14320
- ],
14321
- "type": "string"
15616
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
14322
15617
  },
14323
15618
  "maxScale": {
14324
15619
  "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.",
@@ -14456,13 +15751,7 @@
14456
15751
  "type": "string"
14457
15752
  },
14458
15753
  "listMode": {
14459
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
14460
- "enum": [
14461
- "hide",
14462
- "hide-children",
14463
- "show"
14464
- ],
14465
- "type": "string"
15754
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
14466
15755
  },
14467
15756
  "maxScale": {
14468
15757
  "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.",
@@ -14614,13 +15903,7 @@
14614
15903
  "type": "array"
14615
15904
  },
14616
15905
  "listMode": {
14617
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
14618
- "enum": [
14619
- "hide",
14620
- "hide-children",
14621
- "show"
14622
- ],
14623
- "type": "string"
15906
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
14624
15907
  },
14625
15908
  "maxScale": {
14626
15909
  "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.",
@@ -14786,13 +16069,7 @@
14786
16069
  "type": "string"
14787
16070
  },
14788
16071
  "listMode": {
14789
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
14790
- "enum": [
14791
- "hide",
14792
- "hide-children",
14793
- "show"
14794
- ],
14795
- "type": "string"
16072
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
14796
16073
  },
14797
16074
  "maxScale": {
14798
16075
  "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.",
@@ -15017,13 +16294,7 @@
15017
16294
  "type": "string"
15018
16295
  },
15019
16296
  "listMode": {
15020
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
15021
- "enum": [
15022
- "hide",
15023
- "hide-children",
15024
- "show"
15025
- ],
15026
- "type": "string"
16297
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
15027
16298
  },
15028
16299
  "maxScale": {
15029
16300
  "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.",
@@ -15221,13 +16492,7 @@
15221
16492
  "type": "string"
15222
16493
  },
15223
16494
  "listMode": {
15224
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
15225
- "enum": [
15226
- "hide",
15227
- "hide-children",
15228
- "show"
15229
- ],
15230
- "type": "string"
16495
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
15231
16496
  },
15232
16497
  "mapUrl": {
15233
16498
  "description": "The URL of the WMS map. You should also supply the url property, which is the URL of the WMS capabilities document.",
@@ -16148,13 +17413,7 @@
16148
17413
  "type": "string"
16149
17414
  },
16150
17415
  "listMode": {
16151
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
16152
- "enum": [
16153
- "hide",
16154
- "hide-children",
16155
- "show"
16156
- ],
16157
- "type": "string"
17416
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
16158
17417
  },
16159
17418
  "maxScale": {
16160
17419
  "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.",
@@ -16271,7 +17530,7 @@
16271
17530
  "$ref": "#/definitions/ReverseGeocodeArgs"
16272
17531
  },
16273
17532
  "geocode.reverse-geocode:output": {
16274
- "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
17533
+ "$ref": "T_60"
16275
17534
  },
16276
17535
  "geocode.suggest": {
16277
17536
  "description": "Suggests matching addresses to search for based on some input text. The geocoder must have the supportsSuggest capability.",
@@ -16344,7 +17603,7 @@
16344
17603
  ]
16345
17604
  },
16346
17605
  "geolocation.get-position:output": {
16347
- "$ref": "#/definitions/esri.Point"
17606
+ "$ref": "#/definitions/@arcgis.core.geometry.Point.Point"
16348
17607
  },
16349
17608
  "geolocation.turn-off-geolocation": {
16350
17609
  "description": "Turns off geolocation.",
@@ -16471,19 +17730,19 @@
16471
17730
  "$ref": "#/definitions/CreateGraphicsResult"
16472
17731
  },
16473
17732
  {
16474
- "$ref": "#/definitions/esri.Graphic"
17733
+ "$ref": "#/definitions/@arcgis.core.Graphic.Graphic"
16475
17734
  },
16476
17735
  {
16477
17736
  "$ref": "#/definitions/esri.rest-api.FeatureJson.FeatureJson"
16478
17737
  },
16479
17738
  {
16480
- "$ref": "#/definitions/esri.FeatureSet"
17739
+ "$ref": "#/definitions/@arcgis.core.rest.support.FeatureSet.FeatureSet"
16481
17740
  },
16482
17741
  {
16483
17742
  "items": {
16484
17743
  "anyOf": [
16485
17744
  {
16486
- "$ref": "#/definitions/esri.Graphic"
17745
+ "$ref": "#/definitions/@arcgis.core.Graphic.Graphic"
16487
17746
  },
16488
17747
  {
16489
17748
  "$ref": "#/definitions/esri.rest-api.FeatureJson.FeatureJson"
@@ -16539,7 +17798,7 @@
16539
17798
  ]
16540
17799
  },
16541
17800
  "map.get-spatial-reference:output": {
16542
- "$ref": "#/definitions/esri.SpatialReference"
17801
+ "$ref": "#/definitions/@arcgis.core.geometry.SpatialReference.SpatialReference"
16543
17802
  },
16544
17803
  "map.pan-to-features": {
16545
17804
  "description": "Pans (without zooming) to one or many features on the targeted map(s).",
@@ -16611,16 +17870,16 @@
16611
17870
  "map.zoom-to-viewpoint:input": {
16612
17871
  "anyOf": [
16613
17872
  {
16614
- "$ref": "@vertigis.arcgis-extensions.mapping.Bookmark.BookmarkProperties"
17873
+ "$ref": "#/definitions/@vertigis.arcgis-extensions.mapping.Bookmark.BookmarkProperties"
16615
17874
  },
16616
17875
  {
16617
- "$ref": "#/definitions/esri.Viewpoint"
17876
+ "$ref": "#/definitions/@arcgis.core.Viewpoint.Viewpoint"
16618
17877
  },
16619
17878
  {
16620
17879
  "$ref": "#/definitions/esri.rest-api.ViewpointJson.ViewpointJson"
16621
17880
  },
16622
17881
  {
16623
- "$ref": "@vertigis.arcgis-extensions.mapping.Bookmark.Bookmark"
17882
+ "$ref": "T_52"
16624
17883
  },
16625
17884
  {
16626
17885
  "$ref": "#/definitions/ZoomToViewpointArgs"
@@ -16664,7 +17923,7 @@
16664
17923
  "$ref": "#/definitions/Model"
16665
17924
  },
16666
17925
  {
16667
- "$ref": "#/definitions/TargetsResultsSetArgs"
17926
+ "$ref": "TargetsResultsSetArgs"
16668
17927
  },
16669
17928
  {
16670
17929
  "type": [
@@ -16689,7 +17948,7 @@
16689
17948
  "results.display-details:input": {
16690
17949
  "anyOf": [
16691
17950
  {
16692
- "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
17951
+ "$ref": "T_60"
16693
17952
  },
16694
17953
  {
16695
17954
  "$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
@@ -16707,7 +17966,7 @@
16707
17966
  "$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
16708
17967
  },
16709
17968
  {
16710
- "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
17969
+ "$ref": "T_60"
16711
17970
  }
16712
17971
  ]
16713
17972
  },
@@ -16730,7 +17989,7 @@
16730
17989
  "results.display-new-details:input": {
16731
17990
  "anyOf": [
16732
17991
  {
16733
- "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
17992
+ "$ref": "T_60"
16734
17993
  },
16735
17994
  {
16736
17995
  "$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
@@ -16748,7 +18007,7 @@
16748
18007
  "$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
16749
18008
  },
16750
18009
  {
16751
- "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
18010
+ "$ref": "T_60"
16752
18011
  }
16753
18012
  ]
16754
18013
  },
@@ -16765,7 +18024,7 @@
16765
18024
  "results.display:input": {
16766
18025
  "anyOf": [
16767
18026
  {
16768
- "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
18027
+ "$ref": "T_60"
16769
18028
  },
16770
18029
  {
16771
18030
  "$ref": "@vertigis.arcgis-extensions.data.FeatureSet.FeatureSet"
@@ -16783,7 +18042,7 @@
16783
18042
  "$ref": "@vertigis.arcgis-extensions.data.Feature.FeatureProperties"
16784
18043
  },
16785
18044
  {
16786
- "$ref": "@vertigis.arcgis-extensions.data.Feature.Feature"
18045
+ "$ref": "T_60"
16787
18046
  }
16788
18047
  ]
16789
18048
  },
@@ -16838,7 +18097,7 @@
16838
18097
  },
16839
18098
  "results.to-graphics:output": {
16840
18099
  "items": {
16841
- "$ref": "#/definitions/esri.Graphic"
18100
+ "$ref": "#/definitions/@arcgis.core.Graphic.Graphic"
16842
18101
  },
16843
18102
  "type": "array"
16844
18103
  },
@@ -16986,7 +18245,7 @@
16986
18245
  ]
16987
18246
  },
16988
18247
  "studio-analytics.track-custom-event:input": {
16989
- "$ref": "#/definitions/TrackCustomEventArgs"
18248
+ "$ref": "TrackCustomEventArgs"
16990
18249
  },
16991
18250
  "system.open-url": {
16992
18251
  "description": "Opens a URL, either in the system browser or whatever app is appropriate for the scheme of the URL. If {@link Features } are included as context, then the URL may contain substitution tokens in the format {FIELD_NAME} where FIELD_NAME is the name of a field in the first feature in the context. In this case, the {FIELD_NAME} is substituted with value of the FIELD_NAME field from the feature feature in the {@link Features }, e.g. https://www.google.com/search?q={NAME}, where the value of the NAME field in the first feature from the context is 'Jasper National Park' would produce the result https://www.google.com/search?q=Jasper National Park. Zero to many substitution tokens may be included. If maps are included as context, {@link LocationToken} can be used to access properties on the first map's view. In Web, if both layers and maps are included as context, then {@link LayerToken} can be used to access properties on the first layer.",