@vertigis/viewer-spec 60.8.0 → 60.9.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.
@@ -592,6 +592,119 @@
592
592
  ],
593
593
  "type": "object"
594
594
  },
595
+ "@vertigis.arcgis-extensions.mapping.BasemapExtension.BasemapProperties": {
596
+ "additionalProperties": false,
597
+ "description": "Properties that can be specified for the {@link mapping /BasemapExtension!BasemapExtensionProperties.basemap} property.",
598
+ "properties": {
599
+ "baseMapLayers": {
600
+ "description": "An array of BasemapLayer objects defining the basemaps used in the web map/web scene.",
601
+ "items": {
602
+ "$ref": "#/definitions/BasemapLayerJson"
603
+ },
604
+ "type": "array"
605
+ },
606
+ "elevationLayers": {
607
+ "description": "Deprecated, use ground.layers instead. An array of elevationLayer objects defining the basemaps used in the web scene.",
608
+ "items": {
609
+ "$ref": "#/definitions/ElevationLayerJson"
610
+ },
611
+ "type": "array"
612
+ },
613
+ "id": {
614
+ "description": "An identifier used to refer to the basemap when referencing it elsewhere.\n\nNOTE: Only available in web scenes!",
615
+ "type": "string"
616
+ },
617
+ "title": {
618
+ "description": "String title for the basemap that can be used in a table of contents. If not defined, then it takes the title of the first baseMapLayer in the array.",
619
+ "type": "string"
620
+ }
621
+ },
622
+ "type": "object"
623
+ },
624
+ "@vertigis.arcgis-extensions.mapping.Bookmark.BookmarkProperties": {
625
+ "additionalProperties": false,
626
+ "description": "Properties that can be passed into the constructor for {@link mapping /Bookmark!Bookmark}.",
627
+ "properties": {
628
+ "id": {
629
+ "description": "The unique ID to assign to the entity. If not specified, one will be generated.",
630
+ "type": "string"
631
+ },
632
+ "source": {
633
+ "$ref": "@vertigis.arcgis-extensions.mapping.Bookmark.BookmarkSource",
634
+ "description": "See {@link mapping /Bookmark!Bookmark.source}."
635
+ },
636
+ "title": {
637
+ "description": "See {@link mapping /Bookmark!Bookmark.title}.",
638
+ "type": "string"
639
+ },
640
+ "viewpoint": {
641
+ "anyOf": [
642
+ {
643
+ "$ref": "#/definitions/esri.Viewpoint"
644
+ },
645
+ {
646
+ "$ref": "#/definitions/esri.rest-api.ViewpointJson.ViewpointJson"
647
+ }
648
+ ],
649
+ "description": "See {@link mapping /Bookmark!Bookmark.viewpoint}."
650
+ }
651
+ },
652
+ "type": "object"
653
+ },
654
+ "@vertigis.arcgis-extensions.mapping.MapExtension.ViewMode": {
655
+ "description": "Viewing mode for a map (2D map or 3D scene).",
656
+ "enum": [
657
+ "map",
658
+ "scene"
659
+ ],
660
+ "type": "string"
661
+ },
662
+ "@vertigis.arcgis-extensions.mapping.MapExtension.WebMapLike": {
663
+ "anyOf": [
664
+ {
665
+ "$ref": "#/definitions/esri.PortalItem"
666
+ },
667
+ {
668
+ "$ref": "#/definitions/esri.rest-api.ItemJson.ItemJson"
669
+ },
670
+ {
671
+ "$ref": "@vertigis.arcgis-extensions.PortalUri.PortalUri"
672
+ },
673
+ {
674
+ "$ref": "@vertigis.arcgis-extensions.utilities.uri.Uri"
675
+ },
676
+ {
677
+ "$ref": "#/definitions/esri.rest-api.WebMapJson.WebMapJson"
678
+ },
679
+ {
680
+ "type": "string"
681
+ }
682
+ ],
683
+ "description": "A web map definition or reference."
684
+ },
685
+ "@vertigis.arcgis-extensions.mapping.MapExtension.WebSceneLike": {
686
+ "anyOf": [
687
+ {
688
+ "$ref": "#/definitions/esri.PortalItem"
689
+ },
690
+ {
691
+ "$ref": "#/definitions/esri.rest-api.ItemJson.ItemJson"
692
+ },
693
+ {
694
+ "$ref": "@vertigis.arcgis-extensions.PortalUri.PortalUri"
695
+ },
696
+ {
697
+ "$ref": "@vertigis.arcgis-extensions.utilities.uri.Uri"
698
+ },
699
+ {
700
+ "$ref": "#/definitions/esri.rest-api.WebSceneJson.WebSceneJson"
701
+ },
702
+ {
703
+ "type": "string"
704
+ }
705
+ ],
706
+ "description": "A web scene definition or reference."
707
+ },
595
708
  "@vertigis.arcgis-extensions.mapping._LayerExtension.LayerReference": {
596
709
  "additionalProperties": false,
597
710
  "description": "Matches an existing layer.",
@@ -622,6 +735,31 @@
622
735
  "@vertigis.arcgis-extensions.support.Action.Action": {
623
736
  "$ref": "#/definitions/viewer-spec.Action"
624
737
  },
738
+ "@vertigis.arcgis-extensions.support.Action.BoundAction": {
739
+ "additionalProperties": false,
740
+ "description": "An action that is bound to arguments.",
741
+ "properties": {
742
+ "arguments": {
743
+ "description": "Arguments for the action. Can either be a primitive value (string, number, boolean), or a plain JSON object containing named arguments."
744
+ },
745
+ "name": {
746
+ "description": "Determines which action to perform. It is up to the calling application how it transforms an action name into actual executable code.",
747
+ "type": "string"
748
+ }
749
+ },
750
+ "required": [
751
+ "arguments",
752
+ "name"
753
+ ],
754
+ "type": "object"
755
+ },
756
+ "@vertigis.arcgis-extensions.support.Action.CompositeAction": {
757
+ "description": "A composite action that is made up of a sequence of one or more actions. The intent is that the application should execute these in the given order. If any of the actions produces an output, that should be used as the input arguments for all subsequent actions.",
758
+ "items": {
759
+ "$ref": "#/definitions/SimpleAction"
760
+ },
761
+ "type": "array"
762
+ },
625
763
  "@vertigis.arcgis-extensions.support.FormatSettings.FormatSettingsProperties": {
626
764
  "additionalProperties": false,
627
765
  "description": "Properties that can be passed into the constructor for {@link FormatSettings}.",
@@ -990,6 +1128,16 @@
990
1128
  ],
991
1129
  "type": "object"
992
1130
  },
1131
+ "ArrayBufferLike": {
1132
+ "anyOf": [
1133
+ {
1134
+ "$ref": "ArrayBuffer"
1135
+ },
1136
+ {
1137
+ "$ref": "SharedArrayBuffer"
1138
+ }
1139
+ ]
1140
+ },
993
1141
  "BackgroundLocationUpdatesArgs": {
994
1142
  "additionalProperties": false,
995
1143
  "description": "Arguments for the system.disable-background-location-updates command.",
@@ -1001,6 +1149,41 @@
1001
1149
  },
1002
1150
  "type": "object"
1003
1151
  },
1152
+ "BasemapLayerJson": {
1153
+ "anyOf": [
1154
+ {
1155
+ "$ref": "#/definitions/esri.rest-api.ImageServiceLayerJson.ImageServiceLayerJson"
1156
+ },
1157
+ {
1158
+ "$ref": "#/definitions/esri.rest-api.ImageServiceVectorLayerJson.ImageServiceVectorLayerJson"
1159
+ },
1160
+ {
1161
+ "$ref": "#/definitions/esri.rest-api.MapServiceLayerJson.MapServiceLayerJson"
1162
+ },
1163
+ {
1164
+ "$ref": "#/definitions/esri.rest-api.TiledImageServiceLayerJson.TiledImageServiceLayerJson"
1165
+ },
1166
+ {
1167
+ "$ref": "#/definitions/esri.rest-api.TiledMapServiceLayerJson.TiledMapServiceLayerJson"
1168
+ },
1169
+ {
1170
+ "$ref": "#/definitions/esri.rest-api.VectorTileLayerJson.VectorTileLayerJson"
1171
+ },
1172
+ {
1173
+ "$ref": "#/definitions/esri.rest-api.WebTileLayerJson.WebTileLayerJson"
1174
+ },
1175
+ {
1176
+ "$ref": "#/definitions/esri.rest-api.WMSLayerJson.WMSLayerJson"
1177
+ },
1178
+ {
1179
+ "$ref": "#/definitions/esri.rest-api.BingLayerJson.BingLayerJson"
1180
+ },
1181
+ {
1182
+ "$ref": "#/definitions/esri.rest-api.OpenStreetMapLayerJson.OpenStreetMapLayerJson"
1183
+ }
1184
+ ],
1185
+ "description": "A base map layer in a web map/scene."
1186
+ },
1004
1187
  "CalculatePointArgs": {
1005
1188
  "additionalProperties": false,
1006
1189
  "description": "Arguments for the geometry.calculate-point operation.",
@@ -2381,6 +2564,17 @@
2381
2564
  ],
2382
2565
  "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
2383
2566
  },
2567
+ "ElevationLayerJson": {
2568
+ "anyOf": [
2569
+ {
2570
+ "$ref": "#/definitions/esri.rest-api.RasterDataElevationLayerJson.RasterDataElevationLayerJson"
2571
+ },
2572
+ {
2573
+ "$ref": "#/definitions/esri.rest-api.TiledElevationServiceLayerJson.TiledElevationServiceLayerJson"
2574
+ }
2575
+ ],
2576
+ "description": "Elevation layers that can be used in a web scene's ground."
2577
+ },
2384
2578
  "EnableBackgroundLocationUpdateArgs": {
2385
2579
  "additionalProperties": false,
2386
2580
  "description": "Arguments for the system.enable-background-location-updates command.",
@@ -3334,6 +3528,27 @@
3334
3528
  ],
3335
3529
  "type": "object"
3336
3530
  },
3531
+ "LayerToken": {
3532
+ "description": "Well-known layer-based tokens that can be used in the system.open-url command arguments. NOTE: Not all layer types support extents, urls, min/max scales, and/or min/max zoom levels.",
3533
+ "enum": [
3534
+ "Layer.Extent.BottomLeft.Latitude",
3535
+ "Layer.Extent.BottomLeft.Longitude",
3536
+ "Layer.Extent.BottomRight.Latitude",
3537
+ "Layer.Extent.BottomRight.Longitude",
3538
+ "Layer.Extent.MaxScale",
3539
+ "Layer.Extent.MaxZoomLevel",
3540
+ "Layer.Extent.MinScale",
3541
+ "Layer.Extent.MinZoomLevel",
3542
+ "Layer.Extent.TopLeft.Latitude",
3543
+ "Layer.Extent.TopLeft.Longitude",
3544
+ "Layer.Extent.TopRight.Latitude",
3545
+ "Layer.Extent.TopRight.Longitude",
3546
+ "Layer.ID",
3547
+ "Layer.Title",
3548
+ "Layer.URL"
3549
+ ],
3550
+ "type": "string"
3551
+ },
3337
3552
  "LayersLike": {
3338
3553
  "anyOf": [
3339
3554
  {
@@ -3411,6 +3626,57 @@
3411
3626
  },
3412
3627
  "type": "object"
3413
3628
  },
3629
+ "LightingJson": {
3630
+ "anyOf": [
3631
+ {
3632
+ "$ref": "#/definitions/esri.rest-api.EnvironmentJson.SunLightingJson"
3633
+ },
3634
+ {
3635
+ "$ref": "#/definitions/esri.rest-api.EnvironmentJson.VirtualLightingJson"
3636
+ }
3637
+ ],
3638
+ "description": "Settings for defining the lighting of the scene."
3639
+ },
3640
+ "LocationToken": {
3641
+ "description": "Well-known location-based tokens that can be used in the system.open-url command arguments. Location.Map.ZoomLevel is not supported by Mobile; the supported levels and their associated numeric values can be found here: https://developers.arcgis.com/documentation/mapping-apis-and-services/reference/zoom-levels-and-scale/.",
3642
+ "enum": [
3643
+ "Location.Feature.Latitude",
3644
+ "Location.Feature.Longitude",
3645
+ "Location.Geolocation.Latitude",
3646
+ "Location.Geolocation.Longitude",
3647
+ "Location.Map.BottomLeft.Latitude",
3648
+ "Location.Map.BottomLeft.Longitude",
3649
+ "Location.Map.BottomRight.Latitude",
3650
+ "Location.Map.BottomRight.Longitude",
3651
+ "Location.Map.Center.Latitude",
3652
+ "Location.Map.Center.Longitude",
3653
+ "Location.Map.Scale",
3654
+ "Location.Map.TopLeft.Latitude",
3655
+ "Location.Map.TopLeft.Longitude",
3656
+ "Location.Map.TopRight.Latitude",
3657
+ "Location.Map.TopRight.Longitude",
3658
+ "Location.Map.ZoomLevel"
3659
+ ],
3660
+ "type": "string"
3661
+ },
3662
+ "MapRotateArgs": {
3663
+ "additionalProperties": false,
3664
+ "description": "Arguments for the \"map.rotate-by\" and \"map.rotate-to\" commands.",
3665
+ "properties": {
3666
+ "maps": {
3667
+ "$ref": "MapsLike",
3668
+ "description": "The map to rotate."
3669
+ },
3670
+ "rotation": {
3671
+ "description": "The number of degrees clock-wise, with North being 0 degrees.",
3672
+ "type": "number"
3673
+ }
3674
+ },
3675
+ "required": [
3676
+ "rotation"
3677
+ ],
3678
+ "type": "object"
3679
+ },
3414
3680
  "MapsFeatureResultArgs": {
3415
3681
  "additionalProperties": false,
3416
3682
  "description": "Event args for any events that contain results that were obtained for from a map operation.",
@@ -4618,6 +4884,17 @@
4618
4884
  ],
4619
4885
  "description": "Arguments for various commands that manipulate the current set of shown results."
4620
4886
  },
4887
+ "SimpleAction": {
4888
+ "anyOf": [
4889
+ {
4890
+ "$ref": "#/definitions/@vertigis.arcgis-extensions.support.Action.BoundAction"
4891
+ },
4892
+ {
4893
+ "type": "string"
4894
+ }
4895
+ ],
4896
+ "description": "Defines a single action to perform."
4897
+ },
4621
4898
  "SketchTool": {
4622
4899
  "description": "The type of tool used for sketching.",
4623
4900
  "enum": [
@@ -5333,6 +5610,26 @@
5333
5610
  ],
5334
5611
  "description": "A visualVariable is an object containing the type of drawing property, the axis the variable is applied to, and additional properties for the variable. There are three types of visual variables, 'colorInfo', 'sizeInfo', and 'transparencyInfo'.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/visualVariable/} {@link https://developers.arcgis.com/web-scene-specification/objects/visualVariable/}."
5335
5612
  },
5613
+ "WeatherJson": {
5614
+ "anyOf": [
5615
+ {
5616
+ "$ref": "#/definitions/esri.rest-api.EnvironmentJson.CloudyWeatherJson"
5617
+ },
5618
+ {
5619
+ "$ref": "#/definitions/esri.rest-api.EnvironmentJson.FoggyWeatherJson"
5620
+ },
5621
+ {
5622
+ "$ref": "#/definitions/esri.rest-api.EnvironmentJson.RainyWeatherJson"
5623
+ },
5624
+ {
5625
+ "$ref": "#/definitions/esri.rest-api.EnvironmentJson.SunnyWeatherJson"
5626
+ },
5627
+ {
5628
+ "$ref": "#/definitions/esri.rest-api.EnvironmentJson.SnowyWeatherJson"
5629
+ }
5630
+ ],
5631
+ "description": "Indicates the type of weather visualization in the scene."
5632
+ },
5336
5633
  "WebAddAttachmentArgs": {
5337
5634
  "additionalProperties": false,
5338
5635
  "description": "VertiGIS Studio Web's arguments for the \"edit.add-attachment\" command. Not supported by Mobile.",
@@ -6219,44 +6516,41 @@
6219
6516
  ],
6220
6517
  "type": "object"
6221
6518
  },
6222
- "esri.rest-api.BuildingSceneLayerJson.AuthoringInfoFilterBlockJson": {
6519
+ "esri.rest-api.BasemapJson.BasemapJson": {
6223
6520
  "additionalProperties": false,
6224
- "description": "The filter authoring info object contains metadata about the authoring process for creating a filter block object. This allows the authoring client to save specific, overridable settings. The next time it is accessed via an authoring client, their selections are remembered. Non-authoring clients can ignore it.",
6521
+ "description": "A basemap layer is a layer that provides geographic context to the map. A web map always contains a basemap. A web scene is not required to always contain a basemap. The basemap has a title and is the combination of each BasemapLayer.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/basemap/}.",
6225
6522
  "properties": {
6226
- "filterTypes": {
6227
- "description": "Array of defined filter types. Each filter type has an array of filter values.",
6523
+ "baseMapLayers": {
6524
+ "description": "An array of BasemapLayer objects defining the basemaps used in the web map/web scene.",
6228
6525
  "items": {
6229
- "$ref": "#/definitions/esri.rest-api.BuildingSceneLayerJson.AuthoringInfoFilterTypeJson"
6526
+ "$ref": "#/definitions/BasemapLayerJson"
6230
6527
  },
6231
6528
  "type": "array"
6232
- }
6233
- },
6234
- "type": "object"
6235
- },
6236
- "esri.rest-api.BuildingSceneLayerJson.AuthoringInfoFilterTypeJson": {
6237
- "additionalProperties": false,
6238
- "description": "The file authoring information for a filter, including the filter type and its value settings.",
6239
- "properties": {
6240
- "filterType": {
6241
- "description": "Represents the filter type name. Name is a unique identifier.",
6242
- "type": "string"
6243
6529
  },
6244
- "filterValues": {
6245
- "description": "Array of filter values. Filter values are the attributes that can be stored for individual fields in a layer.",
6530
+ "elevationLayers": {
6531
+ "description": "Deprecated, use ground.layers instead. An array of elevationLayer objects defining the basemaps used in the web scene.",
6246
6532
  "items": {
6247
- "type": "string"
6533
+ "$ref": "#/definitions/ElevationLayerJson"
6248
6534
  },
6249
6535
  "type": "array"
6536
+ },
6537
+ "id": {
6538
+ "description": "An identifier used to refer to the basemap when referencing it elsewhere.\n\nNOTE: Only available in web scenes!",
6539
+ "type": "string"
6540
+ },
6541
+ "title": {
6542
+ "description": "String title for the basemap that can be used in a table of contents. If not defined, then it takes the title of the first baseMapLayer in the array.",
6543
+ "type": "string"
6250
6544
  }
6251
6545
  },
6252
6546
  "type": "object"
6253
6547
  },
6254
- "esri.rest-api.BuildingSceneLayerJson.BuildingSceneLayerJson": {
6548
+ "esri.rest-api.BingLayerJson.BingLayerJson": {
6255
6549
  "additionalProperties": false,
6256
- "description": "The BuildingSceneLayer is a layer type designed for on-demand streaming and displaying building data.",
6550
+ "description": "Indicates if working with Microsoft Bing layers. There are three layer types associated with Bing Layers: BingMapsAerial, BingMapsRoad, and BingMapsHybrid.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/bingLayer/}.",
6257
6551
  "properties": {
6258
- "activeFilterId": {
6259
- "description": "Specifies the id of the currently active filter.",
6552
+ "bingKey": {
6553
+ "description": "String value that unlocks the use of Bing layers in a web map.",
6260
6554
  "type": "string"
6261
6555
  },
6262
6556
  "blendMode": {
@@ -6296,40 +6590,32 @@
6296
6590
  ],
6297
6591
  "type": "string"
6298
6592
  },
6593
+ "canShareBingPublic": {
6594
+ "description": "Boolean value indicating whether the Bing key can be shared to the public.",
6595
+ "type": "boolean"
6596
+ },
6299
6597
  "effect": {
6300
6598
  "$ref": "#/definitions/EffectJson",
6301
6599
  "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
6302
6600
  },
6303
- "filters": {
6304
- "description": "A list of filters available for this layer. Overrides filters defined on the service.",
6305
- "items": {
6306
- "$ref": "#/definitions/esri.rest-api.BuildingSceneLayerJson.FilterJson"
6307
- },
6308
- "type": "array"
6309
- },
6310
6601
  "id": {
6311
6602
  "description": "A unique identifying string for the layer.",
6312
6603
  "type": "string"
6313
6604
  },
6605
+ "isReference": {
6606
+ "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).",
6607
+ "type": "boolean"
6608
+ },
6314
6609
  "itemId": {
6315
6610
  "description": "Optional string containing the item ID of the service if it's registered on ArcGIS Online or your organization's portal.",
6316
6611
  "type": "string"
6317
6612
  },
6318
- "layerDefinition": {
6319
- "$ref": "#/definitions/esri.rest-api.LayerDefinitionJson.LayerDefinitionJson",
6320
- "description": "Additional properties that can define an elevation offset for the layer."
6321
- },
6322
6613
  "layerType": {
6323
- "const": "BuildingSceneLayer",
6324
6614
  "description": "The type of layer.",
6325
- "type": "string"
6326
- },
6327
- "listMode": {
6328
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
6329
6615
  "enum": [
6330
- "hide",
6331
- "hide-children",
6332
- "show"
6616
+ "BingMapsAerial",
6617
+ "BingMapsHybrid",
6618
+ "BingMapsRoad"
6333
6619
  ],
6334
6620
  "type": "string"
6335
6621
  },
@@ -6345,7 +6631,186 @@
6345
6631
  "description": "The degree of transparency applied to the layer on the client side, where\n0 is full transparency and 1 is no transparency.",
6346
6632
  "type": "number"
6347
6633
  },
6348
- "refreshInterval": {
6634
+ "portalUrl": {
6635
+ "description": "A string value representing the URL to the portal/organization. Calls should be made to this property to retrieve the Bing key. If the key is not made accessible to the public or if canShareBingPublic is false, any web maps using Bing layers will not work.",
6636
+ "type": "string"
6637
+ },
6638
+ "showLegend": {
6639
+ "description": "Indicates whether to allow map authors the ability to control what layers should be shown in a client's legend.",
6640
+ "type": "boolean"
6641
+ },
6642
+ "title": {
6643
+ "description": "A user-friendly title for the layer that can be used in a table of contents. If this is not included, then a title is derived from the service.",
6644
+ "type": "string"
6645
+ },
6646
+ "type": {
6647
+ "description": "(Deprecated, use layerType instead.) If the layer is referenced through a URL, but is not an ArcGIS web service, then this parameter can be supplied to denote the layer type.",
6648
+ "enum": [
6649
+ "BingMapsAerial",
6650
+ "BingMapsHybrid",
6651
+ "BingMapsRoad",
6652
+ "CSV",
6653
+ "KML",
6654
+ "OpenStreetMap",
6655
+ "WMS",
6656
+ "WebTiledLayer"
6657
+ ],
6658
+ "type": "string"
6659
+ },
6660
+ "visibility": {
6661
+ "description": "Determines whether the layer is initially visible in the web map.",
6662
+ "type": "boolean"
6663
+ },
6664
+ "visibilityTimeExtent": {
6665
+ "description": "Represents time extent that will control when a layer should be visible based on webmap's current time. Visibility time extent only affects the layer visibility and will not filter the data.",
6666
+ "items": [
6667
+ {
6668
+ "type": "number"
6669
+ },
6670
+ {
6671
+ "type": "number"
6672
+ }
6673
+ ],
6674
+ "maxItems": 2,
6675
+ "minItems": 2,
6676
+ "type": "array"
6677
+ }
6678
+ },
6679
+ "required": [
6680
+ "bingKey",
6681
+ "canShareBingPublic",
6682
+ "layerType",
6683
+ "portalUrl"
6684
+ ],
6685
+ "type": "object"
6686
+ },
6687
+ "esri.rest-api.BuildingSceneLayerJson.AuthoringInfoFilterBlockJson": {
6688
+ "additionalProperties": false,
6689
+ "description": "The filter authoring info object contains metadata about the authoring process for creating a filter block object. This allows the authoring client to save specific, overridable settings. The next time it is accessed via an authoring client, their selections are remembered. Non-authoring clients can ignore it.",
6690
+ "properties": {
6691
+ "filterTypes": {
6692
+ "description": "Array of defined filter types. Each filter type has an array of filter values.",
6693
+ "items": {
6694
+ "$ref": "#/definitions/esri.rest-api.BuildingSceneLayerJson.AuthoringInfoFilterTypeJson"
6695
+ },
6696
+ "type": "array"
6697
+ }
6698
+ },
6699
+ "type": "object"
6700
+ },
6701
+ "esri.rest-api.BuildingSceneLayerJson.AuthoringInfoFilterTypeJson": {
6702
+ "additionalProperties": false,
6703
+ "description": "The file authoring information for a filter, including the filter type and its value settings.",
6704
+ "properties": {
6705
+ "filterType": {
6706
+ "description": "Represents the filter type name. Name is a unique identifier.",
6707
+ "type": "string"
6708
+ },
6709
+ "filterValues": {
6710
+ "description": "Array of filter values. Filter values are the attributes that can be stored for individual fields in a layer.",
6711
+ "items": {
6712
+ "type": "string"
6713
+ },
6714
+ "type": "array"
6715
+ }
6716
+ },
6717
+ "type": "object"
6718
+ },
6719
+ "esri.rest-api.BuildingSceneLayerJson.BuildingSceneLayerJson": {
6720
+ "additionalProperties": false,
6721
+ "description": "The BuildingSceneLayer is a layer type designed for on-demand streaming and displaying building data.",
6722
+ "properties": {
6723
+ "activeFilterId": {
6724
+ "description": "Specifies the id of the currently active filter.",
6725
+ "type": "string"
6726
+ },
6727
+ "blendMode": {
6728
+ "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.",
6729
+ "enum": [
6730
+ "average",
6731
+ "color",
6732
+ "color-burn",
6733
+ "color-dodge",
6734
+ "darken",
6735
+ "destination-atop",
6736
+ "destination-in",
6737
+ "destination-out",
6738
+ "destination-over",
6739
+ "difference",
6740
+ "exclusion",
6741
+ "hard-light",
6742
+ "hue",
6743
+ "invert",
6744
+ "lighten",
6745
+ "lighter",
6746
+ "luminosity",
6747
+ "minus",
6748
+ "multiply",
6749
+ "normal",
6750
+ "overlay",
6751
+ "plus",
6752
+ "reflect",
6753
+ "saturation",
6754
+ "screen",
6755
+ "soft-light",
6756
+ "source-atop",
6757
+ "source-in",
6758
+ "source-out",
6759
+ "vivid-light",
6760
+ "xor"
6761
+ ],
6762
+ "type": "string"
6763
+ },
6764
+ "effect": {
6765
+ "$ref": "#/definitions/EffectJson",
6766
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
6767
+ },
6768
+ "filters": {
6769
+ "description": "A list of filters available for this layer. Overrides filters defined on the service.",
6770
+ "items": {
6771
+ "$ref": "#/definitions/esri.rest-api.BuildingSceneLayerJson.FilterJson"
6772
+ },
6773
+ "type": "array"
6774
+ },
6775
+ "id": {
6776
+ "description": "A unique identifying string for the layer.",
6777
+ "type": "string"
6778
+ },
6779
+ "itemId": {
6780
+ "description": "Optional string containing the item ID of the service if it's registered on ArcGIS Online or your organization's portal.",
6781
+ "type": "string"
6782
+ },
6783
+ "layerDefinition": {
6784
+ "$ref": "#/definitions/esri.rest-api.LayerDefinitionJson.LayerDefinitionJson",
6785
+ "description": "Additional properties that can define an elevation offset for the layer."
6786
+ },
6787
+ "layerType": {
6788
+ "const": "BuildingSceneLayer",
6789
+ "description": "The type of layer.",
6790
+ "type": "string"
6791
+ },
6792
+ "listMode": {
6793
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
6794
+ "enum": [
6795
+ "hide",
6796
+ "hide-children",
6797
+ "show"
6798
+ ],
6799
+ "type": "string"
6800
+ },
6801
+ "maxScale": {
6802
+ "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.",
6803
+ "type": "number"
6804
+ },
6805
+ "minScale": {
6806
+ "description": "A number representing the minimum 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.",
6807
+ "type": "number"
6808
+ },
6809
+ "opacity": {
6810
+ "description": "The degree of transparency applied to the layer on the client side, where\n0 is full transparency and 1 is no transparency.",
6811
+ "type": "number"
6812
+ },
6813
+ "refreshInterval": {
6349
6814
  "description": "When the refresh interval is set on a layer, the client must refresh that layer only, not the entire web map. The default value is '0', meaning the no refresh. You can enable a refresh interval on the following types of layers: ArcGIS Server web service, hosted feature layer, hosted tile layer, OGC WMS, OGS WMTS, tile layer, GeoRSS, Living Atlas layers, basemaps (including Bing Maps basemaps), CSV from the web with latitude and longitude fields, and KML when added to ArcGIS Online through the My Content page. See {@link https://doc.arcgis.com/en/arcgis-online/create-maps/set-refresh-interval.htm}.",
6350
6815
  "type": "number"
6351
6816
  },
@@ -7112,85 +7577,295 @@
7112
7577
  ],
7113
7578
  "type": "object"
7114
7579
  },
7115
- "esri.rest-api.FeatureCollectionJson.FeatureCollectionJson": {
7580
+ "esri.rest-api.EnvironmentJson.CloudyWeatherJson": {
7116
7581
  "additionalProperties": false,
7117
- "description": "Defines a layer of features whose geometry and attributes will be stored directly within the web map.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/featureCollection/}.",
7582
+ "description": "Object containing information for changing the weather conditions in the scene to cloudy.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/cloudyWeather/}.",
7118
7583
  "properties": {
7119
- "layers": {
7120
- "description": "An array of Layer objects defining all the styling, geometry, and attribute information for the features.",
7584
+ "cloudCover": {
7585
+ "description": "Specifies the amount of cloud cover in the sky.",
7586
+ "type": "number"
7587
+ },
7588
+ "type": {
7589
+ "const": "cloudy",
7590
+ "description": "The type of weather.",
7591
+ "type": "string"
7592
+ }
7593
+ },
7594
+ "required": [
7595
+ "type"
7596
+ ],
7597
+ "type": "object"
7598
+ },
7599
+ "esri.rest-api.EnvironmentJson.ColorBackgroundJson": {
7600
+ "additionalProperties": false,
7601
+ "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/}.",
7602
+ "properties": {
7603
+ "color": {
7604
+ "description": "Color is represented as a three or four-element array.",
7121
7605
  "items": {
7122
- "$ref": "#/definitions/esri.rest-api.SublayerJson.SublayerJson"
7606
+ "type": "number"
7123
7607
  },
7124
7608
  "type": "array"
7125
7609
  },
7126
- "showLegend": {
7127
- "description": "Indicates if this layer should be shown in the legend in client applications. The default is true.",
7128
- "type": "boolean"
7610
+ "transparency": {
7611
+ "description": "The value has to lie between 100 (full transparency) and 0 (full opacity). Web scenes only.",
7612
+ "type": "number"
7613
+ },
7614
+ "type": {
7615
+ "const": "color",
7616
+ "description": "The type of background. Web scenes only.",
7617
+ "type": "string"
7129
7618
  }
7130
7619
  },
7131
7620
  "required": [
7132
- "layers"
7621
+ "type"
7133
7622
  ],
7134
7623
  "type": "object"
7135
7624
  },
7136
- "esri.rest-api.FeatureJson.FeatureJson": {
7625
+ "esri.rest-api.EnvironmentJson.EnvironmentJson": {
7137
7626
  "additionalProperties": false,
7138
- "description": "Contains information about an attribute field and feature geometry.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/feature/} {@link https://developers.arcgis.com/web-scene-specification/objects/feature/}.",
7627
+ "description": "Represents settings that affect the environment in which the WebScene is displayed (such as lighting). It is part of the initial state of the WebScene as well as slides in the presentation.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/environment/}.",
7139
7628
  "properties": {
7140
- "attributes": {
7141
- "description": "The feature attributes. It is a JSON object that contains a dictionary of name-value pairs. The names are the feature field names. The values are the field values and they can be any of the standard JSON types - string, number and boolean. Note that date values are encoded as numbers. The number represents the number of milliseconds since epoch (January 1,\n1970) in UTC."
7629
+ "atmosphereEnabled": {
7630
+ "description": "Whether the atmosphere should be visualized. This includes sky and haze effects.",
7631
+ "type": "boolean"
7142
7632
  },
7143
- "geometry": {
7144
- "$ref": "#/definitions/GeometryJson",
7145
- "description": "The feature geometry."
7633
+ "background": {
7634
+ "$ref": "#/definitions/esri.rest-api.EnvironmentJson.ColorBackgroundJson",
7635
+ "description": "Specifies how the background of the scene (which lies behind sky, stars and atmosphere) should be displayed."
7146
7636
  },
7147
- "popupInfo": {
7148
- "$ref": "#/definitions/esri.rest-api.PopupInfoJson.PopupInfoJson",
7149
- "description": "A popupInfo object defining the content of popup window when you click a feature on the map. Applicable to features in a map notes feature layer only."
7637
+ "lighting": {
7638
+ "$ref": "#/definitions/LightingJson",
7639
+ "description": "Object containing information on how the scene is lit."
7150
7640
  },
7151
- "symbol": {
7152
- "$ref": "#/definitions/esri.rest-api.SymbolJson.SymbolJson",
7153
- "description": "Symbol used for drawing the feature."
7641
+ "starsEnabled": {
7642
+ "description": "Whether stars should be displayed in the sky.",
7643
+ "type": "boolean"
7644
+ },
7645
+ "weather": {
7646
+ "$ref": "#/definitions/WeatherJson",
7647
+ "description": "Indicates the type of weather visualization in the scene."
7154
7648
  }
7155
7649
  },
7156
7650
  "type": "object"
7157
7651
  },
7158
- "esri.rest-api.FeatureLayerJson.FeatureLayerJson": {
7652
+ "esri.rest-api.EnvironmentJson.FoggyWeatherJson": {
7159
7653
  "additionalProperties": false,
7160
- "description": "Feature layers can be created by referencing a layer from either a map service or a feature service or by specifying a feature collection object. Use a map service if you just want to retrieve geometries and attributes from the server and symbolize them yourself. Use a feature service if you want to take advantage of symbols from the service's source map document. Also, use a feature service if you plan on doing editing with the feature layer. Feature layers honor any feature templates configured in the source map document. Feature collection objects are used to create a feature layer based on the supplied definition.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/featureLayer/} {@link https://developers.arcgis.com/web-scene-specification/objects/featureLayer/}.",
7654
+ "description": "Object containing information for changing the weather conditions in the scene to foggy.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/foggyWeather/}.",
7161
7655
  "properties": {
7162
- "blendMode": {
7163
- "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.",
7164
- "enum": [
7165
- "average",
7166
- "color",
7167
- "color-burn",
7168
- "color-dodge",
7169
- "darken",
7170
- "destination-atop",
7171
- "destination-in",
7172
- "destination-out",
7173
- "destination-over",
7174
- "difference",
7175
- "exclusion",
7176
- "hard-light",
7177
- "hue",
7178
- "invert",
7179
- "lighten",
7180
- "lighter",
7181
- "luminosity",
7182
- "minus",
7183
- "multiply",
7184
- "normal",
7185
- "overlay",
7186
- "plus",
7187
- "reflect",
7188
- "saturation",
7189
- "screen",
7190
- "soft-light",
7191
- "source-atop",
7192
- "source-in",
7193
- "source-out",
7656
+ "fogStrength": {
7657
+ "description": "Specifies the amount of fog used in the scene.",
7658
+ "type": "number"
7659
+ },
7660
+ "type": {
7661
+ "const": "foggy",
7662
+ "description": "The type of weather.",
7663
+ "type": "string"
7664
+ }
7665
+ },
7666
+ "required": [
7667
+ "type"
7668
+ ],
7669
+ "type": "object"
7670
+ },
7671
+ "esri.rest-api.EnvironmentJson.RainyWeatherJson": {
7672
+ "additionalProperties": false,
7673
+ "description": "Object containing information for changing the weather conditions in the scene to rainy.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/rainyWeather/}.",
7674
+ "properties": {
7675
+ "cloudCover": {
7676
+ "description": "Specifies the amount of cloud cover in the sky.",
7677
+ "type": "number"
7678
+ },
7679
+ "precipitation": {
7680
+ "description": "Specifies the amount of snowfall in the scene.",
7681
+ "type": "number"
7682
+ },
7683
+ "type": {
7684
+ "const": "rainy",
7685
+ "description": "The type of weather.",
7686
+ "type": "string"
7687
+ }
7688
+ },
7689
+ "required": [
7690
+ "type"
7691
+ ],
7692
+ "type": "object"
7693
+ },
7694
+ "esri.rest-api.EnvironmentJson.SnowyWeatherJson": {
7695
+ "additionalProperties": false,
7696
+ "description": "Object containing information for changing the weather conditions in the scene to snowy.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/sunnyWeather/}.",
7697
+ "properties": {
7698
+ "cloudCover": {
7699
+ "description": "Specifies the amount of cloud cover in the sky.",
7700
+ "type": "number"
7701
+ },
7702
+ "precipitation": {
7703
+ "description": "Specifies the amount of snowfall in the scene.",
7704
+ "type": "number"
7705
+ },
7706
+ "snowCover": {
7707
+ "description": "Display surfaces covered with snow.",
7708
+ "enum": [
7709
+ "disabled",
7710
+ "enabled"
7711
+ ],
7712
+ "type": "string"
7713
+ },
7714
+ "type": {
7715
+ "const": "snowy",
7716
+ "description": "The type of weather.",
7717
+ "type": "string"
7718
+ }
7719
+ },
7720
+ "required": [
7721
+ "type"
7722
+ ],
7723
+ "type": "object"
7724
+ },
7725
+ "esri.rest-api.EnvironmentJson.SunLightingJson": {
7726
+ "additionalProperties": false,
7727
+ "description": "Object containing information for the sun lighting type. The position of the light is set to the sun's location.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/sunLighting/}.",
7728
+ "properties": {
7729
+ "datetime": {
7730
+ "description": "The current date and time of the simulated sun. It is a number representing the number of milliseconds since 1 January, 1970 UTC.",
7731
+ "type": "number"
7732
+ },
7733
+ "directShadows": {
7734
+ "description": "Indicates whether to show shadows cast by the sun.",
7735
+ "type": "boolean"
7736
+ },
7737
+ "displayUTCOffset": {
7738
+ "description": "UTC offset in decimal hours. Not to be applied to datetime for sun position, only to adjust display of datetime in UI. If displayUTCOffset is null, offset is calculated for the current location (approximate only).",
7739
+ "type": "number"
7740
+ },
7741
+ "type": {
7742
+ "const": "sun",
7743
+ "description": "The type of lighting.",
7744
+ "type": "string"
7745
+ }
7746
+ },
7747
+ "required": [
7748
+ "type"
7749
+ ],
7750
+ "type": "object"
7751
+ },
7752
+ "esri.rest-api.EnvironmentJson.SunnyWeatherJson": {
7753
+ "additionalProperties": false,
7754
+ "description": "Object containing information for changing the weather conditions in the scene to sunny.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/sunnyWeather/}.",
7755
+ "properties": {
7756
+ "cloudCover": {
7757
+ "description": "Specifies the amount of cloud cover in the sky.",
7758
+ "type": "number"
7759
+ },
7760
+ "type": {
7761
+ "const": "sunny",
7762
+ "description": "The type of weather.",
7763
+ "type": "string"
7764
+ }
7765
+ },
7766
+ "required": [
7767
+ "type"
7768
+ ],
7769
+ "type": "object"
7770
+ },
7771
+ "esri.rest-api.EnvironmentJson.VirtualLightingJson": {
7772
+ "additionalProperties": false,
7773
+ "description": "Object containing information for the virtual lighting type. The position of the light follows the camera and is set behind the camera with a small offset to the left side.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/sunLighting/}.",
7774
+ "properties": {
7775
+ "directShadows": {
7776
+ "description": "Indicates whether to show shadows cast by the main light source.",
7777
+ "type": "boolean"
7778
+ },
7779
+ "type": {
7780
+ "const": "virtual",
7781
+ "description": "The type of lighting.",
7782
+ "type": "string"
7783
+ }
7784
+ },
7785
+ "required": [
7786
+ "type"
7787
+ ],
7788
+ "type": "object"
7789
+ },
7790
+ "esri.rest-api.FeatureCollectionJson.FeatureCollectionJson": {
7791
+ "additionalProperties": false,
7792
+ "description": "Defines a layer of features whose geometry and attributes will be stored directly within the web map.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/featureCollection/}.",
7793
+ "properties": {
7794
+ "layers": {
7795
+ "description": "An array of Layer objects defining all the styling, geometry, and attribute information for the features.",
7796
+ "items": {
7797
+ "$ref": "#/definitions/esri.rest-api.SublayerJson.SublayerJson"
7798
+ },
7799
+ "type": "array"
7800
+ },
7801
+ "showLegend": {
7802
+ "description": "Indicates if this layer should be shown in the legend in client applications. The default is true.",
7803
+ "type": "boolean"
7804
+ }
7805
+ },
7806
+ "required": [
7807
+ "layers"
7808
+ ],
7809
+ "type": "object"
7810
+ },
7811
+ "esri.rest-api.FeatureJson.FeatureJson": {
7812
+ "additionalProperties": false,
7813
+ "description": "Contains information about an attribute field and feature geometry.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/feature/} {@link https://developers.arcgis.com/web-scene-specification/objects/feature/}.",
7814
+ "properties": {
7815
+ "attributes": {
7816
+ "description": "The feature attributes. It is a JSON object that contains a dictionary of name-value pairs. The names are the feature field names. The values are the field values and they can be any of the standard JSON types - string, number and boolean. Note that date values are encoded as numbers. The number represents the number of milliseconds since epoch (January 1,\n1970) in UTC."
7817
+ },
7818
+ "geometry": {
7819
+ "$ref": "#/definitions/GeometryJson",
7820
+ "description": "The feature geometry."
7821
+ },
7822
+ "popupInfo": {
7823
+ "$ref": "#/definitions/esri.rest-api.PopupInfoJson.PopupInfoJson",
7824
+ "description": "A popupInfo object defining the content of popup window when you click a feature on the map. Applicable to features in a map notes feature layer only."
7825
+ },
7826
+ "symbol": {
7827
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.SymbolJson",
7828
+ "description": "Symbol used for drawing the feature."
7829
+ }
7830
+ },
7831
+ "type": "object"
7832
+ },
7833
+ "esri.rest-api.FeatureLayerJson.FeatureLayerJson": {
7834
+ "additionalProperties": false,
7835
+ "description": "Feature layers can be created by referencing a layer from either a map service or a feature service or by specifying a feature collection object. Use a map service if you just want to retrieve geometries and attributes from the server and symbolize them yourself. Use a feature service if you want to take advantage of symbols from the service's source map document. Also, use a feature service if you plan on doing editing with the feature layer. Feature layers honor any feature templates configured in the source map document. Feature collection objects are used to create a feature layer based on the supplied definition.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/featureLayer/} {@link https://developers.arcgis.com/web-scene-specification/objects/featureLayer/}.",
7836
+ "properties": {
7837
+ "blendMode": {
7838
+ "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.",
7839
+ "enum": [
7840
+ "average",
7841
+ "color",
7842
+ "color-burn",
7843
+ "color-dodge",
7844
+ "darken",
7845
+ "destination-atop",
7846
+ "destination-in",
7847
+ "destination-out",
7848
+ "destination-over",
7849
+ "difference",
7850
+ "exclusion",
7851
+ "hard-light",
7852
+ "hue",
7853
+ "invert",
7854
+ "lighten",
7855
+ "lighter",
7856
+ "luminosity",
7857
+ "minus",
7858
+ "multiply",
7859
+ "normal",
7860
+ "overlay",
7861
+ "plus",
7862
+ "reflect",
7863
+ "saturation",
7864
+ "screen",
7865
+ "soft-light",
7866
+ "source-atop",
7867
+ "source-in",
7868
+ "source-out",
7194
7869
  "vivid-light",
7195
7870
  "xor"
7196
7871
  ],
@@ -8332,6 +9007,32 @@
8332
9007
  ],
8333
9008
  "type": "object"
8334
9009
  },
9010
+ "esri.rest-api.GroundJson.GroundJson": {
9011
+ "additionalProperties": false,
9012
+ "description": "Ground defines the main surface of the web scene, based on elevation layers..\n\nSee https://developers.arcgis.com/web-scene-specification/objects/ground/.",
9013
+ "properties": {
9014
+ "layers": {
9015
+ "description": "An array of elevationLayer objects defining the elevation of the ground in the web scene.",
9016
+ "items": {
9017
+ "$ref": "#/definitions/ElevationLayerJson"
9018
+ },
9019
+ "type": "array"
9020
+ },
9021
+ "navigationConstraint": {
9022
+ "$ref": "__type",
9023
+ "description": "Determines whether the camera is constrained to navigate only above, or also under the ground surface."
9024
+ },
9025
+ "surfaceColor": {
9026
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.ColorJson",
9027
+ "description": "Defines the color of the ground surface, displayed underneath the basemap. If no color, the default grid is shown."
9028
+ },
9029
+ "transparency": {
9030
+ "description": "The transparency of the ground surface. It is used for seeing through the ground, therefore this property also changes the transparency of the basemap. Draped operational layers are not affected by this property. The value has to lie between 100 (full transparency) and 0 (full opacity).",
9031
+ "type": "number"
9032
+ }
9033
+ },
9034
+ "type": "object"
9035
+ },
8335
9036
  "esri.rest-api.GroupLayerJson.GroupLayerJson": {
8336
9037
  "additionalProperties": false,
8337
9038
  "description": "GroupLayer provides the ability to organize several sublayers into one common layer. Suppose there are several FeatureLayers that all represent water features in different dimensions. For example, wells (points), streams (lines), and lakes (polygons). The GroupLayer provides the functionality to treat them as one layer called Water Features even though they are stored as separate feature layers.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/groupLayer/}.",
@@ -10755,9 +11456,9 @@
10755
11456
  },
10756
11457
  "type": "object"
10757
11458
  },
10758
- "esri.rest-api.PointCloudLayerJson.PointCloudLayerJson": {
11459
+ "esri.rest-api.OpenStreetMapLayerJson.OpenStreetMapLayerJson": {
10759
11460
  "additionalProperties": false,
10760
- "description": "Point cloud data is post-processed spatially organized lidar data that consists of large collections of 3D points. Elevations for the ground, buildings, forest canopy, highway overpasses, and anything else encountered during the lidar survey make up the point cloud data. Point cloud layers allow for fast visualization of point cloud data in the browser.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/pointCloudLayer/}.",
11461
+ "description": "Allows use of OpenStreetMap data for use in basemaps only.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/openStreetMapLayer/} {@link https://developers.arcgis.com/web-scene-specification/objects/openStreetMapLayer/} Note: In the JavaScript API, open street map derived from Web tile layer.",
10761
11462
  "properties": {
10762
11463
  "blendMode": {
10763
11464
  "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.",
@@ -10796,10 +11497,6 @@
10796
11497
  ],
10797
11498
  "type": "string"
10798
11499
  },
10799
- "disablePopup": {
10800
- "description": "Indicates whether to allow a client to ignore popups defined by the service item.",
10801
- "type": "boolean"
10802
- },
10803
11500
  "effect": {
10804
11501
  "$ref": "#/definitions/EffectJson",
10805
11502
  "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
@@ -10808,22 +11505,17 @@
10808
11505
  "description": "A unique identifying string for the layer.",
10809
11506
  "type": "string"
10810
11507
  },
10811
- "layerDefinition": {
10812
- "$ref": "#/definitions/esri.rest-api.LayerDefinitionJson.LayerDefinitionJson",
10813
- "description": "A layerDefinition object defining the attribute schema and drawing information for the layer."
11508
+ "isReference": {
11509
+ "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).",
11510
+ "type": "boolean"
10814
11511
  },
10815
- "layerType": {
10816
- "const": "PointCloudLayer",
10817
- "description": "The type of layer.",
11512
+ "itemId": {
11513
+ "description": "Optional string containing the item ID of the service if it's registered on ArcGIS Online or your organization's portal.",
10818
11514
  "type": "string"
10819
11515
  },
10820
- "listMode": {
10821
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
10822
- "enum": [
10823
- "hide",
10824
- "hide-children",
10825
- "show"
10826
- ],
11516
+ "layerType": {
11517
+ "const": "OpenStreetMap",
11518
+ "description": "The type of layer.",
10827
11519
  "type": "string"
10828
11520
  },
10829
11521
  "maxScale": {
@@ -10838,14 +11530,6 @@
10838
11530
  "description": "The degree of transparency applied to the layer on the client side, where\n0 is full transparency and 1 is no transparency.",
10839
11531
  "type": "number"
10840
11532
  },
10841
- "popupInfo": {
10842
- "$ref": "#/definitions/esri.rest-api.PopupInfoJson.PopupInfoJson",
10843
- "description": "A PopupInfo object defining the content of pop-up windows when you click or query a feature."
10844
- },
10845
- "refreshInterval": {
10846
- "description": "When the refresh interval is set on a layer, the client must refresh that layer only, not the entire web map. The default value is '0', meaning the no refresh. You can enable a refresh interval on the following types of layers: ArcGIS Server web service, hosted feature layer, hosted tile layer, OGC WMS, OGS WMTS, tile layer, GeoRSS, Living Atlas layers, basemaps (including Bing Maps basemaps), CSV from the web with latitude and longitude fields, and KML when added to ArcGIS Online through the My Content page. See {@link https://doc.arcgis.com/en/arcgis-online/create-maps/set-refresh-interval.htm}.",
10847
- "type": "number"
10848
- },
10849
11533
  "showLegend": {
10850
11534
  "description": "Indicates whether to allow map authors the ability to control what layers should be shown in a client's legend.",
10851
11535
  "type": "boolean"
@@ -10868,10 +11552,6 @@
10868
11552
  ],
10869
11553
  "type": "string"
10870
11554
  },
10871
- "url": {
10872
- "description": "URL to the ArcGIS Server Image Service.",
10873
- "type": "string"
10874
- },
10875
11555
  "visibility": {
10876
11556
  "description": "Determines whether the layer is initially visible in the web map.",
10877
11557
  "type": "boolean"
@@ -10896,39 +11576,180 @@
10896
11576
  ],
10897
11577
  "type": "object"
10898
11578
  },
10899
- "esri.rest-api.PopupInfoJson.FieldInfoJson": {
11579
+ "esri.rest-api.PointCloudLayerJson.PointCloudLayerJson": {
10900
11580
  "additionalProperties": false,
10901
- "description": "Defines how a field in the dataset participates (or does not participate) in a pop-up window.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/fieldInfo/} {@link https://developers.arcgis.com/web-scene-specification/objects/fieldInfo/}.",
11581
+ "description": "Point cloud data is post-processed spatially organized lidar data that consists of large collections of 3D points. Elevations for the ground, buildings, forest canopy, highway overpasses, and anything else encountered during the lidar survey make up the point cloud data. Point cloud layers allow for fast visualization of point cloud data in the browser.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/pointCloudLayer/}.",
10902
11582
  "properties": {
10903
- "fieldName": {
10904
- "description": "The field name as defined by the service.",
10905
- "type": "string"
10906
- },
10907
- "format": {
10908
- "$ref": "#/definitions/esri.rest-api.PopupInfoJson.FormatJson",
10909
- "description": "A format object used with numerical or date fields to provide more detail about how the value should be displayed in a web map pop-up window."
10910
- },
10911
- "isEditable": {
10912
- "description": "Determines whether users can edit this field.",
10913
- "type": "boolean"
10914
- },
10915
- "label": {
10916
- "description": "The field alias. This can be overridden by the web map author.",
10917
- "type": "string"
10918
- },
10919
- "stringFieldOption": {
10920
- "description": "The type of input box editors will see when editing the field. Applies only to string fields.",
11583
+ "blendMode": {
11584
+ "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.",
10921
11585
  "enum": [
10922
- "richtext",
10923
- "textarea",
10924
- "textbox"
10925
- ],
10926
- "type": "string"
10927
- },
10928
- "tooltip": {
10929
- "description": "Provides an editing hint for editors of the field. This string could provide a short description of the field and how editors should format or supply its value.",
10930
- "type": "string"
10931
- },
11586
+ "average",
11587
+ "color",
11588
+ "color-burn",
11589
+ "color-dodge",
11590
+ "darken",
11591
+ "destination-atop",
11592
+ "destination-in",
11593
+ "destination-out",
11594
+ "destination-over",
11595
+ "difference",
11596
+ "exclusion",
11597
+ "hard-light",
11598
+ "hue",
11599
+ "invert",
11600
+ "lighten",
11601
+ "lighter",
11602
+ "luminosity",
11603
+ "minus",
11604
+ "multiply",
11605
+ "normal",
11606
+ "overlay",
11607
+ "plus",
11608
+ "reflect",
11609
+ "saturation",
11610
+ "screen",
11611
+ "soft-light",
11612
+ "source-atop",
11613
+ "source-in",
11614
+ "source-out",
11615
+ "vivid-light",
11616
+ "xor"
11617
+ ],
11618
+ "type": "string"
11619
+ },
11620
+ "disablePopup": {
11621
+ "description": "Indicates whether to allow a client to ignore popups defined by the service item.",
11622
+ "type": "boolean"
11623
+ },
11624
+ "effect": {
11625
+ "$ref": "#/definitions/EffectJson",
11626
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
11627
+ },
11628
+ "id": {
11629
+ "description": "A unique identifying string for the layer.",
11630
+ "type": "string"
11631
+ },
11632
+ "layerDefinition": {
11633
+ "$ref": "#/definitions/esri.rest-api.LayerDefinitionJson.LayerDefinitionJson",
11634
+ "description": "A layerDefinition object defining the attribute schema and drawing information for the layer."
11635
+ },
11636
+ "layerType": {
11637
+ "const": "PointCloudLayer",
11638
+ "description": "The type of layer.",
11639
+ "type": "string"
11640
+ },
11641
+ "listMode": {
11642
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
11643
+ "enum": [
11644
+ "hide",
11645
+ "hide-children",
11646
+ "show"
11647
+ ],
11648
+ "type": "string"
11649
+ },
11650
+ "maxScale": {
11651
+ "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.",
11652
+ "type": "number"
11653
+ },
11654
+ "minScale": {
11655
+ "description": "A number representing the minimum 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.",
11656
+ "type": "number"
11657
+ },
11658
+ "opacity": {
11659
+ "description": "The degree of transparency applied to the layer on the client side, where\n0 is full transparency and 1 is no transparency.",
11660
+ "type": "number"
11661
+ },
11662
+ "popupInfo": {
11663
+ "$ref": "#/definitions/esri.rest-api.PopupInfoJson.PopupInfoJson",
11664
+ "description": "A PopupInfo object defining the content of pop-up windows when you click or query a feature."
11665
+ },
11666
+ "refreshInterval": {
11667
+ "description": "When the refresh interval is set on a layer, the client must refresh that layer only, not the entire web map. The default value is '0', meaning the no refresh. You can enable a refresh interval on the following types of layers: ArcGIS Server web service, hosted feature layer, hosted tile layer, OGC WMS, OGS WMTS, tile layer, GeoRSS, Living Atlas layers, basemaps (including Bing Maps basemaps), CSV from the web with latitude and longitude fields, and KML when added to ArcGIS Online through the My Content page. See {@link https://doc.arcgis.com/en/arcgis-online/create-maps/set-refresh-interval.htm}.",
11668
+ "type": "number"
11669
+ },
11670
+ "showLegend": {
11671
+ "description": "Indicates whether to allow map authors the ability to control what layers should be shown in a client's legend.",
11672
+ "type": "boolean"
11673
+ },
11674
+ "title": {
11675
+ "description": "A user-friendly title for the layer that can be used in a table of contents. If this is not included, then a title is derived from the service.",
11676
+ "type": "string"
11677
+ },
11678
+ "type": {
11679
+ "description": "(Deprecated, use layerType instead.) If the layer is referenced through a URL, but is not an ArcGIS web service, then this parameter can be supplied to denote the layer type.",
11680
+ "enum": [
11681
+ "BingMapsAerial",
11682
+ "BingMapsHybrid",
11683
+ "BingMapsRoad",
11684
+ "CSV",
11685
+ "KML",
11686
+ "OpenStreetMap",
11687
+ "WMS",
11688
+ "WebTiledLayer"
11689
+ ],
11690
+ "type": "string"
11691
+ },
11692
+ "url": {
11693
+ "description": "URL to the ArcGIS Server Image Service.",
11694
+ "type": "string"
11695
+ },
11696
+ "visibility": {
11697
+ "description": "Determines whether the layer is initially visible in the web map.",
11698
+ "type": "boolean"
11699
+ },
11700
+ "visibilityTimeExtent": {
11701
+ "description": "Represents time extent that will control when a layer should be visible based on webmap's current time. Visibility time extent only affects the layer visibility and will not filter the data.",
11702
+ "items": [
11703
+ {
11704
+ "type": "number"
11705
+ },
11706
+ {
11707
+ "type": "number"
11708
+ }
11709
+ ],
11710
+ "maxItems": 2,
11711
+ "minItems": 2,
11712
+ "type": "array"
11713
+ }
11714
+ },
11715
+ "required": [
11716
+ "layerType"
11717
+ ],
11718
+ "type": "object"
11719
+ },
11720
+ "esri.rest-api.PopupInfoJson.FieldInfoJson": {
11721
+ "additionalProperties": false,
11722
+ "description": "Defines how a field in the dataset participates (or does not participate) in a pop-up window.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/fieldInfo/} {@link https://developers.arcgis.com/web-scene-specification/objects/fieldInfo/}.",
11723
+ "properties": {
11724
+ "fieldName": {
11725
+ "description": "The field name as defined by the service.",
11726
+ "type": "string"
11727
+ },
11728
+ "format": {
11729
+ "$ref": "#/definitions/esri.rest-api.PopupInfoJson.FormatJson",
11730
+ "description": "A format object used with numerical or date fields to provide more detail about how the value should be displayed in a web map pop-up window."
11731
+ },
11732
+ "isEditable": {
11733
+ "description": "Determines whether users can edit this field.",
11734
+ "type": "boolean"
11735
+ },
11736
+ "label": {
11737
+ "description": "The field alias. This can be overridden by the web map author.",
11738
+ "type": "string"
11739
+ },
11740
+ "stringFieldOption": {
11741
+ "description": "The type of input box editors will see when editing the field. Applies only to string fields.",
11742
+ "enum": [
11743
+ "richtext",
11744
+ "textarea",
11745
+ "textbox"
11746
+ ],
11747
+ "type": "string"
11748
+ },
11749
+ "tooltip": {
11750
+ "description": "Provides an editing hint for editors of the field. This string could provide a short description of the field and how editors should format or supply its value.",
11751
+ "type": "string"
11752
+ },
10932
11753
  "visible": {
10933
11754
  "description": "Determines whether the field is visible in the pop-up window.",
10934
11755
  "type": "boolean"
@@ -11204,43 +12025,176 @@
11204
12025
  },
11205
12026
  "type": "object"
11206
12027
  },
11207
- "esri.rest-api.RendererJson.AuthoringInfoJson": {
12028
+ "esri.rest-api.RasterDataElevationLayerJson.RasterDataElevationLayerJson": {
11208
12029
  "additionalProperties": false,
11209
- "description": "The authoringInfo is an object containing metadata about the authoring process for creating a renderer object. This allows the authoring clients to save specific overridable settings so that next time it is accessed via the UI, their selections are remembered. Non-authoring clients should ignore it. In order to support the slider with color/size/transparency information, the selection of the various themes, classification, and additional properties are saved within this object.\n\nNote: The authoringInfo object is not required with a renderer. It is only used if rendering was generated using Map Viewer rendering tools.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/authoringInfo/} {@link https://developers.arcgis.com/web-scene-specification/objects/authoringInfo/}.",
12030
+ "description": "RasterDataElevationLayer is a single-band raster layer used for rendering elevation.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/rasterDataElevationLayer/}.",
11210
12031
  "properties": {
11211
- "classificationMethod": {
11212
- "$ref": "esri.rest-api.RendererJson.ClassificationMethodJsonType",
11213
- "description": "Used for classed color or size. The default value is esriClassifyManual."
12032
+ "blendMode": {
12033
+ "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.",
12034
+ "enum": [
12035
+ "average",
12036
+ "color",
12037
+ "color-burn",
12038
+ "color-dodge",
12039
+ "darken",
12040
+ "destination-atop",
12041
+ "destination-in",
12042
+ "destination-out",
12043
+ "destination-over",
12044
+ "difference",
12045
+ "exclusion",
12046
+ "hard-light",
12047
+ "hue",
12048
+ "invert",
12049
+ "lighten",
12050
+ "lighter",
12051
+ "luminosity",
12052
+ "minus",
12053
+ "multiply",
12054
+ "normal",
12055
+ "overlay",
12056
+ "plus",
12057
+ "reflect",
12058
+ "saturation",
12059
+ "screen",
12060
+ "soft-light",
12061
+ "source-atop",
12062
+ "source-in",
12063
+ "source-out",
12064
+ "vivid-light",
12065
+ "xor"
12066
+ ],
12067
+ "type": "string"
11214
12068
  },
11215
- "colorRamp": {
11216
- "$ref": "#/definitions/esri.rest-api.RendererJson.ColorRampJson",
11217
- "description": "A colorRamp object is used to specify a range of colors that are applied to a group of symbols."
12069
+ "effect": {
12070
+ "$ref": "#/definitions/EffectJson",
12071
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
11218
12072
  },
11219
- "field": {
11220
- "$ref": "#/definitions/esri.rest-api.FieldJson.FieldJson",
11221
- "description": "Contains information about an attribute field."
12073
+ "id": {
12074
+ "description": "A unique identifying string for the layer.",
12075
+ "type": "string"
11222
12076
  },
11223
- "fields": {
11224
- "description": "An array of string values representing field names used for creating predominance renderers.",
12077
+ "isReference": {
12078
+ "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).",
12079
+ "type": "boolean"
12080
+ },
12081
+ "layerType": {
12082
+ "const": "RasterDataElevationLayer",
12083
+ "description": "The type of layer.",
11225
12084
  "type": "string"
11226
12085
  },
11227
- "standardDeviationInterval": {
11228
- "description": "Use if the classificationMethod is esriClassifyStandardDeviation. Possible values: 0.25, 0.33, 0.5, 1.",
12086
+ "listMode": {
12087
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
12088
+ "enum": [
12089
+ "hide",
12090
+ "hide-children",
12091
+ "show"
12092
+ ],
12093
+ "type": "string"
12094
+ },
12095
+ "maxScale": {
12096
+ "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.",
11229
12097
  "type": "number"
11230
12098
  },
11231
- "type": {
11232
- "$ref": "AuthoringInfoJsonType",
11233
- "description": "In case of classed renderers this is set to either classedSize or classedColor."
12099
+ "minScale": {
12100
+ "description": "A number representing the minimum 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.",
12101
+ "type": "number"
11234
12102
  },
11235
- "visualVariables": {
11236
- "$ref": "#/definitions/VisualVariableJson",
11237
- "description": "An array of visualVariable objects used for continuous color or size, simple, and unique values with feature opacity."
11238
- }
11239
- },
11240
- "type": "object"
11241
- },
11242
- "esri.rest-api.RendererJson.ClassBreakInfoJson": {
11243
- "additionalProperties": false,
12103
+ "opacity": {
12104
+ "description": "The degree of transparency applied to the layer on the client side, where\n0 is full transparency and 1 is no transparency.",
12105
+ "type": "number"
12106
+ },
12107
+ "path": {
12108
+ "description": "For offline data, a path to an ArcGIS Runtime supported raster data file. A URI format is used, starting with file: followed by a file system path. A relative path must be from the file which defines the layer. For example `file:../data/raster_data/beijing.tif`.",
12109
+ "type": "string"
12110
+ },
12111
+ "refreshInterval": {
12112
+ "description": "When the refresh interval is set on a layer, the client must refresh that layer only, not the entire web map. The default value is '0', meaning the no refresh. You can enable a refresh interval on the following types of layers: ArcGIS Server web service, hosted feature layer, hosted tile layer, OGC WMS, OGS WMTS, tile layer, GeoRSS, Living Atlas layers, basemaps (including Bing Maps basemaps), CSV from the web with latitude and longitude fields, and KML when added to ArcGIS Online through the My Content page. See {@link https://doc.arcgis.com/en/arcgis-online/create-maps/set-refresh-interval.htm}.",
12113
+ "type": "number"
12114
+ },
12115
+ "showLegend": {
12116
+ "description": "Indicates whether to allow map authors the ability to control what layers should be shown in a client's legend.",
12117
+ "type": "boolean"
12118
+ },
12119
+ "title": {
12120
+ "description": "A user-friendly title for the layer that can be used in a table of contents. If this is not included, then a title is derived from the service.",
12121
+ "type": "string"
12122
+ },
12123
+ "type": {
12124
+ "description": "(Deprecated, use layerType instead.) If the layer is referenced through a URL, but is not an ArcGIS web service, then this parameter can be supplied to denote the layer type.",
12125
+ "enum": [
12126
+ "BingMapsAerial",
12127
+ "BingMapsHybrid",
12128
+ "BingMapsRoad",
12129
+ "CSV",
12130
+ "KML",
12131
+ "OpenStreetMap",
12132
+ "WMS",
12133
+ "WebTiledLayer"
12134
+ ],
12135
+ "type": "string"
12136
+ },
12137
+ "visibility": {
12138
+ "description": "Determines whether the layer is initially visible in the web map.",
12139
+ "type": "boolean"
12140
+ },
12141
+ "visibilityTimeExtent": {
12142
+ "description": "Represents time extent that will control when a layer should be visible based on webmap's current time. Visibility time extent only affects the layer visibility and will not filter the data.",
12143
+ "items": [
12144
+ {
12145
+ "type": "number"
12146
+ },
12147
+ {
12148
+ "type": "number"
12149
+ }
12150
+ ],
12151
+ "maxItems": 2,
12152
+ "minItems": 2,
12153
+ "type": "array"
12154
+ }
12155
+ },
12156
+ "required": [
12157
+ "layerType"
12158
+ ],
12159
+ "type": "object"
12160
+ },
12161
+ "esri.rest-api.RendererJson.AuthoringInfoJson": {
12162
+ "additionalProperties": false,
12163
+ "description": "The authoringInfo is an object containing metadata about the authoring process for creating a renderer object. This allows the authoring clients to save specific overridable settings so that next time it is accessed via the UI, their selections are remembered. Non-authoring clients should ignore it. In order to support the slider with color/size/transparency information, the selection of the various themes, classification, and additional properties are saved within this object.\n\nNote: The authoringInfo object is not required with a renderer. It is only used if rendering was generated using Map Viewer rendering tools.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/authoringInfo/} {@link https://developers.arcgis.com/web-scene-specification/objects/authoringInfo/}.",
12164
+ "properties": {
12165
+ "classificationMethod": {
12166
+ "$ref": "esri.rest-api.RendererJson.ClassificationMethodJsonType",
12167
+ "description": "Used for classed color or size. The default value is esriClassifyManual."
12168
+ },
12169
+ "colorRamp": {
12170
+ "$ref": "#/definitions/esri.rest-api.RendererJson.ColorRampJson",
12171
+ "description": "A colorRamp object is used to specify a range of colors that are applied to a group of symbols."
12172
+ },
12173
+ "field": {
12174
+ "$ref": "#/definitions/esri.rest-api.FieldJson.FieldJson",
12175
+ "description": "Contains information about an attribute field."
12176
+ },
12177
+ "fields": {
12178
+ "description": "An array of string values representing field names used for creating predominance renderers.",
12179
+ "type": "string"
12180
+ },
12181
+ "standardDeviationInterval": {
12182
+ "description": "Use if the classificationMethod is esriClassifyStandardDeviation. Possible values: 0.25, 0.33, 0.5, 1.",
12183
+ "type": "number"
12184
+ },
12185
+ "type": {
12186
+ "$ref": "AuthoringInfoJsonType",
12187
+ "description": "In case of classed renderers this is set to either classedSize or classedColor."
12188
+ },
12189
+ "visualVariables": {
12190
+ "$ref": "#/definitions/VisualVariableJson",
12191
+ "description": "An array of visualVariable objects used for continuous color or size, simple, and unique values with feature opacity."
12192
+ }
12193
+ },
12194
+ "type": "object"
12195
+ },
12196
+ "esri.rest-api.RendererJson.ClassBreakInfoJson": {
12197
+ "additionalProperties": false,
11244
12198
  "description": "The classBreaksInfo object provides information about the class breaks associated with the renderer.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/classBreakInfo/} {@link https://developers.arcgis.com/web-scene-specification/objects/classBreakInfo/}.",
11245
12199
  "properties": {
11246
12200
  "classMaxValue": {
@@ -14589,6 +15543,60 @@
14589
15543
  ],
14590
15544
  "type": "object"
14591
15545
  },
15546
+ "esri.rest-api.TableJson.TableJson": {
15547
+ "additionalProperties": false,
15548
+ "description": "Root element in the web map specifying an array of table objects.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/table/} {@link https://developers.arcgis.com/web-scene-specification/objects/table/}.",
15549
+ "properties": {
15550
+ "capabilities": {
15551
+ "description": "A comma-separated string listing which editing operations are allowed on an editable feature service. Available operations include: 'Create', 'Delete', 'Query', 'Update', and 'Editing'.",
15552
+ "enum": [
15553
+ "Create",
15554
+ "Delete",
15555
+ "Editing",
15556
+ "Query",
15557
+ "Update"
15558
+ ],
15559
+ "type": "string"
15560
+ },
15561
+ "definitionEditor": {
15562
+ "$ref": "#/definitions/esri.rest-api.DefinitionEditorJson.DefinitionEditorJson",
15563
+ "description": "Object indicating the definitionEditor used as a layer's interactive filter."
15564
+ },
15565
+ "formInfo": {
15566
+ "$ref": "#/definitions/esri.rest-api.FormInfoJson.FormInfoJson",
15567
+ "description": "A formInfo object defining the content of the form when you are editing a record."
15568
+ },
15569
+ "id": {
15570
+ "description": "Unique string identifier for the table.",
15571
+ "type": "string"
15572
+ },
15573
+ "itemId": {
15574
+ "description": "Unique string value indicating an item registered in ArcGIS Online or your organization's portal.",
15575
+ "type": "string"
15576
+ },
15577
+ "layerDefinition": {
15578
+ "$ref": "#/definitions/esri.rest-api.LayerDefinitionJson.LayerDefinitionJson",
15579
+ "description": "A layerDefinition object defining the attribute schema and drawing information for the layer. Used with CSV layers."
15580
+ },
15581
+ "popupInfo": {
15582
+ "$ref": "#/definitions/esri.rest-api.PopupInfoJson.PopupInfoJson",
15583
+ "description": "An object defining the content of popup windows when you query a record and the sort option for child related records."
15584
+ },
15585
+ "refreshInterval": {
15586
+ "description": "Refresh interval of the table in minutes. Non-zero value indicates automatic table refresh at the specified interval. Value of 0 indicates auto refresh is not enabled.",
15587
+ "type": "number"
15588
+ },
15589
+ "title": {
15590
+ "description": "String value for the title of the table.",
15591
+ "type": "string"
15592
+ },
15593
+ "url": {
15594
+ "description": "String value indicating the URL reference of the hosted table.",
15595
+ "type": "string"
15596
+ }
15597
+ },
15598
+ "type": "object"
15599
+ },
14592
15600
  "esri.rest-api.TemplateJson.TemplateJson": {
14593
15601
  "additionalProperties": false,
14594
15602
  "description": "Templates describe features that can be created in a layer. Templates are used with map notes, other feature collections, and editable web-based CSV layers. They are not used with ArcGIS feature services, which already have feature templates defined in the service.\n\nTemplates are defined as a property of the layer definition when there are no types defined; otherwise, templates are defined as properties of the types.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/template/} {@link https://developers.arcgis.com/web-scene-specification/objects/template/}.",
@@ -14627,9 +15635,9 @@
14627
15635
  },
14628
15636
  "type": "object"
14629
15637
  },
14630
- "esri.rest-api.TiledImageServiceLayerJson.TiledImageServiceLayerJson": {
15638
+ "esri.rest-api.TiledElevationServiceLayerJson.TiledElevationServiceLayerJson": {
14631
15639
  "additionalProperties": false,
14632
- "description": "An ArcGIS Tiled Image Service layer displays map content from an ArcGIS Server Image service that has been cached (tiled).\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/tiledImageServiceLayer/} {@link https://developers.arcgis.com/web-scene-specification/objects/tiledImageServiceLayer/}.",
15640
+ "description": "ElevationLayer is a tile layer used for rendering elevation in web scenes. A default world elevation layer can be added to the map by setting the map's ground property to world-elevation.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/elevationLayer/}.",
14633
15641
  "properties": {
14634
15642
  "blendMode": {
14635
15643
  "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.",
@@ -14668,9 +15676,6 @@
14668
15676
  ],
14669
15677
  "type": "string"
14670
15678
  },
14671
- "customParameters": {
14672
- "description": "A sequence of custom parameters appended to the URL of all requests related to supporting ArcGIS layer types."
14673
- },
14674
15679
  "effect": {
14675
15680
  "$ref": "#/definitions/EffectJson",
14676
15681
  "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
@@ -14683,12 +15688,12 @@
14683
15688
  "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).",
14684
15689
  "type": "boolean"
14685
15690
  },
14686
- "layerDefinition": {
14687
- "$ref": "#/definitions/esri.rest-api.LayerDefinitionJson.LayerDefinitionJson",
14688
- "description": "An object that defines the attribute schema and drawing information for a layer drawn using client-side graphics. See layerDefinition properties table."
15691
+ "itemId": {
15692
+ "description": "Optional string containing the item ID of the service if it's registered on ArcGIS Online or your organization's portal.",
15693
+ "type": "string"
14689
15694
  },
14690
15695
  "layerType": {
14691
- "const": "ArcGISTiledImageServiceLayer",
15696
+ "const": "ArcGISTiledElevationServiceLayer",
14692
15697
  "description": "The type of layer.",
14693
15698
  "type": "string"
14694
15699
  },
@@ -14713,6 +15718,10 @@
14713
15718
  "description": "The degree of transparency applied to the layer on the client side, where\n0 is full transparency and 1 is no transparency.",
14714
15719
  "type": "number"
14715
15720
  },
15721
+ "path": {
15722
+ "description": "For offline data, a path to an ArcGIS Runtime supported raster data file. A URI format is used, starting with file: followed by a file system path. A relative path must be from the file which defines the layer. For example `file:../data/raster_data/beijing.tif`.",
15723
+ "type": "string"
15724
+ },
14716
15725
  "refreshInterval": {
14717
15726
  "description": "When the refresh interval is set on a layer, the client must refresh that layer only, not the entire web map. The default value is '0', meaning the no refresh. You can enable a refresh interval on the following types of layers: ArcGIS Server web service, hosted feature layer, hosted tile layer, OGC WMS, OGS WMTS, tile layer, GeoRSS, Living Atlas layers, basemaps (including Bing Maps basemaps), CSV from the web with latitude and longitude fields, and KML when added to ArcGIS Online through the My Content page. See {@link https://doc.arcgis.com/en/arcgis-online/create-maps/set-refresh-interval.htm}.",
14718
15727
  "type": "number"
@@ -14740,7 +15749,7 @@
14740
15749
  "type": "string"
14741
15750
  },
14742
15751
  "url": {
14743
- "description": "URL to the ArcGIS Server Image Service.",
15752
+ "description": "The URL to the layer.If the layer is not from a web service but rather a feature collection, then the url property is omitted.",
14744
15753
  "type": "string"
14745
15754
  },
14746
15755
  "visibility": {
@@ -14767,9 +15776,9 @@
14767
15776
  ],
14768
15777
  "type": "object"
14769
15778
  },
14770
- "esri.rest-api.TiledMapServiceLayerJson.TiledMapServiceLayerJson": {
15779
+ "esri.rest-api.TiledImageServiceLayerJson.TiledImageServiceLayerJson": {
14771
15780
  "additionalProperties": false,
14772
- "description": "An ArcGIS Tiled Map Service layer displays map content from an ArcGIS Server Map service that has been cached (tiled).\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/tiledMapServiceLayer/} {@link https://developers.arcgis.com/web-scene-specification/objects/tiledMapServiceLayer/}.",
15781
+ "description": "An ArcGIS Tiled Image Service layer displays map content from an ArcGIS Server Image service that has been cached (tiled).\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/tiledImageServiceLayer/} {@link https://developers.arcgis.com/web-scene-specification/objects/tiledImageServiceLayer/}.",
14773
15782
  "properties": {
14774
15783
  "blendMode": {
14775
15784
  "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.",
@@ -14811,21 +15820,10 @@
14811
15820
  "customParameters": {
14812
15821
  "description": "A sequence of custom parameters appended to the URL of all requests related to supporting ArcGIS layer types."
14813
15822
  },
14814
- "displayLevels": {
14815
- "description": "NOTE: Applicable if used as a baseMapLayer. Integer value(s) indicating the display levels of the basemap layer. Only applicable for TiledMapService layers. All tiled map service layers should share the same tiling scheme. This property cannot be set via the Map Viewer UI.",
14816
- "items": {
14817
- "type": "number"
14818
- },
14819
- "type": "array"
14820
- },
14821
15823
  "effect": {
14822
15824
  "$ref": "#/definitions/EffectJson",
14823
15825
  "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
14824
15826
  },
14825
- "exclusionAreas": {
14826
- "$ref": "__type",
14827
- "description": "Exclusion areas define extent areas where no data will be fetched for a layer. NOTE: Applicable if used as a baseMapLayer. An array of exclusionArea objects defining the layer exclusions. See {@link https://developers.arcgis.com/web-map-specification/objects/exclusionArea/}."
14828
- },
14829
15827
  "id": {
14830
15828
  "description": "A unique identifying string for the layer.",
14831
15829
  "type": "string"
@@ -14834,22 +15832,15 @@
14834
15832
  "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).",
14835
15833
  "type": "boolean"
14836
15834
  },
14837
- "itemId": {
14838
- "description": "Optional string containing the item ID of the service if it's registered on ArcGIS Online or your organization's portal.",
14839
- "type": "string"
15835
+ "layerDefinition": {
15836
+ "$ref": "#/definitions/esri.rest-api.LayerDefinitionJson.LayerDefinitionJson",
15837
+ "description": "An object that defines the attribute schema and drawing information for a layer drawn using client-side graphics. See layerDefinition properties table."
14840
15838
  },
14841
15839
  "layerType": {
14842
- "const": "ArcGISTiledMapServiceLayer",
15840
+ "const": "ArcGISTiledImageServiceLayer",
14843
15841
  "description": "The type of layer.",
14844
15842
  "type": "string"
14845
15843
  },
14846
- "layers": {
14847
- "description": "An array of layer objects defining the styling, geometry, and attribute information for the features.",
14848
- "items": {
14849
- "$ref": "#/definitions/esri.rest-api.SublayerJson.SublayerJson"
14850
- },
14851
- "type": "array"
14852
- },
14853
15844
  "listMode": {
14854
15845
  "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
14855
15846
  "enum": [
@@ -14871,10 +15862,6 @@
14871
15862
  "description": "The degree of transparency applied to the layer on the client side, where\n0 is full transparency and 1 is no transparency.",
14872
15863
  "type": "number"
14873
15864
  },
14874
- "path": {
14875
- "description": "The path to the supporting offline layer. Mobile only. Only valid in MMAP JSON.",
14876
- "type": "string"
14877
- },
14878
15865
  "refreshInterval": {
14879
15866
  "description": "When the refresh interval is set on a layer, the client must refresh that layer only, not the entire web map. The default value is '0', meaning the no refresh. You can enable a refresh interval on the following types of layers: ArcGIS Server web service, hosted feature layer, hosted tile layer, OGC WMS, OGS WMTS, tile layer, GeoRSS, Living Atlas layers, basemaps (including Bing Maps basemaps), CSV from the web with latitude and longitude fields, and KML when added to ArcGIS Online through the My Content page. See {@link https://doc.arcgis.com/en/arcgis-online/create-maps/set-refresh-interval.htm}.",
14880
15867
  "type": "number"
@@ -14902,7 +15889,7 @@
14902
15889
  "type": "string"
14903
15890
  },
14904
15891
  "url": {
14905
- "description": "URL to the ArcGIS Server tiled Map Service.",
15892
+ "description": "URL to the ArcGIS Server Image Service.",
14906
15893
  "type": "string"
14907
15894
  },
14908
15895
  "visibility": {
@@ -14929,37 +15916,9 @@
14929
15916
  ],
14930
15917
  "type": "object"
14931
15918
  },
14932
- "esri.rest-api.TypeJson.TypeJson": {
14933
- "additionalProperties": false,
14934
- "description": "Types contain information about the combinations of attributes allowed for features in the dataset. Each feature in the dataset can have a type, indicated in its typeIdField, which is used in LayerDefinition.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/type/} {@link https://developers.arcgis.com/web-scene-specification/objects/type/}.",
14935
- "properties": {
14936
- "domains": {
14937
- "description": "A set of domain objects for each domain in the type."
14938
- },
14939
- "id": {
14940
- "description": "A unique numerical ID for the type.",
14941
- "type": [
14942
- "string",
14943
- "number"
14944
- ]
14945
- },
14946
- "name": {
14947
- "description": "A string containing a user-friendly name for the type. This might be shown on a menu of feature types that editors can create in the collection.",
14948
- "type": "string"
14949
- },
14950
- "templates": {
14951
- "description": "An array of template objects describing features that can be created in this layer. Templates are used with map notes, other feature collections, and editable web-based CSV layers. They are not used with ArcGIS feature services, which already have feature templates defined in the service.\n\nTemplates are defined as a property of the layer definition when there are no types defined; otherwise, templates are defined as properties of the types.\n\nYou might have more than one template per type if the attributes of available features vary slightly. For example, you might have a type named Copper pipe containing two templates: one whose DIAMETER property is 12 and another whose DIAMETER property is 10.",
14952
- "items": {
14953
- "$ref": "#/definitions/esri.rest-api.TemplateJson.TemplateJson"
14954
- },
14955
- "type": "array"
14956
- }
14957
- },
14958
- "type": "object"
14959
- },
14960
- "esri.rest-api.VectorTileLayerJson.VectorTileLayerJson": {
15919
+ "esri.rest-api.TiledMapServiceLayerJson.TiledMapServiceLayerJson": {
14961
15920
  "additionalProperties": false,
14962
- "description": "A vector tile layer references a set of web-accessible vector tiles and the corresponding style for how those tiles should be drawn.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/vectorTileLayer/} {@link https://developers.arcgis.com/web-scene-specification/objects/vectorTileLayer/}.",
15921
+ "description": "An ArcGIS Tiled Map Service layer displays map content from an ArcGIS Server Map service that has been cached (tiled).\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/tiledMapServiceLayer/} {@link https://developers.arcgis.com/web-scene-specification/objects/tiledMapServiceLayer/}.",
14963
15922
  "properties": {
14964
15923
  "blendMode": {
14965
15924
  "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.",
@@ -15001,10 +15960,21 @@
15001
15960
  "customParameters": {
15002
15961
  "description": "A sequence of custom parameters appended to the URL of all requests related to supporting ArcGIS layer types."
15003
15962
  },
15963
+ "displayLevels": {
15964
+ "description": "NOTE: Applicable if used as a baseMapLayer. Integer value(s) indicating the display levels of the basemap layer. Only applicable for TiledMapService layers. All tiled map service layers should share the same tiling scheme. This property cannot be set via the Map Viewer UI.",
15965
+ "items": {
15966
+ "type": "number"
15967
+ },
15968
+ "type": "array"
15969
+ },
15004
15970
  "effect": {
15005
15971
  "$ref": "#/definitions/EffectJson",
15006
15972
  "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
15007
15973
  },
15974
+ "exclusionAreas": {
15975
+ "$ref": "__type",
15976
+ "description": "Exclusion areas define extent areas where no data will be fetched for a layer. NOTE: Applicable if used as a baseMapLayer. An array of exclusionArea objects defining the layer exclusions. See {@link https://developers.arcgis.com/web-map-specification/objects/exclusionArea/}."
15977
+ },
15008
15978
  "id": {
15009
15979
  "description": "A unique identifying string for the layer.",
15010
15980
  "type": "string"
@@ -15018,10 +15988,17 @@
15018
15988
  "type": "string"
15019
15989
  },
15020
15990
  "layerType": {
15021
- "const": "VectorTileLayer",
15991
+ "const": "ArcGISTiledMapServiceLayer",
15022
15992
  "description": "The type of layer.",
15023
15993
  "type": "string"
15024
15994
  },
15995
+ "layers": {
15996
+ "description": "An array of layer objects defining the styling, geometry, and attribute information for the features.",
15997
+ "items": {
15998
+ "$ref": "#/definitions/esri.rest-api.SublayerJson.SublayerJson"
15999
+ },
16000
+ "type": "array"
16001
+ },
15025
16002
  "listMode": {
15026
16003
  "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
15027
16004
  "enum": [
@@ -15055,10 +16032,6 @@
15055
16032
  "description": "Indicates whether to allow map authors the ability to control what layers should be shown in a client's legend.",
15056
16033
  "type": "boolean"
15057
16034
  },
15058
- "styleUrl": {
15059
- "description": "A url to a JSON file containing the stylesheet information used to render the layer. You may also pass an object containing the stylesheet information identical to the JSON file.",
15060
- "type": "string"
15061
- },
15062
16035
  "title": {
15063
16036
  "description": "A user-friendly title for the layer that can be used in a table of contents. If this is not included, then a title is derived from the service.",
15064
16037
  "type": "string"
@@ -15077,6 +16050,10 @@
15077
16050
  ],
15078
16051
  "type": "string"
15079
16052
  },
16053
+ "url": {
16054
+ "description": "URL to the ArcGIS Server tiled Map Service.",
16055
+ "type": "string"
16056
+ },
15080
16057
  "visibility": {
15081
16058
  "description": "Determines whether the layer is initially visible in the web map.",
15082
16059
  "type": "boolean"
@@ -15101,17 +16078,189 @@
15101
16078
  ],
15102
16079
  "type": "object"
15103
16080
  },
15104
- "esri.rest-api.ViewpointJson.CameraJson": {
16081
+ "esri.rest-api.TypeJson.TypeJson": {
15105
16082
  "additionalProperties": false,
15106
- "description": "The camera defines the position, tilt, and heading of the point from which the SceneView's visible extent is observed.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/camera/}.",
16083
+ "description": "Types contain information about the combinations of attributes allowed for features in the dataset. Each feature in the dataset can have a type, indicated in its typeIdField, which is used in LayerDefinition.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/type/} {@link https://developers.arcgis.com/web-scene-specification/objects/type/}.",
15107
16084
  "properties": {
15108
- "heading": {
15109
- "description": "The heading of the camera in degrees. Heading is zero when north is the top of the screen. It increases as the view rotates clockwise. The angles are always normalized between 0 and 360 degrees.",
15110
- "type": "number"
16085
+ "domains": {
16086
+ "description": "A set of domain objects for each domain in the type."
15111
16087
  },
15112
- "position": {
15113
- "$ref": "#/definitions/esri.rest-api.GeometryJson.PointJson",
15114
- "description": "The position of the camera defined by a map point."
16088
+ "id": {
16089
+ "description": "A unique numerical ID for the type.",
16090
+ "type": [
16091
+ "string",
16092
+ "number"
16093
+ ]
16094
+ },
16095
+ "name": {
16096
+ "description": "A string containing a user-friendly name for the type. This might be shown on a menu of feature types that editors can create in the collection.",
16097
+ "type": "string"
16098
+ },
16099
+ "templates": {
16100
+ "description": "An array of template objects describing features that can be created in this layer. Templates are used with map notes, other feature collections, and editable web-based CSV layers. They are not used with ArcGIS feature services, which already have feature templates defined in the service.\n\nTemplates are defined as a property of the layer definition when there are no types defined; otherwise, templates are defined as properties of the types.\n\nYou might have more than one template per type if the attributes of available features vary slightly. For example, you might have a type named Copper pipe containing two templates: one whose DIAMETER property is 12 and another whose DIAMETER property is 10.",
16101
+ "items": {
16102
+ "$ref": "#/definitions/esri.rest-api.TemplateJson.TemplateJson"
16103
+ },
16104
+ "type": "array"
16105
+ }
16106
+ },
16107
+ "type": "object"
16108
+ },
16109
+ "esri.rest-api.VectorTileLayerJson.VectorTileLayerJson": {
16110
+ "additionalProperties": false,
16111
+ "description": "A vector tile layer references a set of web-accessible vector tiles and the corresponding style for how those tiles should be drawn.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/vectorTileLayer/} {@link https://developers.arcgis.com/web-scene-specification/objects/vectorTileLayer/}.",
16112
+ "properties": {
16113
+ "blendMode": {
16114
+ "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.",
16115
+ "enum": [
16116
+ "average",
16117
+ "color",
16118
+ "color-burn",
16119
+ "color-dodge",
16120
+ "darken",
16121
+ "destination-atop",
16122
+ "destination-in",
16123
+ "destination-out",
16124
+ "destination-over",
16125
+ "difference",
16126
+ "exclusion",
16127
+ "hard-light",
16128
+ "hue",
16129
+ "invert",
16130
+ "lighten",
16131
+ "lighter",
16132
+ "luminosity",
16133
+ "minus",
16134
+ "multiply",
16135
+ "normal",
16136
+ "overlay",
16137
+ "plus",
16138
+ "reflect",
16139
+ "saturation",
16140
+ "screen",
16141
+ "soft-light",
16142
+ "source-atop",
16143
+ "source-in",
16144
+ "source-out",
16145
+ "vivid-light",
16146
+ "xor"
16147
+ ],
16148
+ "type": "string"
16149
+ },
16150
+ "customParameters": {
16151
+ "description": "A sequence of custom parameters appended to the URL of all requests related to supporting ArcGIS layer types."
16152
+ },
16153
+ "effect": {
16154
+ "$ref": "#/definitions/EffectJson",
16155
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
16156
+ },
16157
+ "id": {
16158
+ "description": "A unique identifying string for the layer.",
16159
+ "type": "string"
16160
+ },
16161
+ "isReference": {
16162
+ "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).",
16163
+ "type": "boolean"
16164
+ },
16165
+ "itemId": {
16166
+ "description": "Optional string containing the item ID of the service if it's registered on ArcGIS Online or your organization's portal.",
16167
+ "type": "string"
16168
+ },
16169
+ "layerType": {
16170
+ "const": "VectorTileLayer",
16171
+ "description": "The type of layer.",
16172
+ "type": "string"
16173
+ },
16174
+ "listMode": {
16175
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
16176
+ "enum": [
16177
+ "hide",
16178
+ "hide-children",
16179
+ "show"
16180
+ ],
16181
+ "type": "string"
16182
+ },
16183
+ "maxScale": {
16184
+ "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.",
16185
+ "type": "number"
16186
+ },
16187
+ "minScale": {
16188
+ "description": "A number representing the minimum 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.",
16189
+ "type": "number"
16190
+ },
16191
+ "opacity": {
16192
+ "description": "The degree of transparency applied to the layer on the client side, where\n0 is full transparency and 1 is no transparency.",
16193
+ "type": "number"
16194
+ },
16195
+ "path": {
16196
+ "description": "The path to the supporting offline layer. Mobile only. Only valid in MMAP JSON.",
16197
+ "type": "string"
16198
+ },
16199
+ "refreshInterval": {
16200
+ "description": "When the refresh interval is set on a layer, the client must refresh that layer only, not the entire web map. The default value is '0', meaning the no refresh. You can enable a refresh interval on the following types of layers: ArcGIS Server web service, hosted feature layer, hosted tile layer, OGC WMS, OGS WMTS, tile layer, GeoRSS, Living Atlas layers, basemaps (including Bing Maps basemaps), CSV from the web with latitude and longitude fields, and KML when added to ArcGIS Online through the My Content page. See {@link https://doc.arcgis.com/en/arcgis-online/create-maps/set-refresh-interval.htm}.",
16201
+ "type": "number"
16202
+ },
16203
+ "showLegend": {
16204
+ "description": "Indicates whether to allow map authors the ability to control what layers should be shown in a client's legend.",
16205
+ "type": "boolean"
16206
+ },
16207
+ "styleUrl": {
16208
+ "description": "A url to a JSON file containing the stylesheet information used to render the layer. You may also pass an object containing the stylesheet information identical to the JSON file.",
16209
+ "type": "string"
16210
+ },
16211
+ "title": {
16212
+ "description": "A user-friendly title for the layer that can be used in a table of contents. If this is not included, then a title is derived from the service.",
16213
+ "type": "string"
16214
+ },
16215
+ "type": {
16216
+ "description": "(Deprecated, use layerType instead.) If the layer is referenced through a URL, but is not an ArcGIS web service, then this parameter can be supplied to denote the layer type.",
16217
+ "enum": [
16218
+ "BingMapsAerial",
16219
+ "BingMapsHybrid",
16220
+ "BingMapsRoad",
16221
+ "CSV",
16222
+ "KML",
16223
+ "OpenStreetMap",
16224
+ "WMS",
16225
+ "WebTiledLayer"
16226
+ ],
16227
+ "type": "string"
16228
+ },
16229
+ "visibility": {
16230
+ "description": "Determines whether the layer is initially visible in the web map.",
16231
+ "type": "boolean"
16232
+ },
16233
+ "visibilityTimeExtent": {
16234
+ "description": "Represents time extent that will control when a layer should be visible based on webmap's current time. Visibility time extent only affects the layer visibility and will not filter the data.",
16235
+ "items": [
16236
+ {
16237
+ "type": "number"
16238
+ },
16239
+ {
16240
+ "type": "number"
16241
+ }
16242
+ ],
16243
+ "maxItems": 2,
16244
+ "minItems": 2,
16245
+ "type": "array"
16246
+ }
16247
+ },
16248
+ "required": [
16249
+ "layerType"
16250
+ ],
16251
+ "type": "object"
16252
+ },
16253
+ "esri.rest-api.ViewpointJson.CameraJson": {
16254
+ "additionalProperties": false,
16255
+ "description": "The camera defines the position, tilt, and heading of the point from which the SceneView's visible extent is observed.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/camera/}.",
16256
+ "properties": {
16257
+ "heading": {
16258
+ "description": "The heading of the camera in degrees. Heading is zero when north is the top of the screen. It increases as the view rotates clockwise. The angles are always normalized between 0 and 360 degrees.",
16259
+ "type": "number"
16260
+ },
16261
+ "position": {
16262
+ "$ref": "#/definitions/esri.rest-api.GeometryJson.PointJson",
16263
+ "description": "The position of the camera defined by a map point."
15115
16264
  },
15116
16265
  "tilt": {
15117
16266
  "description": "The tilt of the camera in degrees with respect to the surface as projected down from the camera position. Tilt is zero when looking straight down at the surface and 90 degrees when the camera is looking parallel to the surface.",
@@ -15589,6 +16738,664 @@
15589
16738
  },
15590
16739
  "type": "object"
15591
16740
  },
16741
+ "esri.rest-api.WebMapJson.ApplicationPropertiesJson": {
16742
+ "additionalProperties": false,
16743
+ "description": "The applicationProperties object is one of the objects at the top level of the JSON web map JSON schema. This is responsible for containing the viewing and editing properties of the web map. There are specific objects within this object that are applicable only to Collector and are explained within the property descriptions.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/applicationProperties/}.",
16744
+ "properties": {
16745
+ "editing": {
16746
+ "$ref": "__type",
16747
+ "description": "If locationTracking is set and enabled, the Collector application will update the feature service at the defined interval with the current location of the user logged into the Collector app. See {@link https://developers.arcgis.com/web-map-specification/objects/editing/}."
16748
+ },
16749
+ "offline": {
16750
+ "$ref": "__type",
16751
+ "description": "Use if working with offline maps. See {@link https://developers.arcgis.com/web-map-specification/objects/offline/}."
16752
+ },
16753
+ "viewing": {
16754
+ "$ref": "__type",
16755
+ "description": "An object containing all the viewing properties of the web map. If this is null or not defined, the client should assume a logical default. See {@link https://developers.arcgis.com/web-map-specification/objects/viewing/}."
16756
+ }
16757
+ },
16758
+ "type": "object"
16759
+ },
16760
+ "esri.rest-api.WebMapJson.BookmarkJson": {
16761
+ "additionalProperties": false,
16762
+ "description": "Predefined bookmarks for use by the application. A bookmark is a saved map extent that allows end users to quickly navigate to a particular area of interest.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/bookmark/}.",
16763
+ "properties": {
16764
+ "extent": {
16765
+ "$ref": "#/definitions/esri.rest-api.GeometryJson.ExtentJson"
16766
+ },
16767
+ "name": {
16768
+ "description": "A string name for the bookmark.",
16769
+ "type": "string"
16770
+ },
16771
+ "thumbnail": {
16772
+ "$ref": "__type",
16773
+ "description": "Object containing a thumbnail image."
16774
+ },
16775
+ "viewpoint": {
16776
+ "$ref": "#/definitions/esri.rest-api.ViewpointJson.ViewpointJson",
16777
+ "description": "Represents the location displayed on the map. If viewpoint is defined, ignore the extent. If viewpoint is not defined, use the extent property. For backwards compatibility, please save both extent and viewpoint properties."
16778
+ }
16779
+ },
16780
+ "required": [
16781
+ "name"
16782
+ ],
16783
+ "type": "object"
16784
+ },
16785
+ "esri.rest-api.WebMapJson.FacilityLayerInfoJson": {
16786
+ "additionalProperties": false,
16787
+ "description": "Defines the layer and field properties for the Facility layer used for floor filtering. See {@link https://developers.arcgis.com/web-map-specification/objects/facilityLayerInfo/}.",
16788
+ "properties": {
16789
+ "facilityIdField": {
16790
+ "description": "The name of the attribute field that contains a facility feature's unique identifier.",
16791
+ "type": "string"
16792
+ },
16793
+ "layerId": {
16794
+ "description": "A layer ID that refers to an operational layer in the map. The layer provides access to Facility features to use for floor filtering.",
16795
+ "type": "string"
16796
+ },
16797
+ "nameField": {
16798
+ "description": "The name of the attribute field that contains a facility feature's name.",
16799
+ "type": "string"
16800
+ },
16801
+ "siteIdField": {
16802
+ "description": "The name of the attribute field that contains a facility feature's site identifier (a foreign key to the Site layer).",
16803
+ "type": "string"
16804
+ }
16805
+ },
16806
+ "type": "object"
16807
+ },
16808
+ "esri.rest-api.WebMapJson.FloorFilterJson": {
16809
+ "additionalProperties": false,
16810
+ "description": "Configurable properties used by the floor filter widget. See {@link https://developers.arcgis.com/web-map-specification/objects/floorFilter/}.",
16811
+ "properties": {
16812
+ "enabled": {
16813
+ "description": "Indicates whether the floor filter is actively filtering the displayed content according to the floor filter selection.",
16814
+ "type": "boolean"
16815
+ },
16816
+ "facility": {
16817
+ "description": "Contains a facility identifier for the initially selected facility in the floor filter.",
16818
+ "type": "string"
16819
+ },
16820
+ "level": {
16821
+ "description": "Contains a level identifier for the initially selected floor, which is used when filtering floor-aware layers.",
16822
+ "type": "string"
16823
+ },
16824
+ "longNames": {
16825
+ "description": "Indicates whether the floor filter is showing long names instead of short names for floor levels.",
16826
+ "type": "boolean"
16827
+ },
16828
+ "minimized": {
16829
+ "description": "Indicates whether the floor filter has been minimized to show only the levels list instead of showing the full set of breadcrumbs.",
16830
+ "type": "boolean"
16831
+ },
16832
+ "pinnedLevels": {
16833
+ "description": "Indicates whether the floor filter has been pinned to show the floor levels list, instead of including the levels as a breadcrumb dropdown.",
16834
+ "type": "boolean"
16835
+ },
16836
+ "siteIdentifier": {
16837
+ "description": "Contains a site identifier for the initially selected site in the floor filter.",
16838
+ "type": "string"
16839
+ }
16840
+ },
16841
+ "type": "object"
16842
+ },
16843
+ "esri.rest-api.WebMapJson.InitialStateJson": {
16844
+ "additionalProperties": false,
16845
+ "description": "Defines the initial state when opening web scene.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/initialState/}.",
16846
+ "properties": {
16847
+ "environment": {
16848
+ "$ref": "#/definitions/esri.rest-api.EnvironmentJson.EnvironmentJson",
16849
+ "description": "The initial environment settings of the WebScene."
16850
+ },
16851
+ "viewpoint": {
16852
+ "$ref": "#/definitions/esri.rest-api.ViewpointJson.ViewpointJson",
16853
+ "description": "Describes a point of view for a 2D or 3D view. In a 3D view, it is determined using a camera position."
16854
+ }
16855
+ },
16856
+ "required": [
16857
+ "viewpoint"
16858
+ ],
16859
+ "type": "object"
16860
+ },
16861
+ "esri.rest-api.WebMapJson.LevelLayerInfoJson": {
16862
+ "additionalProperties": false,
16863
+ "description": "Defines the layer and field properties for the Level layer used for floor filtering. See {@link https://developers.arcgis.com/web-map-specification/objects/levelLayerInfo/}.",
16864
+ "properties": {
16865
+ "facilityIdField": {
16866
+ "description": "The name of the attribute field that contains a level feature's facility identifier (a foreign key to the Facility layer).",
16867
+ "type": "string"
16868
+ },
16869
+ "layerId": {
16870
+ "description": "A layer ID that refers to an operational layer in the map. The layer provides access to Level features to use for floor filtering.",
16871
+ "type": "string"
16872
+ },
16873
+ "levelIdField": {
16874
+ "description": "The name of the attribute field that contains a level feature's unique identifier.",
16875
+ "type": "string"
16876
+ },
16877
+ "levelNumberField": {
16878
+ "description": "The name of the attribute field that contains a level feature's level number specific to its facility.",
16879
+ "type": "string"
16880
+ },
16881
+ "longNameField": {
16882
+ "description": "The name of the attribute field that contains a level feature's long name.",
16883
+ "type": "string"
16884
+ },
16885
+ "shortNameField": {
16886
+ "description": "The name of the attribute field that contains a level feature's short name.",
16887
+ "type": "string"
16888
+ },
16889
+ "verticalOrderField": {
16890
+ "description": "The name of the attribute field that contains a level feature's vertical order. The vertical order defines the order of display in the floor filter widget, and it also references the floor levels of an Indoor Positioning System.",
16891
+ "type": "string"
16892
+ }
16893
+ },
16894
+ "type": "object"
16895
+ },
16896
+ "esri.rest-api.WebMapJson.MapFloorInfoJson": {
16897
+ "additionalProperties": false,
16898
+ "description": "Contains floor-awareness information for the map. Defines the layers and required fields for each layer that are used for floor filtering. See {@link https://developers.arcgis.com/web-map-specification/objects/mapFloorInfo/}.",
16899
+ "properties": {
16900
+ "facilityLayer": {
16901
+ "$ref": "#/definitions/esri.rest-api.WebMapJson.FacilityLayerInfoJson",
16902
+ "description": "Defines the layer and field properties for the Facility layer used for floor filtering."
16903
+ },
16904
+ "levelLayer": {
16905
+ "$ref": "#/definitions/esri.rest-api.WebMapJson.LevelLayerInfoJson",
16906
+ "description": "Defines the layer and field properties for the Level layer used for floor filtering."
16907
+ },
16908
+ "siteLayer": {
16909
+ "$ref": "#/definitions/esri.rest-api.WebMapJson.SiteLayerInfoJson",
16910
+ "description": "Defines the layer and field properties for the Site layer used for floor filtering. This property is optional."
16911
+ }
16912
+ },
16913
+ "type": "object"
16914
+ },
16915
+ "esri.rest-api.WebMapJson.MapRangeInfoJson": {
16916
+ "additionalProperties": false,
16917
+ "description": "Map Range Information.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/mapRangeInfo/}.",
16918
+ "properties": {
16919
+ "activeRangeName": {
16920
+ "description": "Active range ID that slider/picker acts upon.",
16921
+ "type": "string"
16922
+ },
16923
+ "currentRangeExtent": {
16924
+ "description": "Current range for the active range.",
16925
+ "items": [
16926
+ {
16927
+ "type": "number"
16928
+ },
16929
+ {
16930
+ "type": "number"
16931
+ }
16932
+ ],
16933
+ "maxItems": 2,
16934
+ "minItems": 2,
16935
+ "type": "array"
16936
+ },
16937
+ "fullRangeExtent": {
16938
+ "description": "Full range extent for the active range to be presented in the UI.",
16939
+ "items": [
16940
+ {
16941
+ "type": "number"
16942
+ },
16943
+ {
16944
+ "type": "number"
16945
+ }
16946
+ ],
16947
+ "maxItems": 2,
16948
+ "minItems": 2,
16949
+ "type": "array"
16950
+ }
16951
+ },
16952
+ "type": "object"
16953
+ },
16954
+ "esri.rest-api.WebMapJson.PresentationJson": {
16955
+ "additionalProperties": false,
16956
+ "description": "A presentation consists of multiple slides, where each slide is a specific view into the web scene.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/presentation/} {@link https://developers.arcgis.com/web-scene-specification/objects/presentation/}.",
16957
+ "properties": {
16958
+ "displayTimeSlider": {
16959
+ "description": "Indicates whether to display the time slider (if accessible). [WebMap only].",
16960
+ "type": "boolean"
16961
+ },
16962
+ "showLegend": {
16963
+ "description": "Indicates whether to display a legend on all slides. [WebMap only].",
16964
+ "type": "boolean"
16965
+ },
16966
+ "slideAdvancementInterval": {
16967
+ "description": "Number of seconds to show slide before proceeding to the next slide. [WebMap only].",
16968
+ "type": "number"
16969
+ },
16970
+ "slides": {
16971
+ "description": "An array of slides that bookmark viewpoints, visible layers, and other settings previously defined in a WebScene.",
16972
+ "items": {
16973
+ "$ref": "#/definitions/esri.rest-api.WebMapJson.SlideJson"
16974
+ },
16975
+ "type": "array"
16976
+ },
16977
+ "useTimeExtentOfSlide": {
16978
+ "description": "Indicates whether to use the time extent (if applicable) of a slide. [WebMap only].",
16979
+ "type": "boolean"
16980
+ }
16981
+ },
16982
+ "type": "object"
16983
+ },
16984
+ "esri.rest-api.WebMapJson.RangeJson": {
16985
+ "additionalProperties": false,
16986
+ "description": "Range object.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/range/} {@link https://developers.arcgis.com/web-scene-specification/objects/range/}.",
16987
+ "properties": {
16988
+ "interactionMode": {
16989
+ "description": "Indicates the mode in which the active range should be presented to the user. Must be one of the following values: slider, picker.",
16990
+ "type": "string"
16991
+ },
16992
+ "numberOfStops": {
16993
+ "description": "This is used to generate the activeRangeValues if activeRangeValues are not specified.",
16994
+ "type": "number"
16995
+ },
16996
+ "stopInterval": {
16997
+ "description": "Interval in which stops should be generated.",
16998
+ "type": "number"
16999
+ }
17000
+ },
17001
+ "type": "object"
17002
+ },
17003
+ "esri.rest-api.WebMapJson.SiteLayerInfoJson": {
17004
+ "additionalProperties": false,
17005
+ "description": "Defines the layer and field properties for the Site layer used for floor filtering. This property is optional. See {@link https://developers.arcgis.com/web-map-specification/objects/siteLayerInfo/}.",
17006
+ "properties": {
17007
+ "layerId": {
17008
+ "description": "A layer ID that refers to an operational layer in the map. The layer provides access to Site features to use for floor filtering.",
17009
+ "type": "string"
17010
+ },
17011
+ "nameField": {
17012
+ "description": "The name of the attribute field that contains a site feature's name.",
17013
+ "type": "string"
17014
+ },
17015
+ "siteIdField": {
17016
+ "description": "The name of the attribute field that contains a site feature's unique identifier.",
17017
+ "type": "string"
17018
+ }
17019
+ },
17020
+ "type": "object"
17021
+ },
17022
+ "esri.rest-api.WebMapJson.SlideJson": {
17023
+ "additionalProperties": false,
17024
+ "description": "A slide stores a snapshot of several pre-set properties of the WebScene, such as the basemap, viewpoint and visible layers.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/slide/} {@link https://developers.arcgis.com/web-scene-specification/objects/slide/}.",
17025
+ "properties": {
17026
+ "baseMap": {
17027
+ "anyOf": [
17028
+ {
17029
+ "$ref": "#/definitions/esri.rest-api.BasemapJson.BasemapJson"
17030
+ },
17031
+ {
17032
+ "type": "string"
17033
+ }
17034
+ ],
17035
+ "description": "The basemap of the scene. Only the base and reference layers of the basemap are stored in a slide. This value can be an instance of Basemap or one of the strings listed in the table below. Same as baseMap, but with no elevationLayers property."
17036
+ },
17037
+ "description": {
17038
+ "$ref": "__type",
17039
+ "description": "Text description of the individual presentation slide."
17040
+ },
17041
+ "environment": {
17042
+ "$ref": "#/definitions/esri.rest-api.EnvironmentJson.EnvironmentJson",
17043
+ "description": "Represents settings that affect the environment in which the WebScene is displayed (such as lighting)."
17044
+ },
17045
+ "extent": {
17046
+ "$ref": "#/definitions/esri.rest-api.GeometryJson.ExtentJson",
17047
+ "description": "The standard Esri extent object with spatialReference, xmax, xmin, ymax and ymin. [WebMap Only]."
17048
+ },
17049
+ "hidden": {
17050
+ "description": "Indicates whether the slide should be hidden within the presentation. [WebMap Only].",
17051
+ "type": "boolean"
17052
+ },
17053
+ "id": {
17054
+ "description": "The unique id of a slide within the slides property of a Presentation.",
17055
+ "type": "string"
17056
+ },
17057
+ "mapLocation": {
17058
+ "$ref": "__type",
17059
+ "description": "An object with a centerPoint object and sometimes a resolution. [WebMap Only] {@link https://developers.arcgis.com/web-map-specification/objects/mapLocation/}."
17060
+ },
17061
+ "thumbnail": {
17062
+ "$ref": "__type",
17063
+ "description": "A data URI encoded thumbnail. See {@link https://developers.arcgis.com/web-scene-specification/objects/thumbnail/}."
17064
+ },
17065
+ "timeExtent": {
17066
+ "description": "An array of two numbers. The first one indicates start time and the second one indicates end time. [WebMap Only].",
17067
+ "items": {
17068
+ "type": "number"
17069
+ },
17070
+ "type": "array"
17071
+ },
17072
+ "title": {
17073
+ "$ref": "__type",
17074
+ "description": "Text and formatting for the title of the individual presentation slide https://developers.arcgis.com/web-map-specification/objects/title/ {@link https://developers.arcgis.com/web-scene-specification/objects/title/}."
17075
+ },
17076
+ "viewpoint": {
17077
+ "$ref": "#/definitions/esri.rest-api.ViewpointJson.ViewpointJson",
17078
+ "description": "The viewpoint of the slide. This acts like a bookmark, saving a predefined location or point of view from which to view the scene."
17079
+ },
17080
+ "visibleLayers": {
17081
+ "description": "An array of numbers indicating layer visibility. Stores references (by ID) to the layers that are set as visible when a slide is applied to a MapView or SceneView. See {@link https://developers.arcgis.com/web-map-specification/objects/visibleLayer/} {@link https://developers.arcgis.com/web-scene-specification/objects/visibleLayer/}.",
17082
+ "items": {
17083
+ "$ref": "__type"
17084
+ },
17085
+ "type": "array"
17086
+ },
17087
+ "visiblePopup": {
17088
+ "$ref": "__type",
17089
+ "description": "A presentation slide's visiblePopup which contains anchorPoint, featureId, layerId, and subLayerId. See {@link https://developers.arcgis.com/web-map-specification/objects/visiblePopup/}."
17090
+ }
17091
+ },
17092
+ "type": "object"
17093
+ },
17094
+ "esri.rest-api.WebMapJson.TimeSliderJson": {
17095
+ "additionalProperties": false,
17096
+ "description": "Time animation is controlled by a configurable time slider. Those configurations are saved to the web map as a timeSlider widget.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/timeSlider/}.",
17097
+ "properties": {
17098
+ "properties": {
17099
+ "$ref": "__type",
17100
+ "description": "Properties for the time slider."
17101
+ }
17102
+ },
17103
+ "required": [
17104
+ "properties"
17105
+ ],
17106
+ "type": "object"
17107
+ },
17108
+ "esri.rest-api.WebMapJson.TraceConfigurationJson": {
17109
+ "additionalProperties": false,
17110
+ "description": "An array of pre-configured trace configurations for quickly running common traces. See {@link https://developers.arcgis.com/web-map-specification/objects/traceConfiguration/}.",
17111
+ "properties": {
17112
+ "id": {
17113
+ "description": "A unique identifying string for the trace configuration.",
17114
+ "type": "string"
17115
+ },
17116
+ "title": {
17117
+ "description": "A user-friendly string title for the trace configuration that can be used in a table of contents.",
17118
+ "type": "string"
17119
+ }
17120
+ },
17121
+ "type": "object"
17122
+ },
17123
+ "esri.rest-api.WebMapJson.UtilityNetworkJson": {
17124
+ "additionalProperties": false,
17125
+ "description": "Identifies the central object for utility network schema information to access utility-related functionality, such as tracing and querying associations. See {@link https://developers.arcgis.com/web-map-specification/objects/utilityNetwork/}.",
17126
+ "properties": {
17127
+ "id": {
17128
+ "description": "A unique identifying string for the utility network.",
17129
+ "type": "string"
17130
+ },
17131
+ "title": {
17132
+ "description": "A user-friendly string title for the utility network that can be used in a table of contents.",
17133
+ "type": "string"
17134
+ },
17135
+ "traceConfigurations": {
17136
+ "description": "An array of pre-configured trace configurations for quickly running common traces.",
17137
+ "items": {
17138
+ "$ref": "#/definitions/esri.rest-api.WebMapJson.TraceConfigurationJson"
17139
+ },
17140
+ "type": "array"
17141
+ },
17142
+ "url": {
17143
+ "description": "A string value indicating the URL to the utility network layer.",
17144
+ "type": "string"
17145
+ }
17146
+ },
17147
+ "type": "object"
17148
+ },
17149
+ "esri.rest-api.WebMapJson.WebMapJson": {
17150
+ "additionalProperties": false,
17151
+ "description": "The web map data lists the basemap, operational layers, and bookmarks to be used in the web map. It also contains information about popup windows and layer styling overrides to be used in the web map. A version property allows you to supply the version of the web map JSON format being used.\n\nPart of the Esri web map specification. See {@link http://resources.arcgis.com/en/help/arcgis-web-map-json/}. See {@link https://developers.arcgis.com/web-map-specification/objects/webmap/}.",
17152
+ "properties": {
17153
+ "applicationProperties": {
17154
+ "$ref": "#/definitions/esri.rest-api.WebMapJson.ApplicationPropertiesJson",
17155
+ "description": "The applicationProperties object is one of the objects at the top level of the JSON web map JSON schema. This is responsible for containing the viewing and editing properties of the web map. There are specific objects within this object that are applicable only to Collector and are explained within the property descriptions."
17156
+ },
17157
+ "authoringApp": {
17158
+ "description": "String value indicating the application which authored the webmap.",
17159
+ "type": "string"
17160
+ },
17161
+ "authoringAppVersion": {
17162
+ "description": "String value indicating the authoring App's version number.",
17163
+ "type": "string"
17164
+ },
17165
+ "background": {
17166
+ "$ref": "#/definitions/esri.rest-api.EnvironmentJson.ColorBackgroundJson",
17167
+ "description": "The background."
17168
+ },
17169
+ "baseMap": {
17170
+ "$ref": "#/definitions/esri.rest-api.BasemapJson.BasemapJson",
17171
+ "description": "The map's basemap layer(s). Layers are drawn based on the index position in the array; The first layer in the array is the first layer drawn, the next layer in the array is drawn on top of it, and so on."
17172
+ },
17173
+ "bookmarks": {
17174
+ "description": "Bookmarks that are saved with the map.",
17175
+ "items": {
17176
+ "$ref": "#/definitions/esri.rest-api.WebMapJson.BookmarkJson"
17177
+ },
17178
+ "type": "array"
17179
+ },
17180
+ "initialState": {
17181
+ "$ref": "#/definitions/esri.rest-api.WebMapJson.InitialStateJson",
17182
+ "description": "The initial state at which to open the map."
17183
+ },
17184
+ "mapFloorInfo": {
17185
+ "$ref": "#/definitions/esri.rest-api.WebMapJson.MapFloorInfoJson",
17186
+ "description": "Contains floor-awareness information for the map."
17187
+ },
17188
+ "mapRangeInfo": {
17189
+ "$ref": "#/definitions/esri.rest-api.WebMapJson.MapRangeInfoJson",
17190
+ "description": "Map range information."
17191
+ },
17192
+ "operationalLayers": {
17193
+ "description": "Operational layers contain your business data. They are used to make thematic maps. Usually, a basemap sits beneath your operational layers to give them geographic context. See {@link https://developers.arcgis.com/web-map-specification/objects/operationalLayers/}.",
17194
+ "items": {
17195
+ "$ref": "#/definitions/OperationalLayerJson"
17196
+ },
17197
+ "type": "array"
17198
+ },
17199
+ "presentation": {
17200
+ "$ref": "#/definitions/esri.rest-api.WebMapJson.PresentationJson",
17201
+ "description": "A presentation consists of multiple slides. Each slide has a different title, extent, basemap, layers etc."
17202
+ },
17203
+ "spatialReference": {
17204
+ "$ref": "#/definitions/esri.rest-api.SpatialReferenceJson.SpatialReferenceJson",
17205
+ "description": "An object used to specify the spatial reference of the given geometry."
17206
+ },
17207
+ "tables": {
17208
+ "description": "Specify an array of table objects.",
17209
+ "items": {
17210
+ "$ref": "#/definitions/esri.rest-api.TableJson.TableJson"
17211
+ },
17212
+ "type": "array"
17213
+ },
17214
+ "timeZone": {
17215
+ "description": "TODO: Not yet documented in web map spec, but present in 2.29 web maps generated by Maps SDK 4.28.",
17216
+ "type": "string"
17217
+ },
17218
+ "utilityNetworks": {
17219
+ "description": "An array of utility network objects the map can use to access utility-related functionality, such as tracing and querying associations.",
17220
+ "items": {
17221
+ "$ref": "#/definitions/esri.rest-api.WebMapJson.UtilityNetworkJson"
17222
+ },
17223
+ "type": "array"
17224
+ },
17225
+ "version": {
17226
+ "description": "Root element in the web map specifying a string value indicating the web map version. See {@link https://developers.arcgis.com/web-map-specification/objects/version/}.",
17227
+ "type": "string"
17228
+ },
17229
+ "widgets": {
17230
+ "$ref": "#/definitions/esri.rest-api.WebMapJson.WidgetsJson",
17231
+ "description": "The widgets object contains widgets that should be exposed to the user."
17232
+ }
17233
+ },
17234
+ "required": [
17235
+ "baseMap",
17236
+ "spatialReference",
17237
+ "version"
17238
+ ],
17239
+ "type": "object"
17240
+ },
17241
+ "esri.rest-api.WebMapJson.WidgetsJson": {
17242
+ "additionalProperties": false,
17243
+ "description": "The widgets object contains widgets that should be exposed to the user.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/widgets/} {@link https://developers.arcgis.com/web-scene-specification/objects/widgets/}.",
17244
+ "properties": {
17245
+ "floorFilter": {
17246
+ "$ref": "#/definitions/esri.rest-api.WebMapJson.FloorFilterJson",
17247
+ "description": "Configurable properties used by the floor filter widget."
17248
+ },
17249
+ "range": {
17250
+ "$ref": "#/definitions/esri.rest-api.WebMapJson.RangeJson",
17251
+ "description": "Active range."
17252
+ },
17253
+ "timeSlider": {
17254
+ "$ref": "#/definitions/esri.rest-api.WebMapJson.TimeSliderJson",
17255
+ "description": "Time animation is controlled by a configurable time slider. The time slider widget will act upon all the time aware layers in the map."
17256
+ }
17257
+ },
17258
+ "type": "object"
17259
+ },
17260
+ "esri.rest-api.WebSceneJson.HeightModelInfoJson": {
17261
+ "additionalProperties": false,
17262
+ "description": "An object that defines the characteristics of the vertical coordinate system used by the web scene.",
17263
+ "properties": {
17264
+ "heightModel": {
17265
+ "description": "The surface type or height model of the vertical coordinate system.",
17266
+ "enum": [
17267
+ "ellipsoidal",
17268
+ "gravity_related_height"
17269
+ ],
17270
+ "type": "string"
17271
+ },
17272
+ "heightUnit": {
17273
+ "description": "The unit of the vertical coordinate system.",
17274
+ "enum": [
17275
+ "150-kilometers",
17276
+ "50-kilometers",
17277
+ "benoit-1895-b-chain",
17278
+ "clarke-foot",
17279
+ "clarke-link",
17280
+ "clarke-yard",
17281
+ "foot",
17282
+ "gold-coast-foot",
17283
+ "indian-1937-yard",
17284
+ "indian-yard",
17285
+ "meter",
17286
+ "sears-1922-truncated-chain",
17287
+ "sears-chain",
17288
+ "sears-foot",
17289
+ "sears-yard",
17290
+ "us-foot"
17291
+ ],
17292
+ "type": "string"
17293
+ },
17294
+ "vertCRS": {
17295
+ "description": "The datum realization of the vertical coordinate system.",
17296
+ "type": "string"
17297
+ }
17298
+ },
17299
+ "required": [
17300
+ "heightModel",
17301
+ "heightUnit"
17302
+ ],
17303
+ "type": "object"
17304
+ },
17305
+ "esri.rest-api.WebSceneJson.WebSceneJson": {
17306
+ "additionalProperties": false,
17307
+ "description": "An Esri web scene.\n\nThe web scene is the core element of 3D mapping across the ArcGIS platform. It defines the content, style, environment, and slides of your scene and it can be shared across multiple ArcGIS web and desktop applications. Web scenes can be created, published, and consumed in ArcGIS Pro and ArcGIS Online with the Scene Viewer. The web scene is saved as a JSON document that can be consumed by the ArcGIS API for JavaScript via the WebScene class to easily create compelling 3D applications.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/webscene/}.",
17308
+ "properties": {
17309
+ "applicationProperties": {
17310
+ "$ref": "#/definitions/esri.rest-api.WebMapJson.ApplicationPropertiesJson",
17311
+ "description": "The applicationProperties object is one of the objects at the top level of the JSON web map JSON schema. This is responsible for containing the viewing and editing properties of the web map. There are specific objects within this object that are applicable only to Collector and are explained within the property descriptions."
17312
+ },
17313
+ "authoringApp": {
17314
+ "description": "String value indicating the application which authored the webmap.",
17315
+ "type": "string"
17316
+ },
17317
+ "authoringAppVersion": {
17318
+ "description": "String value indicating the authoring App's version number.",
17319
+ "type": "string"
17320
+ },
17321
+ "baseMap": {
17322
+ "$ref": "#/definitions/esri.rest-api.BasemapJson.BasemapJson",
17323
+ "description": "The map's basemap layer(s). Layers are drawn based on the index position in the array; The first layer in the array is the first layer drawn, the next layer in the array is drawn on top of it, and so on."
17324
+ },
17325
+ "clippingArea": {
17326
+ "$ref": "__type",
17327
+ "description": "Defines are to be clipped for display. See {@link https://developers.arcgis.com/web-scene-specification/objects/clippingArea/}."
17328
+ },
17329
+ "ground": {
17330
+ "$ref": "#/definitions/esri.rest-api.GroundJson.GroundJson",
17331
+ "description": "Ground defines the main surface of the web scene, based on elevation layers."
17332
+ },
17333
+ "heightModelInfo": {
17334
+ "$ref": "#/definitions/esri.rest-api.WebSceneJson.HeightModelInfoJson",
17335
+ "description": "An object that defines the characteristics of the vertical coordinate system used by the web scene."
17336
+ },
17337
+ "initialState": {
17338
+ "$ref": "#/definitions/esri.rest-api.WebMapJson.InitialStateJson",
17339
+ "description": "The initial state at which to open the map."
17340
+ },
17341
+ "mapFloorInfo": {
17342
+ "$ref": "#/definitions/esri.rest-api.WebMapJson.MapFloorInfoJson",
17343
+ "description": "Contains floor-awareness information for the map."
17344
+ },
17345
+ "mapRangeInfo": {
17346
+ "$ref": "#/definitions/esri.rest-api.WebMapJson.MapRangeInfoJson",
17347
+ "description": "Map range information."
17348
+ },
17349
+ "operationalLayers": {
17350
+ "description": "Operational layers contain your business data. They are used to make thematic maps. Usually, a basemap sits beneath your operational layers to give them geographic context. See {@link https://developers.arcgis.com/web-map-specification/objects/operationalLayers/}.",
17351
+ "items": {
17352
+ "$ref": "#/definitions/OperationalLayerJson"
17353
+ },
17354
+ "type": "array"
17355
+ },
17356
+ "presentation": {
17357
+ "$ref": "#/definitions/esri.rest-api.WebMapJson.PresentationJson",
17358
+ "description": "A presentation consists of multiple slides. Each slide has a different title, extent, basemap, layers etc."
17359
+ },
17360
+ "spatialReference": {
17361
+ "$ref": "#/definitions/esri.rest-api.SpatialReferenceJson.SpatialReferenceJson",
17362
+ "description": "An object used to specify the spatial reference of the given geometry."
17363
+ },
17364
+ "tables": {
17365
+ "description": "Specify an array of table objects.",
17366
+ "items": {
17367
+ "$ref": "#/definitions/esri.rest-api.TableJson.TableJson"
17368
+ },
17369
+ "type": "array"
17370
+ },
17371
+ "timeZone": {
17372
+ "description": "TODO: Not yet documented in web map spec, but present in 2.29 web maps generated by Maps SDK 4.28.",
17373
+ "type": "string"
17374
+ },
17375
+ "version": {
17376
+ "description": "Root element in the web map specifying a string value indicating the web map version. See {@link https://developers.arcgis.com/web-map-specification/objects/version/}.",
17377
+ "type": "string"
17378
+ },
17379
+ "viewingMode": {
17380
+ "description": "Must be one of the following values: \"global\" | \"local\".",
17381
+ "enum": [
17382
+ "global",
17383
+ "local"
17384
+ ],
17385
+ "type": "string"
17386
+ },
17387
+ "widgets": {
17388
+ "$ref": "#/definitions/esri.rest-api.WebMapJson.WidgetsJson",
17389
+ "description": "The widgets object contains widgets that should be exposed to the user."
17390
+ }
17391
+ },
17392
+ "required": [
17393
+ "baseMap",
17394
+ "spatialReference",
17395
+ "version"
17396
+ ],
17397
+ "type": "object"
17398
+ },
15592
17399
  "esri.rest-api.WebTileLayerJson.TileInfoJson": {
15593
17400
  "additionalProperties": false,
15594
17401
  "description": "Tile information, returned from the WMTS OGC Web Service. The tileInfo will contain the spatial reference of the layer. TileInfo is the same json representation as the ArcGIS Map/Image service tileInfo except that it may contain a levelValue on the lod objects that should be used instead of the level in the templateUrl.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/tileInfo/} {@link https://developers.arcgis.com/web-scene-specification/objects/tileInfo/}.",