@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.
@@ -581,6 +581,35 @@
581
581
  ],
582
582
  "type": "object"
583
583
  },
584
+ "@vertigis.arcgis-extensions.mapping.BasemapExtension.BasemapProperties": {
585
+ "additionalProperties": false,
586
+ "description": "Properties that can be specified for the {@link mapping /BasemapExtension!BasemapExtensionProperties.basemap} property.",
587
+ "properties": {
588
+ "baseMapLayers": {
589
+ "description": "An array of BasemapLayer objects defining the basemaps used in the web map/web scene.",
590
+ "items": {
591
+ "$ref": "#/definitions/BasemapLayerJson"
592
+ },
593
+ "type": "array"
594
+ },
595
+ "elevationLayers": {
596
+ "description": "Deprecated, use ground.layers instead. An array of elevationLayer objects defining the basemaps used in the web scene.",
597
+ "items": {
598
+ "$ref": "#/definitions/ElevationLayerJson"
599
+ },
600
+ "type": "array"
601
+ },
602
+ "id": {
603
+ "description": "An identifier used to refer to the basemap when referencing it elsewhere.\n\nNOTE: Only available in web scenes!",
604
+ "type": "string"
605
+ },
606
+ "title": {
607
+ "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.",
608
+ "type": "string"
609
+ }
610
+ },
611
+ "type": "object"
612
+ },
584
613
  "@vertigis.arcgis-extensions.mapping.Bookmark.BookmarkProperties": {
585
614
  "additionalProperties": false,
586
615
  "description": "Properties that can be passed into the constructor for {@link mapping /Bookmark!Bookmark}.",
@@ -611,6 +640,60 @@
611
640
  },
612
641
  "type": "object"
613
642
  },
643
+ "@vertigis.arcgis-extensions.mapping.MapExtension.ViewMode": {
644
+ "description": "Viewing mode for a map (2D map or 3D scene).",
645
+ "enum": [
646
+ "map",
647
+ "scene"
648
+ ],
649
+ "type": "string"
650
+ },
651
+ "@vertigis.arcgis-extensions.mapping.MapExtension.WebMapLike": {
652
+ "anyOf": [
653
+ {
654
+ "$ref": "#/definitions/esri.PortalItem"
655
+ },
656
+ {
657
+ "$ref": "#/definitions/esri.rest-api.ItemJson.ItemJson"
658
+ },
659
+ {
660
+ "$ref": "@vertigis.arcgis-extensions.PortalUri.PortalUri"
661
+ },
662
+ {
663
+ "$ref": "@vertigis.arcgis-extensions.utilities.uri.Uri"
664
+ },
665
+ {
666
+ "$ref": "#/definitions/esri.rest-api.WebMapJson.WebMapJson"
667
+ },
668
+ {
669
+ "type": "string"
670
+ }
671
+ ],
672
+ "description": "A web map definition or reference."
673
+ },
674
+ "@vertigis.arcgis-extensions.mapping.MapExtension.WebSceneLike": {
675
+ "anyOf": [
676
+ {
677
+ "$ref": "#/definitions/esri.PortalItem"
678
+ },
679
+ {
680
+ "$ref": "#/definitions/esri.rest-api.ItemJson.ItemJson"
681
+ },
682
+ {
683
+ "$ref": "@vertigis.arcgis-extensions.PortalUri.PortalUri"
684
+ },
685
+ {
686
+ "$ref": "@vertigis.arcgis-extensions.utilities.uri.Uri"
687
+ },
688
+ {
689
+ "$ref": "#/definitions/esri.rest-api.WebSceneJson.WebSceneJson"
690
+ },
691
+ {
692
+ "type": "string"
693
+ }
694
+ ],
695
+ "description": "A web scene definition or reference."
696
+ },
614
697
  "@vertigis.arcgis-extensions.mapping._LayerExtension.LayerReference": {
615
698
  "additionalProperties": false,
616
699
  "description": "Matches an existing layer.",
@@ -638,6 +721,31 @@
638
721
  },
639
722
  "type": "object"
640
723
  },
724
+ "@vertigis.arcgis-extensions.support.Action.BoundAction": {
725
+ "additionalProperties": false,
726
+ "description": "An action that is bound to arguments.",
727
+ "properties": {
728
+ "arguments": {
729
+ "description": "Arguments for the action. Can either be a primitive value (string, number, boolean), or a plain JSON object containing named arguments."
730
+ },
731
+ "name": {
732
+ "description": "Determines which action to perform. It is up to the calling application how it transforms an action name into actual executable code.",
733
+ "type": "string"
734
+ }
735
+ },
736
+ "required": [
737
+ "arguments",
738
+ "name"
739
+ ],
740
+ "type": "object"
741
+ },
742
+ "@vertigis.arcgis-extensions.support.Action.CompositeAction": {
743
+ "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.",
744
+ "items": {
745
+ "$ref": "#/definitions/SimpleAction"
746
+ },
747
+ "type": "array"
748
+ },
641
749
  "@vertigis.arcgis-extensions.support.FormatSettings.FormatSettingsProperties": {
642
750
  "additionalProperties": false,
643
751
  "description": "Properties that can be passed into the constructor for {@link FormatSettings}.",
@@ -941,6 +1049,51 @@
941
1049
  },
942
1050
  "type": "object"
943
1051
  },
1052
+ "ArrayBufferLike": {
1053
+ "anyOf": [
1054
+ {
1055
+ "$ref": "ArrayBuffer"
1056
+ },
1057
+ {
1058
+ "$ref": "SharedArrayBuffer"
1059
+ }
1060
+ ]
1061
+ },
1062
+ "BasemapLayerJson": {
1063
+ "anyOf": [
1064
+ {
1065
+ "$ref": "#/definitions/esri.rest-api.ImageServiceLayerJson.ImageServiceLayerJson"
1066
+ },
1067
+ {
1068
+ "$ref": "#/definitions/esri.rest-api.ImageServiceVectorLayerJson.ImageServiceVectorLayerJson"
1069
+ },
1070
+ {
1071
+ "$ref": "#/definitions/esri.rest-api.MapServiceLayerJson.MapServiceLayerJson"
1072
+ },
1073
+ {
1074
+ "$ref": "#/definitions/esri.rest-api.TiledImageServiceLayerJson.TiledImageServiceLayerJson"
1075
+ },
1076
+ {
1077
+ "$ref": "#/definitions/esri.rest-api.TiledMapServiceLayerJson.TiledMapServiceLayerJson"
1078
+ },
1079
+ {
1080
+ "$ref": "#/definitions/esri.rest-api.VectorTileLayerJson.VectorTileLayerJson"
1081
+ },
1082
+ {
1083
+ "$ref": "#/definitions/esri.rest-api.WebTileLayerJson.WebTileLayerJson"
1084
+ },
1085
+ {
1086
+ "$ref": "#/definitions/esri.rest-api.WMSLayerJson.WMSLayerJson"
1087
+ },
1088
+ {
1089
+ "$ref": "#/definitions/esri.rest-api.BingLayerJson.BingLayerJson"
1090
+ },
1091
+ {
1092
+ "$ref": "#/definitions/esri.rest-api.OpenStreetMapLayerJson.OpenStreetMapLayerJson"
1093
+ }
1094
+ ],
1095
+ "description": "A base map layer in a web map/scene."
1096
+ },
944
1097
  "CaptureGeometryArgs": {
945
1098
  "additionalProperties": false,
946
1099
  "description": "Arguments for the \"sketching.capture-geometry\" operation.",
@@ -2126,6 +2279,17 @@
2126
2279
  ],
2127
2280
  "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
2128
2281
  },
2282
+ "ElevationLayerJson": {
2283
+ "anyOf": [
2284
+ {
2285
+ "$ref": "#/definitions/esri.rest-api.RasterDataElevationLayerJson.RasterDataElevationLayerJson"
2286
+ },
2287
+ {
2288
+ "$ref": "#/definitions/esri.rest-api.TiledElevationServiceLayerJson.TiledElevationServiceLayerJson"
2289
+ }
2290
+ ],
2291
+ "description": "Elevation layers that can be used in a web scene's ground."
2292
+ },
2129
2293
  "EvaluateWorkflowArgs": {
2130
2294
  "additionalProperties": false,
2131
2295
  "description": "Arguments for the workflow.evaluate command.",
@@ -2750,6 +2914,27 @@
2750
2914
  ],
2751
2915
  "description": "A (sub)layer extension, or an object that is convertible to one."
2752
2916
  },
2917
+ "LayerToken": {
2918
+ "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.",
2919
+ "enum": [
2920
+ "Layer.Extent.BottomLeft.Latitude",
2921
+ "Layer.Extent.BottomLeft.Longitude",
2922
+ "Layer.Extent.BottomRight.Latitude",
2923
+ "Layer.Extent.BottomRight.Longitude",
2924
+ "Layer.Extent.MaxScale",
2925
+ "Layer.Extent.MaxZoomLevel",
2926
+ "Layer.Extent.MinScale",
2927
+ "Layer.Extent.MinZoomLevel",
2928
+ "Layer.Extent.TopLeft.Latitude",
2929
+ "Layer.Extent.TopLeft.Longitude",
2930
+ "Layer.Extent.TopRight.Latitude",
2931
+ "Layer.Extent.TopRight.Longitude",
2932
+ "Layer.ID",
2933
+ "Layer.Title",
2934
+ "Layer.URL"
2935
+ ],
2936
+ "type": "string"
2937
+ },
2753
2938
  "LayersLike": {
2754
2939
  "anyOf": [
2755
2940
  {
@@ -2803,6 +2988,39 @@
2803
2988
  },
2804
2989
  "type": "object"
2805
2990
  },
2991
+ "LightingJson": {
2992
+ "anyOf": [
2993
+ {
2994
+ "$ref": "#/definitions/esri.rest-api.EnvironmentJson.SunLightingJson"
2995
+ },
2996
+ {
2997
+ "$ref": "#/definitions/esri.rest-api.EnvironmentJson.VirtualLightingJson"
2998
+ }
2999
+ ],
3000
+ "description": "Settings for defining the lighting of the scene."
3001
+ },
3002
+ "LocationToken": {
3003
+ "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/.",
3004
+ "enum": [
3005
+ "Location.Feature.Latitude",
3006
+ "Location.Feature.Longitude",
3007
+ "Location.Geolocation.Latitude",
3008
+ "Location.Geolocation.Longitude",
3009
+ "Location.Map.BottomLeft.Latitude",
3010
+ "Location.Map.BottomLeft.Longitude",
3011
+ "Location.Map.BottomRight.Latitude",
3012
+ "Location.Map.BottomRight.Longitude",
3013
+ "Location.Map.Center.Latitude",
3014
+ "Location.Map.Center.Longitude",
3015
+ "Location.Map.Scale",
3016
+ "Location.Map.TopLeft.Latitude",
3017
+ "Location.Map.TopLeft.Longitude",
3018
+ "Location.Map.TopRight.Latitude",
3019
+ "Location.Map.TopRight.Longitude",
3020
+ "Location.Map.ZoomLevel"
3021
+ ],
3022
+ "type": "string"
3023
+ },
2806
3024
  "MapRotateArgs": {
2807
3025
  "additionalProperties": false,
2808
3026
  "description": "Arguments for the \"map.rotate-by\" and \"map.rotate-to\" commands.",
@@ -3528,6 +3746,17 @@
3528
3746
  ],
3529
3747
  "description": "Arguments for various commands that manipulate the current set of shown results."
3530
3748
  },
3749
+ "SimpleAction": {
3750
+ "anyOf": [
3751
+ {
3752
+ "$ref": "#/definitions/@vertigis.arcgis-extensions.support.Action.BoundAction"
3753
+ },
3754
+ {
3755
+ "type": "string"
3756
+ }
3757
+ ],
3758
+ "description": "Defines a single action to perform."
3759
+ },
3531
3760
  "SketchTool": {
3532
3761
  "description": "The type of tool used for sketching.",
3533
3762
  "enum": [
@@ -4085,6 +4314,26 @@
4085
4314
  ],
4086
4315
  "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/}."
4087
4316
  },
4317
+ "WeatherJson": {
4318
+ "anyOf": [
4319
+ {
4320
+ "$ref": "#/definitions/esri.rest-api.EnvironmentJson.CloudyWeatherJson"
4321
+ },
4322
+ {
4323
+ "$ref": "#/definitions/esri.rest-api.EnvironmentJson.FoggyWeatherJson"
4324
+ },
4325
+ {
4326
+ "$ref": "#/definitions/esri.rest-api.EnvironmentJson.RainyWeatherJson"
4327
+ },
4328
+ {
4329
+ "$ref": "#/definitions/esri.rest-api.EnvironmentJson.SunnyWeatherJson"
4330
+ },
4331
+ {
4332
+ "$ref": "#/definitions/esri.rest-api.EnvironmentJson.SnowyWeatherJson"
4333
+ }
4334
+ ],
4335
+ "description": "Indicates the type of weather visualization in the scene."
4336
+ },
4088
4337
  "WebAddAttachmentArgs": {
4089
4338
  "additionalProperties": false,
4090
4339
  "description": "VertiGIS Studio Web's arguments for the \"edit.add-attachment\" command. Not supported by Mobile.",
@@ -4881,44 +5130,41 @@
4881
5130
  ],
4882
5131
  "type": "object"
4883
5132
  },
4884
- "esri.rest-api.BuildingSceneLayerJson.AuthoringInfoFilterBlockJson": {
5133
+ "esri.rest-api.BasemapJson.BasemapJson": {
4885
5134
  "additionalProperties": false,
4886
- "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.",
5135
+ "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/}.",
4887
5136
  "properties": {
4888
- "filterTypes": {
4889
- "description": "Array of defined filter types. Each filter type has an array of filter values.",
5137
+ "baseMapLayers": {
5138
+ "description": "An array of BasemapLayer objects defining the basemaps used in the web map/web scene.",
4890
5139
  "items": {
4891
- "$ref": "#/definitions/esri.rest-api.BuildingSceneLayerJson.AuthoringInfoFilterTypeJson"
5140
+ "$ref": "#/definitions/BasemapLayerJson"
4892
5141
  },
4893
5142
  "type": "array"
4894
- }
4895
- },
4896
- "type": "object"
4897
- },
4898
- "esri.rest-api.BuildingSceneLayerJson.AuthoringInfoFilterTypeJson": {
4899
- "additionalProperties": false,
4900
- "description": "The file authoring information for a filter, including the filter type and its value settings.",
4901
- "properties": {
4902
- "filterType": {
4903
- "description": "Represents the filter type name. Name is a unique identifier.",
4904
- "type": "string"
4905
5143
  },
4906
- "filterValues": {
4907
- "description": "Array of filter values. Filter values are the attributes that can be stored for individual fields in a layer.",
5144
+ "elevationLayers": {
5145
+ "description": "Deprecated, use ground.layers instead. An array of elevationLayer objects defining the basemaps used in the web scene.",
4908
5146
  "items": {
4909
- "type": "string"
5147
+ "$ref": "#/definitions/ElevationLayerJson"
4910
5148
  },
4911
5149
  "type": "array"
5150
+ },
5151
+ "id": {
5152
+ "description": "An identifier used to refer to the basemap when referencing it elsewhere.\n\nNOTE: Only available in web scenes!",
5153
+ "type": "string"
5154
+ },
5155
+ "title": {
5156
+ "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.",
5157
+ "type": "string"
4912
5158
  }
4913
5159
  },
4914
5160
  "type": "object"
4915
5161
  },
4916
- "esri.rest-api.BuildingSceneLayerJson.BuildingSceneLayerJson": {
5162
+ "esri.rest-api.BingLayerJson.BingLayerJson": {
4917
5163
  "additionalProperties": false,
4918
- "description": "The BuildingSceneLayer is a layer type designed for on-demand streaming and displaying building data.",
5164
+ "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/}.",
4919
5165
  "properties": {
4920
- "activeFilterId": {
4921
- "description": "Specifies the id of the currently active filter.",
5166
+ "bingKey": {
5167
+ "description": "String value that unlocks the use of Bing layers in a web map.",
4922
5168
  "type": "string"
4923
5169
  },
4924
5170
  "blendMode": {
@@ -4958,40 +5204,32 @@
4958
5204
  ],
4959
5205
  "type": "string"
4960
5206
  },
5207
+ "canShareBingPublic": {
5208
+ "description": "Boolean value indicating whether the Bing key can be shared to the public.",
5209
+ "type": "boolean"
5210
+ },
4961
5211
  "effect": {
4962
5212
  "$ref": "#/definitions/EffectJson",
4963
5213
  "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
4964
5214
  },
4965
- "filters": {
4966
- "description": "A list of filters available for this layer. Overrides filters defined on the service.",
4967
- "items": {
4968
- "$ref": "#/definitions/esri.rest-api.BuildingSceneLayerJson.FilterJson"
4969
- },
4970
- "type": "array"
4971
- },
4972
5215
  "id": {
4973
5216
  "description": "A unique identifying string for the layer.",
4974
5217
  "type": "string"
4975
5218
  },
5219
+ "isReference": {
5220
+ "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).",
5221
+ "type": "boolean"
5222
+ },
4976
5223
  "itemId": {
4977
5224
  "description": "Optional string containing the item ID of the service if it's registered on ArcGIS Online or your organization's portal.",
4978
5225
  "type": "string"
4979
5226
  },
4980
- "layerDefinition": {
4981
- "$ref": "#/definitions/esri.rest-api.LayerDefinitionJson.LayerDefinitionJson",
4982
- "description": "Additional properties that can define an elevation offset for the layer."
4983
- },
4984
5227
  "layerType": {
4985
- "const": "BuildingSceneLayer",
4986
5228
  "description": "The type of layer.",
4987
- "type": "string"
4988
- },
4989
- "listMode": {
4990
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
4991
5229
  "enum": [
4992
- "hide",
4993
- "hide-children",
4994
- "show"
5230
+ "BingMapsAerial",
5231
+ "BingMapsHybrid",
5232
+ "BingMapsRoad"
4995
5233
  ],
4996
5234
  "type": "string"
4997
5235
  },
@@ -5007,21 +5245,14 @@
5007
5245
  "description": "The degree of transparency applied to the layer on the client side, where\n0 is full transparency and 1 is no transparency.",
5008
5246
  "type": "number"
5009
5247
  },
5010
- "refreshInterval": {
5011
- "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}.",
5012
- "type": "number"
5248
+ "portalUrl": {
5249
+ "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.",
5250
+ "type": "string"
5013
5251
  },
5014
5252
  "showLegend": {
5015
5253
  "description": "Indicates whether to allow map authors the ability to control what layers should be shown in a client's legend.",
5016
5254
  "type": "boolean"
5017
5255
  },
5018
- "sublayers": {
5019
- "description": "An array of objects specifying overrides for building scene layer sublayers.",
5020
- "items": {
5021
- "$ref": "#/definitions/esri.rest-api.BuildingSceneSublayerJson.BuildingSceneSublayerJson"
5022
- },
5023
- "type": "array"
5024
- },
5025
5256
  "title": {
5026
5257
  "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.",
5027
5258
  "type": "string"
@@ -5040,10 +5271,6 @@
5040
5271
  ],
5041
5272
  "type": "string"
5042
5273
  },
5043
- "url": {
5044
- "description": "The URL to the service.",
5045
- "type": "string"
5046
- },
5047
5274
  "visibility": {
5048
5275
  "description": "Determines whether the layer is initially visible in the web map.",
5049
5276
  "type": "boolean"
@@ -5064,37 +5291,227 @@
5064
5291
  }
5065
5292
  },
5066
5293
  "required": [
5067
- "layerType"
5294
+ "bingKey",
5295
+ "canShareBingPublic",
5296
+ "layerType",
5297
+ "portalUrl"
5068
5298
  ],
5069
5299
  "type": "object"
5070
5300
  },
5071
- "esri.rest-api.BuildingSceneLayerJson.FilterAuthoringInfoCheckboxJson": {
5301
+ "esri.rest-api.BuildingSceneLayerJson.AuthoringInfoFilterBlockJson": {
5072
5302
  "additionalProperties": false,
5073
- "description": "Client UI with checkbox representation for each filter type and filter value.",
5303
+ "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.",
5074
5304
  "properties": {
5075
- "filterBlocks": {
5076
- "description": "Array of filter block authoring infos.",
5305
+ "filterTypes": {
5306
+ "description": "Array of defined filter types. Each filter type has an array of filter values.",
5077
5307
  "items": {
5078
- "$ref": "#/definitions/esri.rest-api.BuildingSceneLayerJson.AuthoringInfoFilterBlockJson"
5308
+ "$ref": "#/definitions/esri.rest-api.BuildingSceneLayerJson.AuthoringInfoFilterTypeJson"
5079
5309
  },
5080
5310
  "type": "array"
5081
- },
5082
- "type": {
5083
- "const": "checkbox",
5084
- "description": "Type of filter authoring info. Value of this property must be checkbox.",
5085
- "type": "string"
5086
5311
  }
5087
5312
  },
5088
- "required": [
5089
- "type"
5090
- ],
5091
5313
  "type": "object"
5092
5314
  },
5093
- "esri.rest-api.BuildingSceneLayerJson.FilterBlockJson": {
5315
+ "esri.rest-api.BuildingSceneLayerJson.AuthoringInfoFilterTypeJson": {
5094
5316
  "additionalProperties": false,
5095
- "description": "A filter block defines what elements will be filtered with a specific filter mode. To ensure performance on client applications, it is not recommended to declare multiple filter blocks with the same filter mode. Filter blocks are contained in a filter for a building scene layer. Each filter includes at least one filter block.",
5317
+ "description": "The file authoring information for a filter, including the filter type and its value settings.",
5096
5318
  "properties": {
5097
- "filterExpression": {
5319
+ "filterType": {
5320
+ "description": "Represents the filter type name. Name is a unique identifier.",
5321
+ "type": "string"
5322
+ },
5323
+ "filterValues": {
5324
+ "description": "Array of filter values. Filter values are the attributes that can be stored for individual fields in a layer.",
5325
+ "items": {
5326
+ "type": "string"
5327
+ },
5328
+ "type": "array"
5329
+ }
5330
+ },
5331
+ "type": "object"
5332
+ },
5333
+ "esri.rest-api.BuildingSceneLayerJson.BuildingSceneLayerJson": {
5334
+ "additionalProperties": false,
5335
+ "description": "The BuildingSceneLayer is a layer type designed for on-demand streaming and displaying building data.",
5336
+ "properties": {
5337
+ "activeFilterId": {
5338
+ "description": "Specifies the id of the currently active filter.",
5339
+ "type": "string"
5340
+ },
5341
+ "blendMode": {
5342
+ "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.",
5343
+ "enum": [
5344
+ "average",
5345
+ "color",
5346
+ "color-burn",
5347
+ "color-dodge",
5348
+ "darken",
5349
+ "destination-atop",
5350
+ "destination-in",
5351
+ "destination-out",
5352
+ "destination-over",
5353
+ "difference",
5354
+ "exclusion",
5355
+ "hard-light",
5356
+ "hue",
5357
+ "invert",
5358
+ "lighten",
5359
+ "lighter",
5360
+ "luminosity",
5361
+ "minus",
5362
+ "multiply",
5363
+ "normal",
5364
+ "overlay",
5365
+ "plus",
5366
+ "reflect",
5367
+ "saturation",
5368
+ "screen",
5369
+ "soft-light",
5370
+ "source-atop",
5371
+ "source-in",
5372
+ "source-out",
5373
+ "vivid-light",
5374
+ "xor"
5375
+ ],
5376
+ "type": "string"
5377
+ },
5378
+ "effect": {
5379
+ "$ref": "#/definitions/EffectJson",
5380
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
5381
+ },
5382
+ "filters": {
5383
+ "description": "A list of filters available for this layer. Overrides filters defined on the service.",
5384
+ "items": {
5385
+ "$ref": "#/definitions/esri.rest-api.BuildingSceneLayerJson.FilterJson"
5386
+ },
5387
+ "type": "array"
5388
+ },
5389
+ "id": {
5390
+ "description": "A unique identifying string for the layer.",
5391
+ "type": "string"
5392
+ },
5393
+ "itemId": {
5394
+ "description": "Optional string containing the item ID of the service if it's registered on ArcGIS Online or your organization's portal.",
5395
+ "type": "string"
5396
+ },
5397
+ "layerDefinition": {
5398
+ "$ref": "#/definitions/esri.rest-api.LayerDefinitionJson.LayerDefinitionJson",
5399
+ "description": "Additional properties that can define an elevation offset for the layer."
5400
+ },
5401
+ "layerType": {
5402
+ "const": "BuildingSceneLayer",
5403
+ "description": "The type of layer.",
5404
+ "type": "string"
5405
+ },
5406
+ "listMode": {
5407
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
5408
+ "enum": [
5409
+ "hide",
5410
+ "hide-children",
5411
+ "show"
5412
+ ],
5413
+ "type": "string"
5414
+ },
5415
+ "maxScale": {
5416
+ "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.",
5417
+ "type": "number"
5418
+ },
5419
+ "minScale": {
5420
+ "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.",
5421
+ "type": "number"
5422
+ },
5423
+ "opacity": {
5424
+ "description": "The degree of transparency applied to the layer on the client side, where\n0 is full transparency and 1 is no transparency.",
5425
+ "type": "number"
5426
+ },
5427
+ "refreshInterval": {
5428
+ "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}.",
5429
+ "type": "number"
5430
+ },
5431
+ "showLegend": {
5432
+ "description": "Indicates whether to allow map authors the ability to control what layers should be shown in a client's legend.",
5433
+ "type": "boolean"
5434
+ },
5435
+ "sublayers": {
5436
+ "description": "An array of objects specifying overrides for building scene layer sublayers.",
5437
+ "items": {
5438
+ "$ref": "#/definitions/esri.rest-api.BuildingSceneSublayerJson.BuildingSceneSublayerJson"
5439
+ },
5440
+ "type": "array"
5441
+ },
5442
+ "title": {
5443
+ "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.",
5444
+ "type": "string"
5445
+ },
5446
+ "type": {
5447
+ "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.",
5448
+ "enum": [
5449
+ "BingMapsAerial",
5450
+ "BingMapsHybrid",
5451
+ "BingMapsRoad",
5452
+ "CSV",
5453
+ "KML",
5454
+ "OpenStreetMap",
5455
+ "WMS",
5456
+ "WebTiledLayer"
5457
+ ],
5458
+ "type": "string"
5459
+ },
5460
+ "url": {
5461
+ "description": "The URL to the service.",
5462
+ "type": "string"
5463
+ },
5464
+ "visibility": {
5465
+ "description": "Determines whether the layer is initially visible in the web map.",
5466
+ "type": "boolean"
5467
+ },
5468
+ "visibilityTimeExtent": {
5469
+ "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.",
5470
+ "items": [
5471
+ {
5472
+ "type": "number"
5473
+ },
5474
+ {
5475
+ "type": "number"
5476
+ }
5477
+ ],
5478
+ "maxItems": 2,
5479
+ "minItems": 2,
5480
+ "type": "array"
5481
+ }
5482
+ },
5483
+ "required": [
5484
+ "layerType"
5485
+ ],
5486
+ "type": "object"
5487
+ },
5488
+ "esri.rest-api.BuildingSceneLayerJson.FilterAuthoringInfoCheckboxJson": {
5489
+ "additionalProperties": false,
5490
+ "description": "Client UI with checkbox representation for each filter type and filter value.",
5491
+ "properties": {
5492
+ "filterBlocks": {
5493
+ "description": "Array of filter block authoring infos.",
5494
+ "items": {
5495
+ "$ref": "#/definitions/esri.rest-api.BuildingSceneLayerJson.AuthoringInfoFilterBlockJson"
5496
+ },
5497
+ "type": "array"
5498
+ },
5499
+ "type": {
5500
+ "const": "checkbox",
5501
+ "description": "Type of filter authoring info. Value of this property must be checkbox.",
5502
+ "type": "string"
5503
+ }
5504
+ },
5505
+ "required": [
5506
+ "type"
5507
+ ],
5508
+ "type": "object"
5509
+ },
5510
+ "esri.rest-api.BuildingSceneLayerJson.FilterBlockJson": {
5511
+ "additionalProperties": false,
5512
+ "description": "A filter block defines what elements will be filtered with a specific filter mode. To ensure performance on client applications, it is not recommended to declare multiple filter blocks with the same filter mode. Filter blocks are contained in a filter for a building scene layer. Each filter includes at least one filter block.",
5513
+ "properties": {
5514
+ "filterExpression": {
5098
5515
  "description": "SQL expression to select features that belong to this filter block.",
5099
5516
  "type": "string"
5100
5517
  },
@@ -5774,64 +6191,274 @@
5774
6191
  ],
5775
6192
  "type": "object"
5776
6193
  },
5777
- "esri.rest-api.FeatureCollectionJson.FeatureCollectionJson": {
6194
+ "esri.rest-api.EnvironmentJson.CloudyWeatherJson": {
5778
6195
  "additionalProperties": false,
5779
- "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/}.",
6196
+ "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/}.",
5780
6197
  "properties": {
5781
- "layers": {
5782
- "description": "An array of Layer objects defining all the styling, geometry, and attribute information for the features.",
6198
+ "cloudCover": {
6199
+ "description": "Specifies the amount of cloud cover in the sky.",
6200
+ "type": "number"
6201
+ },
6202
+ "type": {
6203
+ "const": "cloudy",
6204
+ "description": "The type of weather.",
6205
+ "type": "string"
6206
+ }
6207
+ },
6208
+ "required": [
6209
+ "type"
6210
+ ],
6211
+ "type": "object"
6212
+ },
6213
+ "esri.rest-api.EnvironmentJson.ColorBackgroundJson": {
6214
+ "additionalProperties": false,
6215
+ "description": "Specifies a single color to fill the background of the scene with. The scene background is displayed behind any scene objects, stars and atmosphere.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/environment_background_color/}.",
6216
+ "properties": {
6217
+ "color": {
6218
+ "description": "Color is represented as a three or four-element array.",
5783
6219
  "items": {
5784
- "$ref": "#/definitions/esri.rest-api.SublayerJson.SublayerJson"
6220
+ "type": "number"
5785
6221
  },
5786
6222
  "type": "array"
5787
6223
  },
5788
- "showLegend": {
5789
- "description": "Indicates if this layer should be shown in the legend in client applications. The default is true.",
5790
- "type": "boolean"
6224
+ "transparency": {
6225
+ "description": "The value has to lie between 100 (full transparency) and 0 (full opacity). Web scenes only.",
6226
+ "type": "number"
6227
+ },
6228
+ "type": {
6229
+ "const": "color",
6230
+ "description": "The type of background. Web scenes only.",
6231
+ "type": "string"
5791
6232
  }
5792
6233
  },
5793
6234
  "required": [
5794
- "layers"
6235
+ "type"
5795
6236
  ],
5796
6237
  "type": "object"
5797
6238
  },
5798
- "esri.rest-api.FeatureJson.FeatureJson": {
6239
+ "esri.rest-api.EnvironmentJson.EnvironmentJson": {
5799
6240
  "additionalProperties": false,
5800
- "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/}.",
6241
+ "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/}.",
5801
6242
  "properties": {
5802
- "attributes": {
5803
- "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."
6243
+ "atmosphereEnabled": {
6244
+ "description": "Whether the atmosphere should be visualized. This includes sky and haze effects.",
6245
+ "type": "boolean"
5804
6246
  },
5805
- "geometry": {
5806
- "$ref": "#/definitions/GeometryJson",
5807
- "description": "The feature geometry."
6247
+ "background": {
6248
+ "$ref": "#/definitions/esri.rest-api.EnvironmentJson.ColorBackgroundJson",
6249
+ "description": "Specifies how the background of the scene (which lies behind sky, stars and atmosphere) should be displayed."
5808
6250
  },
5809
- "popupInfo": {
5810
- "$ref": "#/definitions/esri.rest-api.PopupInfoJson.PopupInfoJson",
5811
- "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."
6251
+ "lighting": {
6252
+ "$ref": "#/definitions/LightingJson",
6253
+ "description": "Object containing information on how the scene is lit."
5812
6254
  },
5813
- "symbol": {
5814
- "$ref": "#/definitions/esri.rest-api.SymbolJson.SymbolJson",
5815
- "description": "Symbol used for drawing the feature."
6255
+ "starsEnabled": {
6256
+ "description": "Whether stars should be displayed in the sky.",
6257
+ "type": "boolean"
6258
+ },
6259
+ "weather": {
6260
+ "$ref": "#/definitions/WeatherJson",
6261
+ "description": "Indicates the type of weather visualization in the scene."
5816
6262
  }
5817
6263
  },
5818
6264
  "type": "object"
5819
6265
  },
5820
- "esri.rest-api.FeatureLayerJson.FeatureLayerJson": {
6266
+ "esri.rest-api.EnvironmentJson.FoggyWeatherJson": {
5821
6267
  "additionalProperties": false,
5822
- "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/}.",
6268
+ "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/}.",
5823
6269
  "properties": {
5824
- "blendMode": {
5825
- "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.",
5826
- "enum": [
5827
- "average",
5828
- "color",
5829
- "color-burn",
5830
- "color-dodge",
5831
- "darken",
5832
- "destination-atop",
5833
- "destination-in",
5834
- "destination-out",
6270
+ "fogStrength": {
6271
+ "description": "Specifies the amount of fog used in the scene.",
6272
+ "type": "number"
6273
+ },
6274
+ "type": {
6275
+ "const": "foggy",
6276
+ "description": "The type of weather.",
6277
+ "type": "string"
6278
+ }
6279
+ },
6280
+ "required": [
6281
+ "type"
6282
+ ],
6283
+ "type": "object"
6284
+ },
6285
+ "esri.rest-api.EnvironmentJson.RainyWeatherJson": {
6286
+ "additionalProperties": false,
6287
+ "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/}.",
6288
+ "properties": {
6289
+ "cloudCover": {
6290
+ "description": "Specifies the amount of cloud cover in the sky.",
6291
+ "type": "number"
6292
+ },
6293
+ "precipitation": {
6294
+ "description": "Specifies the amount of snowfall in the scene.",
6295
+ "type": "number"
6296
+ },
6297
+ "type": {
6298
+ "const": "rainy",
6299
+ "description": "The type of weather.",
6300
+ "type": "string"
6301
+ }
6302
+ },
6303
+ "required": [
6304
+ "type"
6305
+ ],
6306
+ "type": "object"
6307
+ },
6308
+ "esri.rest-api.EnvironmentJson.SnowyWeatherJson": {
6309
+ "additionalProperties": false,
6310
+ "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/}.",
6311
+ "properties": {
6312
+ "cloudCover": {
6313
+ "description": "Specifies the amount of cloud cover in the sky.",
6314
+ "type": "number"
6315
+ },
6316
+ "precipitation": {
6317
+ "description": "Specifies the amount of snowfall in the scene.",
6318
+ "type": "number"
6319
+ },
6320
+ "snowCover": {
6321
+ "description": "Display surfaces covered with snow.",
6322
+ "enum": [
6323
+ "disabled",
6324
+ "enabled"
6325
+ ],
6326
+ "type": "string"
6327
+ },
6328
+ "type": {
6329
+ "const": "snowy",
6330
+ "description": "The type of weather.",
6331
+ "type": "string"
6332
+ }
6333
+ },
6334
+ "required": [
6335
+ "type"
6336
+ ],
6337
+ "type": "object"
6338
+ },
6339
+ "esri.rest-api.EnvironmentJson.SunLightingJson": {
6340
+ "additionalProperties": false,
6341
+ "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/}.",
6342
+ "properties": {
6343
+ "datetime": {
6344
+ "description": "The current date and time of the simulated sun. It is a number representing the number of milliseconds since 1 January, 1970 UTC.",
6345
+ "type": "number"
6346
+ },
6347
+ "directShadows": {
6348
+ "description": "Indicates whether to show shadows cast by the sun.",
6349
+ "type": "boolean"
6350
+ },
6351
+ "displayUTCOffset": {
6352
+ "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).",
6353
+ "type": "number"
6354
+ },
6355
+ "type": {
6356
+ "const": "sun",
6357
+ "description": "The type of lighting.",
6358
+ "type": "string"
6359
+ }
6360
+ },
6361
+ "required": [
6362
+ "type"
6363
+ ],
6364
+ "type": "object"
6365
+ },
6366
+ "esri.rest-api.EnvironmentJson.SunnyWeatherJson": {
6367
+ "additionalProperties": false,
6368
+ "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/}.",
6369
+ "properties": {
6370
+ "cloudCover": {
6371
+ "description": "Specifies the amount of cloud cover in the sky.",
6372
+ "type": "number"
6373
+ },
6374
+ "type": {
6375
+ "const": "sunny",
6376
+ "description": "The type of weather.",
6377
+ "type": "string"
6378
+ }
6379
+ },
6380
+ "required": [
6381
+ "type"
6382
+ ],
6383
+ "type": "object"
6384
+ },
6385
+ "esri.rest-api.EnvironmentJson.VirtualLightingJson": {
6386
+ "additionalProperties": false,
6387
+ "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/}.",
6388
+ "properties": {
6389
+ "directShadows": {
6390
+ "description": "Indicates whether to show shadows cast by the main light source.",
6391
+ "type": "boolean"
6392
+ },
6393
+ "type": {
6394
+ "const": "virtual",
6395
+ "description": "The type of lighting.",
6396
+ "type": "string"
6397
+ }
6398
+ },
6399
+ "required": [
6400
+ "type"
6401
+ ],
6402
+ "type": "object"
6403
+ },
6404
+ "esri.rest-api.FeatureCollectionJson.FeatureCollectionJson": {
6405
+ "additionalProperties": false,
6406
+ "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/}.",
6407
+ "properties": {
6408
+ "layers": {
6409
+ "description": "An array of Layer objects defining all the styling, geometry, and attribute information for the features.",
6410
+ "items": {
6411
+ "$ref": "#/definitions/esri.rest-api.SublayerJson.SublayerJson"
6412
+ },
6413
+ "type": "array"
6414
+ },
6415
+ "showLegend": {
6416
+ "description": "Indicates if this layer should be shown in the legend in client applications. The default is true.",
6417
+ "type": "boolean"
6418
+ }
6419
+ },
6420
+ "required": [
6421
+ "layers"
6422
+ ],
6423
+ "type": "object"
6424
+ },
6425
+ "esri.rest-api.FeatureJson.FeatureJson": {
6426
+ "additionalProperties": false,
6427
+ "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/}.",
6428
+ "properties": {
6429
+ "attributes": {
6430
+ "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."
6431
+ },
6432
+ "geometry": {
6433
+ "$ref": "#/definitions/GeometryJson",
6434
+ "description": "The feature geometry."
6435
+ },
6436
+ "popupInfo": {
6437
+ "$ref": "#/definitions/esri.rest-api.PopupInfoJson.PopupInfoJson",
6438
+ "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."
6439
+ },
6440
+ "symbol": {
6441
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.SymbolJson",
6442
+ "description": "Symbol used for drawing the feature."
6443
+ }
6444
+ },
6445
+ "type": "object"
6446
+ },
6447
+ "esri.rest-api.FeatureLayerJson.FeatureLayerJson": {
6448
+ "additionalProperties": false,
6449
+ "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/}.",
6450
+ "properties": {
6451
+ "blendMode": {
6452
+ "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.",
6453
+ "enum": [
6454
+ "average",
6455
+ "color",
6456
+ "color-burn",
6457
+ "color-dodge",
6458
+ "darken",
6459
+ "destination-atop",
6460
+ "destination-in",
6461
+ "destination-out",
5835
6462
  "destination-over",
5836
6463
  "difference",
5837
6464
  "exclusion",
@@ -6994,6 +7621,32 @@
6994
7621
  ],
6995
7622
  "type": "object"
6996
7623
  },
7624
+ "esri.rest-api.GroundJson.GroundJson": {
7625
+ "additionalProperties": false,
7626
+ "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/.",
7627
+ "properties": {
7628
+ "layers": {
7629
+ "description": "An array of elevationLayer objects defining the elevation of the ground in the web scene.",
7630
+ "items": {
7631
+ "$ref": "#/definitions/ElevationLayerJson"
7632
+ },
7633
+ "type": "array"
7634
+ },
7635
+ "navigationConstraint": {
7636
+ "$ref": "__type",
7637
+ "description": "Determines whether the camera is constrained to navigate only above, or also under the ground surface."
7638
+ },
7639
+ "surfaceColor": {
7640
+ "$ref": "#/definitions/esri.rest-api.SymbolJson.ColorJson",
7641
+ "description": "Defines the color of the ground surface, displayed underneath the basemap. If no color, the default grid is shown."
7642
+ },
7643
+ "transparency": {
7644
+ "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).",
7645
+ "type": "number"
7646
+ }
7647
+ },
7648
+ "type": "object"
7649
+ },
6997
7650
  "esri.rest-api.GroupLayerJson.GroupLayerJson": {
6998
7651
  "additionalProperties": false,
6999
7652
  "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/}.",
@@ -9417,9 +10070,9 @@
9417
10070
  },
9418
10071
  "type": "object"
9419
10072
  },
9420
- "esri.rest-api.PointCloudLayerJson.PointCloudLayerJson": {
10073
+ "esri.rest-api.OpenStreetMapLayerJson.OpenStreetMapLayerJson": {
9421
10074
  "additionalProperties": false,
9422
- "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/}.",
10075
+ "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.",
9423
10076
  "properties": {
9424
10077
  "blendMode": {
9425
10078
  "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.",
@@ -9458,10 +10111,6 @@
9458
10111
  ],
9459
10112
  "type": "string"
9460
10113
  },
9461
- "disablePopup": {
9462
- "description": "Indicates whether to allow a client to ignore popups defined by the service item.",
9463
- "type": "boolean"
9464
- },
9465
10114
  "effect": {
9466
10115
  "$ref": "#/definitions/EffectJson",
9467
10116
  "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
@@ -9470,22 +10119,17 @@
9470
10119
  "description": "A unique identifying string for the layer.",
9471
10120
  "type": "string"
9472
10121
  },
9473
- "layerDefinition": {
9474
- "$ref": "#/definitions/esri.rest-api.LayerDefinitionJson.LayerDefinitionJson",
9475
- "description": "A layerDefinition object defining the attribute schema and drawing information for the layer."
10122
+ "isReference": {
10123
+ "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).",
10124
+ "type": "boolean"
9476
10125
  },
9477
- "layerType": {
9478
- "const": "PointCloudLayer",
9479
- "description": "The type of layer.",
10126
+ "itemId": {
10127
+ "description": "Optional string containing the item ID of the service if it's registered on ArcGIS Online or your organization's portal.",
9480
10128
  "type": "string"
9481
10129
  },
9482
- "listMode": {
9483
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
9484
- "enum": [
9485
- "hide",
9486
- "hide-children",
9487
- "show"
9488
- ],
10130
+ "layerType": {
10131
+ "const": "OpenStreetMap",
10132
+ "description": "The type of layer.",
9489
10133
  "type": "string"
9490
10134
  },
9491
10135
  "maxScale": {
@@ -9500,14 +10144,6 @@
9500
10144
  "description": "The degree of transparency applied to the layer on the client side, where\n0 is full transparency and 1 is no transparency.",
9501
10145
  "type": "number"
9502
10146
  },
9503
- "popupInfo": {
9504
- "$ref": "#/definitions/esri.rest-api.PopupInfoJson.PopupInfoJson",
9505
- "description": "A PopupInfo object defining the content of pop-up windows when you click or query a feature."
9506
- },
9507
- "refreshInterval": {
9508
- "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}.",
9509
- "type": "number"
9510
- },
9511
10147
  "showLegend": {
9512
10148
  "description": "Indicates whether to allow map authors the ability to control what layers should be shown in a client's legend.",
9513
10149
  "type": "boolean"
@@ -9530,10 +10166,6 @@
9530
10166
  ],
9531
10167
  "type": "string"
9532
10168
  },
9533
- "url": {
9534
- "description": "URL to the ArcGIS Server Image Service.",
9535
- "type": "string"
9536
- },
9537
10169
  "visibility": {
9538
10170
  "description": "Determines whether the layer is initially visible in the web map.",
9539
10171
  "type": "boolean"
@@ -9558,25 +10190,166 @@
9558
10190
  ],
9559
10191
  "type": "object"
9560
10192
  },
9561
- "esri.rest-api.PopupInfoJson.FieldInfoJson": {
10193
+ "esri.rest-api.PointCloudLayerJson.PointCloudLayerJson": {
9562
10194
  "additionalProperties": false,
9563
- "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/}.",
10195
+ "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/}.",
9564
10196
  "properties": {
9565
- "fieldName": {
9566
- "description": "The field name as defined by the service.",
10197
+ "blendMode": {
10198
+ "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.",
10199
+ "enum": [
10200
+ "average",
10201
+ "color",
10202
+ "color-burn",
10203
+ "color-dodge",
10204
+ "darken",
10205
+ "destination-atop",
10206
+ "destination-in",
10207
+ "destination-out",
10208
+ "destination-over",
10209
+ "difference",
10210
+ "exclusion",
10211
+ "hard-light",
10212
+ "hue",
10213
+ "invert",
10214
+ "lighten",
10215
+ "lighter",
10216
+ "luminosity",
10217
+ "minus",
10218
+ "multiply",
10219
+ "normal",
10220
+ "overlay",
10221
+ "plus",
10222
+ "reflect",
10223
+ "saturation",
10224
+ "screen",
10225
+ "soft-light",
10226
+ "source-atop",
10227
+ "source-in",
10228
+ "source-out",
10229
+ "vivid-light",
10230
+ "xor"
10231
+ ],
9567
10232
  "type": "string"
9568
10233
  },
9569
- "format": {
9570
- "$ref": "#/definitions/esri.rest-api.PopupInfoJson.FormatJson",
9571
- "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."
9572
- },
9573
- "isEditable": {
9574
- "description": "Determines whether users can edit this field.",
10234
+ "disablePopup": {
10235
+ "description": "Indicates whether to allow a client to ignore popups defined by the service item.",
9575
10236
  "type": "boolean"
9576
10237
  },
9577
- "label": {
9578
- "description": "The field alias. This can be overridden by the web map author.",
9579
- "type": "string"
10238
+ "effect": {
10239
+ "$ref": "#/definitions/EffectJson",
10240
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
10241
+ },
10242
+ "id": {
10243
+ "description": "A unique identifying string for the layer.",
10244
+ "type": "string"
10245
+ },
10246
+ "layerDefinition": {
10247
+ "$ref": "#/definitions/esri.rest-api.LayerDefinitionJson.LayerDefinitionJson",
10248
+ "description": "A layerDefinition object defining the attribute schema and drawing information for the layer."
10249
+ },
10250
+ "layerType": {
10251
+ "const": "PointCloudLayer",
10252
+ "description": "The type of layer.",
10253
+ "type": "string"
10254
+ },
10255
+ "listMode": {
10256
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
10257
+ "enum": [
10258
+ "hide",
10259
+ "hide-children",
10260
+ "show"
10261
+ ],
10262
+ "type": "string"
10263
+ },
10264
+ "maxScale": {
10265
+ "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.",
10266
+ "type": "number"
10267
+ },
10268
+ "minScale": {
10269
+ "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.",
10270
+ "type": "number"
10271
+ },
10272
+ "opacity": {
10273
+ "description": "The degree of transparency applied to the layer on the client side, where\n0 is full transparency and 1 is no transparency.",
10274
+ "type": "number"
10275
+ },
10276
+ "popupInfo": {
10277
+ "$ref": "#/definitions/esri.rest-api.PopupInfoJson.PopupInfoJson",
10278
+ "description": "A PopupInfo object defining the content of pop-up windows when you click or query a feature."
10279
+ },
10280
+ "refreshInterval": {
10281
+ "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}.",
10282
+ "type": "number"
10283
+ },
10284
+ "showLegend": {
10285
+ "description": "Indicates whether to allow map authors the ability to control what layers should be shown in a client's legend.",
10286
+ "type": "boolean"
10287
+ },
10288
+ "title": {
10289
+ "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.",
10290
+ "type": "string"
10291
+ },
10292
+ "type": {
10293
+ "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.",
10294
+ "enum": [
10295
+ "BingMapsAerial",
10296
+ "BingMapsHybrid",
10297
+ "BingMapsRoad",
10298
+ "CSV",
10299
+ "KML",
10300
+ "OpenStreetMap",
10301
+ "WMS",
10302
+ "WebTiledLayer"
10303
+ ],
10304
+ "type": "string"
10305
+ },
10306
+ "url": {
10307
+ "description": "URL to the ArcGIS Server Image Service.",
10308
+ "type": "string"
10309
+ },
10310
+ "visibility": {
10311
+ "description": "Determines whether the layer is initially visible in the web map.",
10312
+ "type": "boolean"
10313
+ },
10314
+ "visibilityTimeExtent": {
10315
+ "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.",
10316
+ "items": [
10317
+ {
10318
+ "type": "number"
10319
+ },
10320
+ {
10321
+ "type": "number"
10322
+ }
10323
+ ],
10324
+ "maxItems": 2,
10325
+ "minItems": 2,
10326
+ "type": "array"
10327
+ }
10328
+ },
10329
+ "required": [
10330
+ "layerType"
10331
+ ],
10332
+ "type": "object"
10333
+ },
10334
+ "esri.rest-api.PopupInfoJson.FieldInfoJson": {
10335
+ "additionalProperties": false,
10336
+ "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/}.",
10337
+ "properties": {
10338
+ "fieldName": {
10339
+ "description": "The field name as defined by the service.",
10340
+ "type": "string"
10341
+ },
10342
+ "format": {
10343
+ "$ref": "#/definitions/esri.rest-api.PopupInfoJson.FormatJson",
10344
+ "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."
10345
+ },
10346
+ "isEditable": {
10347
+ "description": "Determines whether users can edit this field.",
10348
+ "type": "boolean"
10349
+ },
10350
+ "label": {
10351
+ "description": "The field alias. This can be overridden by the web map author.",
10352
+ "type": "string"
9580
10353
  },
9581
10354
  "stringFieldOption": {
9582
10355
  "description": "The type of input box editors will see when editing the field. Applies only to string fields.",
@@ -9866,6 +10639,139 @@
9866
10639
  },
9867
10640
  "type": "object"
9868
10641
  },
10642
+ "esri.rest-api.RasterDataElevationLayerJson.RasterDataElevationLayerJson": {
10643
+ "additionalProperties": false,
10644
+ "description": "RasterDataElevationLayer is a single-band raster layer used for rendering elevation.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/rasterDataElevationLayer/}.",
10645
+ "properties": {
10646
+ "blendMode": {
10647
+ "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.",
10648
+ "enum": [
10649
+ "average",
10650
+ "color",
10651
+ "color-burn",
10652
+ "color-dodge",
10653
+ "darken",
10654
+ "destination-atop",
10655
+ "destination-in",
10656
+ "destination-out",
10657
+ "destination-over",
10658
+ "difference",
10659
+ "exclusion",
10660
+ "hard-light",
10661
+ "hue",
10662
+ "invert",
10663
+ "lighten",
10664
+ "lighter",
10665
+ "luminosity",
10666
+ "minus",
10667
+ "multiply",
10668
+ "normal",
10669
+ "overlay",
10670
+ "plus",
10671
+ "reflect",
10672
+ "saturation",
10673
+ "screen",
10674
+ "soft-light",
10675
+ "source-atop",
10676
+ "source-in",
10677
+ "source-out",
10678
+ "vivid-light",
10679
+ "xor"
10680
+ ],
10681
+ "type": "string"
10682
+ },
10683
+ "effect": {
10684
+ "$ref": "#/definitions/EffectJson",
10685
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
10686
+ },
10687
+ "id": {
10688
+ "description": "A unique identifying string for the layer.",
10689
+ "type": "string"
10690
+ },
10691
+ "isReference": {
10692
+ "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).",
10693
+ "type": "boolean"
10694
+ },
10695
+ "layerType": {
10696
+ "const": "RasterDataElevationLayer",
10697
+ "description": "The type of layer.",
10698
+ "type": "string"
10699
+ },
10700
+ "listMode": {
10701
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
10702
+ "enum": [
10703
+ "hide",
10704
+ "hide-children",
10705
+ "show"
10706
+ ],
10707
+ "type": "string"
10708
+ },
10709
+ "maxScale": {
10710
+ "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.",
10711
+ "type": "number"
10712
+ },
10713
+ "minScale": {
10714
+ "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.",
10715
+ "type": "number"
10716
+ },
10717
+ "opacity": {
10718
+ "description": "The degree of transparency applied to the layer on the client side, where\n0 is full transparency and 1 is no transparency.",
10719
+ "type": "number"
10720
+ },
10721
+ "path": {
10722
+ "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`.",
10723
+ "type": "string"
10724
+ },
10725
+ "refreshInterval": {
10726
+ "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}.",
10727
+ "type": "number"
10728
+ },
10729
+ "showLegend": {
10730
+ "description": "Indicates whether to allow map authors the ability to control what layers should be shown in a client's legend.",
10731
+ "type": "boolean"
10732
+ },
10733
+ "title": {
10734
+ "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.",
10735
+ "type": "string"
10736
+ },
10737
+ "type": {
10738
+ "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.",
10739
+ "enum": [
10740
+ "BingMapsAerial",
10741
+ "BingMapsHybrid",
10742
+ "BingMapsRoad",
10743
+ "CSV",
10744
+ "KML",
10745
+ "OpenStreetMap",
10746
+ "WMS",
10747
+ "WebTiledLayer"
10748
+ ],
10749
+ "type": "string"
10750
+ },
10751
+ "visibility": {
10752
+ "description": "Determines whether the layer is initially visible in the web map.",
10753
+ "type": "boolean"
10754
+ },
10755
+ "visibilityTimeExtent": {
10756
+ "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.",
10757
+ "items": [
10758
+ {
10759
+ "type": "number"
10760
+ },
10761
+ {
10762
+ "type": "number"
10763
+ }
10764
+ ],
10765
+ "maxItems": 2,
10766
+ "minItems": 2,
10767
+ "type": "array"
10768
+ }
10769
+ },
10770
+ "required": [
10771
+ "layerType"
10772
+ ],
10773
+ "type": "object"
10774
+ },
9869
10775
  "esri.rest-api.RendererJson.AuthoringInfoJson": {
9870
10776
  "additionalProperties": false,
9871
10777
  "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/}.",
@@ -13251,22 +14157,76 @@
13251
14157
  ],
13252
14158
  "type": "object"
13253
14159
  },
13254
- "esri.rest-api.TemplateJson.TemplateJson": {
14160
+ "esri.rest-api.TableJson.TableJson": {
13255
14161
  "additionalProperties": false,
13256
- "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/}.",
14162
+ "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/}.",
13257
14163
  "properties": {
13258
- "description": {
13259
- "description": "A detailed description of the template.",
14164
+ "capabilities": {
14165
+ "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'.",
14166
+ "enum": [
14167
+ "Create",
14168
+ "Delete",
14169
+ "Editing",
14170
+ "Query",
14171
+ "Update"
14172
+ ],
13260
14173
  "type": "string"
13261
14174
  },
13262
- "drawingTool": {
13263
- "description": "An optional string that can define a client-side drawing tool to be used with this feature. See the web map specification for more details.",
13264
- "enum": [
13265
- "esriFeatureEditToolCircle",
13266
- "esriFeatureEditToolDownArrow",
13267
- "esriFeatureEditToolEllipse",
13268
- "esriFeatureEditToolFreehand",
13269
- "esriFeatureEditToolLeftArrow",
14175
+ "definitionEditor": {
14176
+ "$ref": "#/definitions/esri.rest-api.DefinitionEditorJson.DefinitionEditorJson",
14177
+ "description": "Object indicating the definitionEditor used as a layer's interactive filter."
14178
+ },
14179
+ "formInfo": {
14180
+ "$ref": "#/definitions/esri.rest-api.FormInfoJson.FormInfoJson",
14181
+ "description": "A formInfo object defining the content of the form when you are editing a record."
14182
+ },
14183
+ "id": {
14184
+ "description": "Unique string identifier for the table.",
14185
+ "type": "string"
14186
+ },
14187
+ "itemId": {
14188
+ "description": "Unique string value indicating an item registered in ArcGIS Online or your organization's portal.",
14189
+ "type": "string"
14190
+ },
14191
+ "layerDefinition": {
14192
+ "$ref": "#/definitions/esri.rest-api.LayerDefinitionJson.LayerDefinitionJson",
14193
+ "description": "A layerDefinition object defining the attribute schema and drawing information for the layer. Used with CSV layers."
14194
+ },
14195
+ "popupInfo": {
14196
+ "$ref": "#/definitions/esri.rest-api.PopupInfoJson.PopupInfoJson",
14197
+ "description": "An object defining the content of popup windows when you query a record and the sort option for child related records."
14198
+ },
14199
+ "refreshInterval": {
14200
+ "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.",
14201
+ "type": "number"
14202
+ },
14203
+ "title": {
14204
+ "description": "String value for the title of the table.",
14205
+ "type": "string"
14206
+ },
14207
+ "url": {
14208
+ "description": "String value indicating the URL reference of the hosted table.",
14209
+ "type": "string"
14210
+ }
14211
+ },
14212
+ "type": "object"
14213
+ },
14214
+ "esri.rest-api.TemplateJson.TemplateJson": {
14215
+ "additionalProperties": false,
14216
+ "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/}.",
14217
+ "properties": {
14218
+ "description": {
14219
+ "description": "A detailed description of the template.",
14220
+ "type": "string"
14221
+ },
14222
+ "drawingTool": {
14223
+ "description": "An optional string that can define a client-side drawing tool to be used with this feature. See the web map specification for more details.",
14224
+ "enum": [
14225
+ "esriFeatureEditToolCircle",
14226
+ "esriFeatureEditToolDownArrow",
14227
+ "esriFeatureEditToolEllipse",
14228
+ "esriFeatureEditToolFreehand",
14229
+ "esriFeatureEditToolLeftArrow",
13270
14230
  "esriFeatureEditToolLine",
13271
14231
  "esriFeatureEditToolPoint",
13272
14232
  "esriFeatureEditToolPolygon",
@@ -13289,6 +14249,147 @@
13289
14249
  },
13290
14250
  "type": "object"
13291
14251
  },
14252
+ "esri.rest-api.TiledElevationServiceLayerJson.TiledElevationServiceLayerJson": {
14253
+ "additionalProperties": false,
14254
+ "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/}.",
14255
+ "properties": {
14256
+ "blendMode": {
14257
+ "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.",
14258
+ "enum": [
14259
+ "average",
14260
+ "color",
14261
+ "color-burn",
14262
+ "color-dodge",
14263
+ "darken",
14264
+ "destination-atop",
14265
+ "destination-in",
14266
+ "destination-out",
14267
+ "destination-over",
14268
+ "difference",
14269
+ "exclusion",
14270
+ "hard-light",
14271
+ "hue",
14272
+ "invert",
14273
+ "lighten",
14274
+ "lighter",
14275
+ "luminosity",
14276
+ "minus",
14277
+ "multiply",
14278
+ "normal",
14279
+ "overlay",
14280
+ "plus",
14281
+ "reflect",
14282
+ "saturation",
14283
+ "screen",
14284
+ "soft-light",
14285
+ "source-atop",
14286
+ "source-in",
14287
+ "source-out",
14288
+ "vivid-light",
14289
+ "xor"
14290
+ ],
14291
+ "type": "string"
14292
+ },
14293
+ "effect": {
14294
+ "$ref": "#/definitions/EffectJson",
14295
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
14296
+ },
14297
+ "id": {
14298
+ "description": "A unique identifying string for the layer.",
14299
+ "type": "string"
14300
+ },
14301
+ "isReference": {
14302
+ "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).",
14303
+ "type": "boolean"
14304
+ },
14305
+ "itemId": {
14306
+ "description": "Optional string containing the item ID of the service if it's registered on ArcGIS Online or your organization's portal.",
14307
+ "type": "string"
14308
+ },
14309
+ "layerType": {
14310
+ "const": "ArcGISTiledElevationServiceLayer",
14311
+ "description": "The type of layer.",
14312
+ "type": "string"
14313
+ },
14314
+ "listMode": {
14315
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
14316
+ "enum": [
14317
+ "hide",
14318
+ "hide-children",
14319
+ "show"
14320
+ ],
14321
+ "type": "string"
14322
+ },
14323
+ "maxScale": {
14324
+ "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.",
14325
+ "type": "number"
14326
+ },
14327
+ "minScale": {
14328
+ "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.",
14329
+ "type": "number"
14330
+ },
14331
+ "opacity": {
14332
+ "description": "The degree of transparency applied to the layer on the client side, where\n0 is full transparency and 1 is no transparency.",
14333
+ "type": "number"
14334
+ },
14335
+ "path": {
14336
+ "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`.",
14337
+ "type": "string"
14338
+ },
14339
+ "refreshInterval": {
14340
+ "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}.",
14341
+ "type": "number"
14342
+ },
14343
+ "showLegend": {
14344
+ "description": "Indicates whether to allow map authors the ability to control what layers should be shown in a client's legend.",
14345
+ "type": "boolean"
14346
+ },
14347
+ "title": {
14348
+ "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.",
14349
+ "type": "string"
14350
+ },
14351
+ "type": {
14352
+ "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.",
14353
+ "enum": [
14354
+ "BingMapsAerial",
14355
+ "BingMapsHybrid",
14356
+ "BingMapsRoad",
14357
+ "CSV",
14358
+ "KML",
14359
+ "OpenStreetMap",
14360
+ "WMS",
14361
+ "WebTiledLayer"
14362
+ ],
14363
+ "type": "string"
14364
+ },
14365
+ "url": {
14366
+ "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.",
14367
+ "type": "string"
14368
+ },
14369
+ "visibility": {
14370
+ "description": "Determines whether the layer is initially visible in the web map.",
14371
+ "type": "boolean"
14372
+ },
14373
+ "visibilityTimeExtent": {
14374
+ "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.",
14375
+ "items": [
14376
+ {
14377
+ "type": "number"
14378
+ },
14379
+ {
14380
+ "type": "number"
14381
+ }
14382
+ ],
14383
+ "maxItems": 2,
14384
+ "minItems": 2,
14385
+ "type": "array"
14386
+ }
14387
+ },
14388
+ "required": [
14389
+ "layerType"
14390
+ ],
14391
+ "type": "object"
14392
+ },
13292
14393
  "esri.rest-api.TiledImageServiceLayerJson.TiledImageServiceLayerJson": {
13293
14394
  "additionalProperties": false,
13294
14395
  "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/}.",
@@ -14251,6 +15352,664 @@
14251
15352
  },
14252
15353
  "type": "object"
14253
15354
  },
15355
+ "esri.rest-api.WebMapJson.ApplicationPropertiesJson": {
15356
+ "additionalProperties": false,
15357
+ "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/}.",
15358
+ "properties": {
15359
+ "editing": {
15360
+ "$ref": "__type",
15361
+ "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/}."
15362
+ },
15363
+ "offline": {
15364
+ "$ref": "__type",
15365
+ "description": "Use if working with offline maps. See {@link https://developers.arcgis.com/web-map-specification/objects/offline/}."
15366
+ },
15367
+ "viewing": {
15368
+ "$ref": "__type",
15369
+ "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/}."
15370
+ }
15371
+ },
15372
+ "type": "object"
15373
+ },
15374
+ "esri.rest-api.WebMapJson.BookmarkJson": {
15375
+ "additionalProperties": false,
15376
+ "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/}.",
15377
+ "properties": {
15378
+ "extent": {
15379
+ "$ref": "#/definitions/esri.rest-api.GeometryJson.ExtentJson"
15380
+ },
15381
+ "name": {
15382
+ "description": "A string name for the bookmark.",
15383
+ "type": "string"
15384
+ },
15385
+ "thumbnail": {
15386
+ "$ref": "__type",
15387
+ "description": "Object containing a thumbnail image."
15388
+ },
15389
+ "viewpoint": {
15390
+ "$ref": "#/definitions/esri.rest-api.ViewpointJson.ViewpointJson",
15391
+ "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."
15392
+ }
15393
+ },
15394
+ "required": [
15395
+ "name"
15396
+ ],
15397
+ "type": "object"
15398
+ },
15399
+ "esri.rest-api.WebMapJson.FacilityLayerInfoJson": {
15400
+ "additionalProperties": false,
15401
+ "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/}.",
15402
+ "properties": {
15403
+ "facilityIdField": {
15404
+ "description": "The name of the attribute field that contains a facility feature's unique identifier.",
15405
+ "type": "string"
15406
+ },
15407
+ "layerId": {
15408
+ "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.",
15409
+ "type": "string"
15410
+ },
15411
+ "nameField": {
15412
+ "description": "The name of the attribute field that contains a facility feature's name.",
15413
+ "type": "string"
15414
+ },
15415
+ "siteIdField": {
15416
+ "description": "The name of the attribute field that contains a facility feature's site identifier (a foreign key to the Site layer).",
15417
+ "type": "string"
15418
+ }
15419
+ },
15420
+ "type": "object"
15421
+ },
15422
+ "esri.rest-api.WebMapJson.FloorFilterJson": {
15423
+ "additionalProperties": false,
15424
+ "description": "Configurable properties used by the floor filter widget. See {@link https://developers.arcgis.com/web-map-specification/objects/floorFilter/}.",
15425
+ "properties": {
15426
+ "enabled": {
15427
+ "description": "Indicates whether the floor filter is actively filtering the displayed content according to the floor filter selection.",
15428
+ "type": "boolean"
15429
+ },
15430
+ "facility": {
15431
+ "description": "Contains a facility identifier for the initially selected facility in the floor filter.",
15432
+ "type": "string"
15433
+ },
15434
+ "level": {
15435
+ "description": "Contains a level identifier for the initially selected floor, which is used when filtering floor-aware layers.",
15436
+ "type": "string"
15437
+ },
15438
+ "longNames": {
15439
+ "description": "Indicates whether the floor filter is showing long names instead of short names for floor levels.",
15440
+ "type": "boolean"
15441
+ },
15442
+ "minimized": {
15443
+ "description": "Indicates whether the floor filter has been minimized to show only the levels list instead of showing the full set of breadcrumbs.",
15444
+ "type": "boolean"
15445
+ },
15446
+ "pinnedLevels": {
15447
+ "description": "Indicates whether the floor filter has been pinned to show the floor levels list, instead of including the levels as a breadcrumb dropdown.",
15448
+ "type": "boolean"
15449
+ },
15450
+ "siteIdentifier": {
15451
+ "description": "Contains a site identifier for the initially selected site in the floor filter.",
15452
+ "type": "string"
15453
+ }
15454
+ },
15455
+ "type": "object"
15456
+ },
15457
+ "esri.rest-api.WebMapJson.InitialStateJson": {
15458
+ "additionalProperties": false,
15459
+ "description": "Defines the initial state when opening web scene.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/initialState/}.",
15460
+ "properties": {
15461
+ "environment": {
15462
+ "$ref": "#/definitions/esri.rest-api.EnvironmentJson.EnvironmentJson",
15463
+ "description": "The initial environment settings of the WebScene."
15464
+ },
15465
+ "viewpoint": {
15466
+ "$ref": "#/definitions/esri.rest-api.ViewpointJson.ViewpointJson",
15467
+ "description": "Describes a point of view for a 2D or 3D view. In a 3D view, it is determined using a camera position."
15468
+ }
15469
+ },
15470
+ "required": [
15471
+ "viewpoint"
15472
+ ],
15473
+ "type": "object"
15474
+ },
15475
+ "esri.rest-api.WebMapJson.LevelLayerInfoJson": {
15476
+ "additionalProperties": false,
15477
+ "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/}.",
15478
+ "properties": {
15479
+ "facilityIdField": {
15480
+ "description": "The name of the attribute field that contains a level feature's facility identifier (a foreign key to the Facility layer).",
15481
+ "type": "string"
15482
+ },
15483
+ "layerId": {
15484
+ "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.",
15485
+ "type": "string"
15486
+ },
15487
+ "levelIdField": {
15488
+ "description": "The name of the attribute field that contains a level feature's unique identifier.",
15489
+ "type": "string"
15490
+ },
15491
+ "levelNumberField": {
15492
+ "description": "The name of the attribute field that contains a level feature's level number specific to its facility.",
15493
+ "type": "string"
15494
+ },
15495
+ "longNameField": {
15496
+ "description": "The name of the attribute field that contains a level feature's long name.",
15497
+ "type": "string"
15498
+ },
15499
+ "shortNameField": {
15500
+ "description": "The name of the attribute field that contains a level feature's short name.",
15501
+ "type": "string"
15502
+ },
15503
+ "verticalOrderField": {
15504
+ "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.",
15505
+ "type": "string"
15506
+ }
15507
+ },
15508
+ "type": "object"
15509
+ },
15510
+ "esri.rest-api.WebMapJson.MapFloorInfoJson": {
15511
+ "additionalProperties": false,
15512
+ "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/}.",
15513
+ "properties": {
15514
+ "facilityLayer": {
15515
+ "$ref": "#/definitions/esri.rest-api.WebMapJson.FacilityLayerInfoJson",
15516
+ "description": "Defines the layer and field properties for the Facility layer used for floor filtering."
15517
+ },
15518
+ "levelLayer": {
15519
+ "$ref": "#/definitions/esri.rest-api.WebMapJson.LevelLayerInfoJson",
15520
+ "description": "Defines the layer and field properties for the Level layer used for floor filtering."
15521
+ },
15522
+ "siteLayer": {
15523
+ "$ref": "#/definitions/esri.rest-api.WebMapJson.SiteLayerInfoJson",
15524
+ "description": "Defines the layer and field properties for the Site layer used for floor filtering. This property is optional."
15525
+ }
15526
+ },
15527
+ "type": "object"
15528
+ },
15529
+ "esri.rest-api.WebMapJson.MapRangeInfoJson": {
15530
+ "additionalProperties": false,
15531
+ "description": "Map Range Information.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/mapRangeInfo/}.",
15532
+ "properties": {
15533
+ "activeRangeName": {
15534
+ "description": "Active range ID that slider/picker acts upon.",
15535
+ "type": "string"
15536
+ },
15537
+ "currentRangeExtent": {
15538
+ "description": "Current range for the active range.",
15539
+ "items": [
15540
+ {
15541
+ "type": "number"
15542
+ },
15543
+ {
15544
+ "type": "number"
15545
+ }
15546
+ ],
15547
+ "maxItems": 2,
15548
+ "minItems": 2,
15549
+ "type": "array"
15550
+ },
15551
+ "fullRangeExtent": {
15552
+ "description": "Full range extent for the active range to be presented in the UI.",
15553
+ "items": [
15554
+ {
15555
+ "type": "number"
15556
+ },
15557
+ {
15558
+ "type": "number"
15559
+ }
15560
+ ],
15561
+ "maxItems": 2,
15562
+ "minItems": 2,
15563
+ "type": "array"
15564
+ }
15565
+ },
15566
+ "type": "object"
15567
+ },
15568
+ "esri.rest-api.WebMapJson.PresentationJson": {
15569
+ "additionalProperties": false,
15570
+ "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/}.",
15571
+ "properties": {
15572
+ "displayTimeSlider": {
15573
+ "description": "Indicates whether to display the time slider (if accessible). [WebMap only].",
15574
+ "type": "boolean"
15575
+ },
15576
+ "showLegend": {
15577
+ "description": "Indicates whether to display a legend on all slides. [WebMap only].",
15578
+ "type": "boolean"
15579
+ },
15580
+ "slideAdvancementInterval": {
15581
+ "description": "Number of seconds to show slide before proceeding to the next slide. [WebMap only].",
15582
+ "type": "number"
15583
+ },
15584
+ "slides": {
15585
+ "description": "An array of slides that bookmark viewpoints, visible layers, and other settings previously defined in a WebScene.",
15586
+ "items": {
15587
+ "$ref": "#/definitions/esri.rest-api.WebMapJson.SlideJson"
15588
+ },
15589
+ "type": "array"
15590
+ },
15591
+ "useTimeExtentOfSlide": {
15592
+ "description": "Indicates whether to use the time extent (if applicable) of a slide. [WebMap only].",
15593
+ "type": "boolean"
15594
+ }
15595
+ },
15596
+ "type": "object"
15597
+ },
15598
+ "esri.rest-api.WebMapJson.RangeJson": {
15599
+ "additionalProperties": false,
15600
+ "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/}.",
15601
+ "properties": {
15602
+ "interactionMode": {
15603
+ "description": "Indicates the mode in which the active range should be presented to the user. Must be one of the following values: slider, picker.",
15604
+ "type": "string"
15605
+ },
15606
+ "numberOfStops": {
15607
+ "description": "This is used to generate the activeRangeValues if activeRangeValues are not specified.",
15608
+ "type": "number"
15609
+ },
15610
+ "stopInterval": {
15611
+ "description": "Interval in which stops should be generated.",
15612
+ "type": "number"
15613
+ }
15614
+ },
15615
+ "type": "object"
15616
+ },
15617
+ "esri.rest-api.WebMapJson.SiteLayerInfoJson": {
15618
+ "additionalProperties": false,
15619
+ "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/}.",
15620
+ "properties": {
15621
+ "layerId": {
15622
+ "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.",
15623
+ "type": "string"
15624
+ },
15625
+ "nameField": {
15626
+ "description": "The name of the attribute field that contains a site feature's name.",
15627
+ "type": "string"
15628
+ },
15629
+ "siteIdField": {
15630
+ "description": "The name of the attribute field that contains a site feature's unique identifier.",
15631
+ "type": "string"
15632
+ }
15633
+ },
15634
+ "type": "object"
15635
+ },
15636
+ "esri.rest-api.WebMapJson.SlideJson": {
15637
+ "additionalProperties": false,
15638
+ "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/}.",
15639
+ "properties": {
15640
+ "baseMap": {
15641
+ "anyOf": [
15642
+ {
15643
+ "$ref": "#/definitions/esri.rest-api.BasemapJson.BasemapJson"
15644
+ },
15645
+ {
15646
+ "type": "string"
15647
+ }
15648
+ ],
15649
+ "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."
15650
+ },
15651
+ "description": {
15652
+ "$ref": "__type",
15653
+ "description": "Text description of the individual presentation slide."
15654
+ },
15655
+ "environment": {
15656
+ "$ref": "#/definitions/esri.rest-api.EnvironmentJson.EnvironmentJson",
15657
+ "description": "Represents settings that affect the environment in which the WebScene is displayed (such as lighting)."
15658
+ },
15659
+ "extent": {
15660
+ "$ref": "#/definitions/esri.rest-api.GeometryJson.ExtentJson",
15661
+ "description": "The standard Esri extent object with spatialReference, xmax, xmin, ymax and ymin. [WebMap Only]."
15662
+ },
15663
+ "hidden": {
15664
+ "description": "Indicates whether the slide should be hidden within the presentation. [WebMap Only].",
15665
+ "type": "boolean"
15666
+ },
15667
+ "id": {
15668
+ "description": "The unique id of a slide within the slides property of a Presentation.",
15669
+ "type": "string"
15670
+ },
15671
+ "mapLocation": {
15672
+ "$ref": "__type",
15673
+ "description": "An object with a centerPoint object and sometimes a resolution. [WebMap Only] {@link https://developers.arcgis.com/web-map-specification/objects/mapLocation/}."
15674
+ },
15675
+ "thumbnail": {
15676
+ "$ref": "__type",
15677
+ "description": "A data URI encoded thumbnail. See {@link https://developers.arcgis.com/web-scene-specification/objects/thumbnail/}."
15678
+ },
15679
+ "timeExtent": {
15680
+ "description": "An array of two numbers. The first one indicates start time and the second one indicates end time. [WebMap Only].",
15681
+ "items": {
15682
+ "type": "number"
15683
+ },
15684
+ "type": "array"
15685
+ },
15686
+ "title": {
15687
+ "$ref": "__type",
15688
+ "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/}."
15689
+ },
15690
+ "viewpoint": {
15691
+ "$ref": "#/definitions/esri.rest-api.ViewpointJson.ViewpointJson",
15692
+ "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."
15693
+ },
15694
+ "visibleLayers": {
15695
+ "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/}.",
15696
+ "items": {
15697
+ "$ref": "__type"
15698
+ },
15699
+ "type": "array"
15700
+ },
15701
+ "visiblePopup": {
15702
+ "$ref": "__type",
15703
+ "description": "A presentation slide's visiblePopup which contains anchorPoint, featureId, layerId, and subLayerId. See {@link https://developers.arcgis.com/web-map-specification/objects/visiblePopup/}."
15704
+ }
15705
+ },
15706
+ "type": "object"
15707
+ },
15708
+ "esri.rest-api.WebMapJson.TimeSliderJson": {
15709
+ "additionalProperties": false,
15710
+ "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/}.",
15711
+ "properties": {
15712
+ "properties": {
15713
+ "$ref": "__type",
15714
+ "description": "Properties for the time slider."
15715
+ }
15716
+ },
15717
+ "required": [
15718
+ "properties"
15719
+ ],
15720
+ "type": "object"
15721
+ },
15722
+ "esri.rest-api.WebMapJson.TraceConfigurationJson": {
15723
+ "additionalProperties": false,
15724
+ "description": "An array of pre-configured trace configurations for quickly running common traces. See {@link https://developers.arcgis.com/web-map-specification/objects/traceConfiguration/}.",
15725
+ "properties": {
15726
+ "id": {
15727
+ "description": "A unique identifying string for the trace configuration.",
15728
+ "type": "string"
15729
+ },
15730
+ "title": {
15731
+ "description": "A user-friendly string title for the trace configuration that can be used in a table of contents.",
15732
+ "type": "string"
15733
+ }
15734
+ },
15735
+ "type": "object"
15736
+ },
15737
+ "esri.rest-api.WebMapJson.UtilityNetworkJson": {
15738
+ "additionalProperties": false,
15739
+ "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/}.",
15740
+ "properties": {
15741
+ "id": {
15742
+ "description": "A unique identifying string for the utility network.",
15743
+ "type": "string"
15744
+ },
15745
+ "title": {
15746
+ "description": "A user-friendly string title for the utility network that can be used in a table of contents.",
15747
+ "type": "string"
15748
+ },
15749
+ "traceConfigurations": {
15750
+ "description": "An array of pre-configured trace configurations for quickly running common traces.",
15751
+ "items": {
15752
+ "$ref": "#/definitions/esri.rest-api.WebMapJson.TraceConfigurationJson"
15753
+ },
15754
+ "type": "array"
15755
+ },
15756
+ "url": {
15757
+ "description": "A string value indicating the URL to the utility network layer.",
15758
+ "type": "string"
15759
+ }
15760
+ },
15761
+ "type": "object"
15762
+ },
15763
+ "esri.rest-api.WebMapJson.WebMapJson": {
15764
+ "additionalProperties": false,
15765
+ "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/}.",
15766
+ "properties": {
15767
+ "applicationProperties": {
15768
+ "$ref": "#/definitions/esri.rest-api.WebMapJson.ApplicationPropertiesJson",
15769
+ "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."
15770
+ },
15771
+ "authoringApp": {
15772
+ "description": "String value indicating the application which authored the webmap.",
15773
+ "type": "string"
15774
+ },
15775
+ "authoringAppVersion": {
15776
+ "description": "String value indicating the authoring App's version number.",
15777
+ "type": "string"
15778
+ },
15779
+ "background": {
15780
+ "$ref": "#/definitions/esri.rest-api.EnvironmentJson.ColorBackgroundJson",
15781
+ "description": "The background."
15782
+ },
15783
+ "baseMap": {
15784
+ "$ref": "#/definitions/esri.rest-api.BasemapJson.BasemapJson",
15785
+ "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."
15786
+ },
15787
+ "bookmarks": {
15788
+ "description": "Bookmarks that are saved with the map.",
15789
+ "items": {
15790
+ "$ref": "#/definitions/esri.rest-api.WebMapJson.BookmarkJson"
15791
+ },
15792
+ "type": "array"
15793
+ },
15794
+ "initialState": {
15795
+ "$ref": "#/definitions/esri.rest-api.WebMapJson.InitialStateJson",
15796
+ "description": "The initial state at which to open the map."
15797
+ },
15798
+ "mapFloorInfo": {
15799
+ "$ref": "#/definitions/esri.rest-api.WebMapJson.MapFloorInfoJson",
15800
+ "description": "Contains floor-awareness information for the map."
15801
+ },
15802
+ "mapRangeInfo": {
15803
+ "$ref": "#/definitions/esri.rest-api.WebMapJson.MapRangeInfoJson",
15804
+ "description": "Map range information."
15805
+ },
15806
+ "operationalLayers": {
15807
+ "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/}.",
15808
+ "items": {
15809
+ "$ref": "#/definitions/OperationalLayerJson"
15810
+ },
15811
+ "type": "array"
15812
+ },
15813
+ "presentation": {
15814
+ "$ref": "#/definitions/esri.rest-api.WebMapJson.PresentationJson",
15815
+ "description": "A presentation consists of multiple slides. Each slide has a different title, extent, basemap, layers etc."
15816
+ },
15817
+ "spatialReference": {
15818
+ "$ref": "#/definitions/esri.rest-api.SpatialReferenceJson.SpatialReferenceJson",
15819
+ "description": "An object used to specify the spatial reference of the given geometry."
15820
+ },
15821
+ "tables": {
15822
+ "description": "Specify an array of table objects.",
15823
+ "items": {
15824
+ "$ref": "#/definitions/esri.rest-api.TableJson.TableJson"
15825
+ },
15826
+ "type": "array"
15827
+ },
15828
+ "timeZone": {
15829
+ "description": "TODO: Not yet documented in web map spec, but present in 2.29 web maps generated by Maps SDK 4.28.",
15830
+ "type": "string"
15831
+ },
15832
+ "utilityNetworks": {
15833
+ "description": "An array of utility network objects the map can use to access utility-related functionality, such as tracing and querying associations.",
15834
+ "items": {
15835
+ "$ref": "#/definitions/esri.rest-api.WebMapJson.UtilityNetworkJson"
15836
+ },
15837
+ "type": "array"
15838
+ },
15839
+ "version": {
15840
+ "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/}.",
15841
+ "type": "string"
15842
+ },
15843
+ "widgets": {
15844
+ "$ref": "#/definitions/esri.rest-api.WebMapJson.WidgetsJson",
15845
+ "description": "The widgets object contains widgets that should be exposed to the user."
15846
+ }
15847
+ },
15848
+ "required": [
15849
+ "baseMap",
15850
+ "spatialReference",
15851
+ "version"
15852
+ ],
15853
+ "type": "object"
15854
+ },
15855
+ "esri.rest-api.WebMapJson.WidgetsJson": {
15856
+ "additionalProperties": false,
15857
+ "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/}.",
15858
+ "properties": {
15859
+ "floorFilter": {
15860
+ "$ref": "#/definitions/esri.rest-api.WebMapJson.FloorFilterJson",
15861
+ "description": "Configurable properties used by the floor filter widget."
15862
+ },
15863
+ "range": {
15864
+ "$ref": "#/definitions/esri.rest-api.WebMapJson.RangeJson",
15865
+ "description": "Active range."
15866
+ },
15867
+ "timeSlider": {
15868
+ "$ref": "#/definitions/esri.rest-api.WebMapJson.TimeSliderJson",
15869
+ "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."
15870
+ }
15871
+ },
15872
+ "type": "object"
15873
+ },
15874
+ "esri.rest-api.WebSceneJson.HeightModelInfoJson": {
15875
+ "additionalProperties": false,
15876
+ "description": "An object that defines the characteristics of the vertical coordinate system used by the web scene.",
15877
+ "properties": {
15878
+ "heightModel": {
15879
+ "description": "The surface type or height model of the vertical coordinate system.",
15880
+ "enum": [
15881
+ "ellipsoidal",
15882
+ "gravity_related_height"
15883
+ ],
15884
+ "type": "string"
15885
+ },
15886
+ "heightUnit": {
15887
+ "description": "The unit of the vertical coordinate system.",
15888
+ "enum": [
15889
+ "150-kilometers",
15890
+ "50-kilometers",
15891
+ "benoit-1895-b-chain",
15892
+ "clarke-foot",
15893
+ "clarke-link",
15894
+ "clarke-yard",
15895
+ "foot",
15896
+ "gold-coast-foot",
15897
+ "indian-1937-yard",
15898
+ "indian-yard",
15899
+ "meter",
15900
+ "sears-1922-truncated-chain",
15901
+ "sears-chain",
15902
+ "sears-foot",
15903
+ "sears-yard",
15904
+ "us-foot"
15905
+ ],
15906
+ "type": "string"
15907
+ },
15908
+ "vertCRS": {
15909
+ "description": "The datum realization of the vertical coordinate system.",
15910
+ "type": "string"
15911
+ }
15912
+ },
15913
+ "required": [
15914
+ "heightModel",
15915
+ "heightUnit"
15916
+ ],
15917
+ "type": "object"
15918
+ },
15919
+ "esri.rest-api.WebSceneJson.WebSceneJson": {
15920
+ "additionalProperties": false,
15921
+ "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/}.",
15922
+ "properties": {
15923
+ "applicationProperties": {
15924
+ "$ref": "#/definitions/esri.rest-api.WebMapJson.ApplicationPropertiesJson",
15925
+ "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."
15926
+ },
15927
+ "authoringApp": {
15928
+ "description": "String value indicating the application which authored the webmap.",
15929
+ "type": "string"
15930
+ },
15931
+ "authoringAppVersion": {
15932
+ "description": "String value indicating the authoring App's version number.",
15933
+ "type": "string"
15934
+ },
15935
+ "baseMap": {
15936
+ "$ref": "#/definitions/esri.rest-api.BasemapJson.BasemapJson",
15937
+ "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."
15938
+ },
15939
+ "clippingArea": {
15940
+ "$ref": "__type",
15941
+ "description": "Defines are to be clipped for display. See {@link https://developers.arcgis.com/web-scene-specification/objects/clippingArea/}."
15942
+ },
15943
+ "ground": {
15944
+ "$ref": "#/definitions/esri.rest-api.GroundJson.GroundJson",
15945
+ "description": "Ground defines the main surface of the web scene, based on elevation layers."
15946
+ },
15947
+ "heightModelInfo": {
15948
+ "$ref": "#/definitions/esri.rest-api.WebSceneJson.HeightModelInfoJson",
15949
+ "description": "An object that defines the characteristics of the vertical coordinate system used by the web scene."
15950
+ },
15951
+ "initialState": {
15952
+ "$ref": "#/definitions/esri.rest-api.WebMapJson.InitialStateJson",
15953
+ "description": "The initial state at which to open the map."
15954
+ },
15955
+ "mapFloorInfo": {
15956
+ "$ref": "#/definitions/esri.rest-api.WebMapJson.MapFloorInfoJson",
15957
+ "description": "Contains floor-awareness information for the map."
15958
+ },
15959
+ "mapRangeInfo": {
15960
+ "$ref": "#/definitions/esri.rest-api.WebMapJson.MapRangeInfoJson",
15961
+ "description": "Map range information."
15962
+ },
15963
+ "operationalLayers": {
15964
+ "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/}.",
15965
+ "items": {
15966
+ "$ref": "#/definitions/OperationalLayerJson"
15967
+ },
15968
+ "type": "array"
15969
+ },
15970
+ "presentation": {
15971
+ "$ref": "#/definitions/esri.rest-api.WebMapJson.PresentationJson",
15972
+ "description": "A presentation consists of multiple slides. Each slide has a different title, extent, basemap, layers etc."
15973
+ },
15974
+ "spatialReference": {
15975
+ "$ref": "#/definitions/esri.rest-api.SpatialReferenceJson.SpatialReferenceJson",
15976
+ "description": "An object used to specify the spatial reference of the given geometry."
15977
+ },
15978
+ "tables": {
15979
+ "description": "Specify an array of table objects.",
15980
+ "items": {
15981
+ "$ref": "#/definitions/esri.rest-api.TableJson.TableJson"
15982
+ },
15983
+ "type": "array"
15984
+ },
15985
+ "timeZone": {
15986
+ "description": "TODO: Not yet documented in web map spec, but present in 2.29 web maps generated by Maps SDK 4.28.",
15987
+ "type": "string"
15988
+ },
15989
+ "version": {
15990
+ "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/}.",
15991
+ "type": "string"
15992
+ },
15993
+ "viewingMode": {
15994
+ "description": "Must be one of the following values: \"global\" | \"local\".",
15995
+ "enum": [
15996
+ "global",
15997
+ "local"
15998
+ ],
15999
+ "type": "string"
16000
+ },
16001
+ "widgets": {
16002
+ "$ref": "#/definitions/esri.rest-api.WebMapJson.WidgetsJson",
16003
+ "description": "The widgets object contains widgets that should be exposed to the user."
16004
+ }
16005
+ },
16006
+ "required": [
16007
+ "baseMap",
16008
+ "spatialReference",
16009
+ "version"
16010
+ ],
16011
+ "type": "object"
16012
+ },
14254
16013
  "esri.rest-api.WebTileLayerJson.TileInfoJson": {
14255
16014
  "additionalProperties": false,
14256
16015
  "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/}.",