@vertigis/viewer-spec 56.32.0 → 56.33.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.
@@ -544,6 +544,10 @@
544
544
  "title": {
545
545
  "description": "The layer's title.",
546
546
  "type": "string"
547
+ },
548
+ "url": {
549
+ "description": "The layer's url.",
550
+ "type": "string"
547
551
  }
548
552
  },
549
553
  "type": "object"
@@ -2588,6 +2592,9 @@
2588
2592
  {
2589
2593
  "$ref": "#/definitions/esri.rest-api.WebTileLayerJson.WebTileLayerJson"
2590
2594
  },
2595
+ {
2596
+ "$ref": "#/definitions/esri.rest-api.WFSLayerJson.WFSLayerJson"
2597
+ },
2591
2598
  {
2592
2599
  "$ref": "#/definitions/esri.rest-api.WMSLayerJson.WMSLayerJson"
2593
2600
  }
@@ -3009,7 +3016,25 @@
3009
3016
  },
3010
3017
  {
3011
3018
  "additionalProperties": false,
3012
- "properties": {}
3019
+ "properties": {
3020
+ "activate": {
3021
+ "description": "Whether to activate the component showing the results of the operation. False by default.",
3022
+ "type": "boolean"
3023
+ },
3024
+ "features": {
3025
+ "$ref": "#/definitions/FeaturesLike",
3026
+ "description": "Features to use for the command/operation."
3027
+ },
3028
+ "results": {
3029
+ "$ref": "#/definitions/ModelRef",
3030
+ "description": "The result component to update, referenced by results model or its ID. Web only."
3031
+ },
3032
+ "resultsSetId": {
3033
+ "description": "If specified the results will be updated in the named results set only. Results sets with the prefix 'vgs' are reserved for system use and should not be used unless you are intentionally targeting a well known results set such as the 'vgs-starred' results. Web only.",
3034
+ "type": "string"
3035
+ }
3036
+ },
3037
+ "type": "object"
3013
3038
  }
3014
3039
  ],
3015
3040
  "description": "Arguments for various commands that manipulate the current set of shown results."
@@ -4581,6 +4606,10 @@
4581
4606
  "description": "A unique identifying string for the layer.",
4582
4607
  "type": "string"
4583
4608
  },
4609
+ "itemId": {
4610
+ "description": "Optional string containing the item ID of the service if it's registered on ArcGIS Online or your organization's portal.",
4611
+ "type": "string"
4612
+ },
4584
4613
  "layerDefinition": {
4585
4614
  "$ref": "#/definitions/esri.rest-api.LayerDefinitionJson.LayerDefinitionJson",
4586
4615
  "description": "A layerDefinition object defining the attribute schema and drawing information for the layer."
@@ -11150,9 +11179,6 @@
11150
11179
  "type": "number"
11151
11180
  }
11152
11181
  },
11153
- "required": [
11154
- "color"
11155
- ],
11156
11182
  "type": "object"
11157
11183
  },
11158
11184
  "esri.rest-api.SymbolJson.CIMSymbolJson": {
@@ -11197,8 +11223,6 @@
11197
11223
  }
11198
11224
  },
11199
11225
  "required": [
11200
- "color",
11201
- "size",
11202
11226
  "type"
11203
11227
  ],
11204
11228
  "type": "object"
@@ -11486,9 +11510,6 @@
11486
11510
  "type": "number"
11487
11511
  }
11488
11512
  },
11489
- "required": [
11490
- "color"
11491
- ],
11492
11513
  "type": "object"
11493
11514
  },
11494
11515
  "esri.rest-api.SymbolJson.MeshSymbol3DJson": {
@@ -11520,8 +11541,26 @@
11520
11541
  "properties": {
11521
11542
  "anchor": {
11522
11543
  "description": "The positioning of the object relative to the geometry. Must be one of the following values: center, bottom, origin.",
11544
+ "enum": [
11545
+ "bottom",
11546
+ "center",
11547
+ "origin",
11548
+ "relative",
11549
+ "top"
11550
+ ],
11523
11551
  "type": "string"
11524
11552
  },
11553
+ "anchorPosition": {
11554
+ "description": "When anchor equals \"relative\", this property specifies the positioning of the object relative to the geometry as a fraction of the symbol layer's bounding box. Otherwise it is ignored.",
11555
+ "items": {
11556
+ "type": "number"
11557
+ },
11558
+ "type": "array"
11559
+ },
11560
+ "castShadows": {
11561
+ "description": "Boolean to control the shadow casting behavior of the rendered geometries.",
11562
+ "type": "boolean"
11563
+ },
11525
11564
  "depth": {
11526
11565
  "description": "Object depth in meters, positive only.",
11527
11566
  "type": "number"
@@ -11582,10 +11621,6 @@
11582
11621
  "type": "number"
11583
11622
  }
11584
11623
  },
11585
- "required": [
11586
- "color",
11587
- "size"
11588
- ],
11589
11624
  "type": "object"
11590
11625
  },
11591
11626
  "esri.rest-api.SymbolJson.PathSymbol3DLayerJson": {
@@ -12788,6 +12823,189 @@
12788
12823
  },
12789
12824
  "type": "object"
12790
12825
  },
12826
+ "esri.rest-api.WFSLayerJson.WFSInfoJson": {
12827
+ "additionalProperties": false,
12828
+ "description": "Object that defines and provides information about layers in a WFS service. See {@link https://developers.arcgis.com/web-map-specification/objects/wfsInfo/}.",
12829
+ "properties": {
12830
+ "customParameters": {
12831
+ "description": "A sequence of parameters used to append custom parameters to all WFS requests. These parameters are applied to GetCapabilities, DescribeFeatureType, and GetFeatures."
12832
+ },
12833
+ "featureUrl": {
12834
+ "description": "URL of the WFS service operation.",
12835
+ "type": "string"
12836
+ },
12837
+ "maxFeatures": {
12838
+ "description": "Set this to limit the number of requested features that a GetFeature request presents.",
12839
+ "type": "number"
12840
+ },
12841
+ "name": {
12842
+ "description": "The name of the WFS layer. This is used to set layer visibility.",
12843
+ "type": "string"
12844
+ },
12845
+ "supportedSpatialReferences": {
12846
+ "description": "List of supported spatial reference IDs.",
12847
+ "items": {
12848
+ "type": "number"
12849
+ },
12850
+ "type": "array"
12851
+ },
12852
+ "swapXY": {
12853
+ "description": "Boolean value indicating whether X and Y axis are flipped.",
12854
+ "type": "boolean"
12855
+ },
12856
+ "version": {
12857
+ "description": "Value indicating which version of the WFS specification is used.",
12858
+ "type": "string"
12859
+ },
12860
+ "wfsNamespace": {
12861
+ "description": "String indicating namespace.",
12862
+ "type": "string"
12863
+ }
12864
+ },
12865
+ "type": "object"
12866
+ },
12867
+ "esri.rest-api.WFSLayerJson.WFSLayerJson": {
12868
+ "additionalProperties": false,
12869
+ "description": "OGC Web Feature Service (WFS) is a dynamic feature service that follows the specifications of OGC. See {@link https://developers.arcgis.com/web-map-specification/objects/wfsLayer/} and {@link https://developers.arcgis.com/web-scene-specification/objects/wfsLayer/}.",
12870
+ "properties": {
12871
+ "blendMode": {
12872
+ "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.",
12873
+ "enum": [
12874
+ "average",
12875
+ "color",
12876
+ "color-burn",
12877
+ "color-dodge",
12878
+ "darken",
12879
+ "destination-atop",
12880
+ "destination-in",
12881
+ "destination-out",
12882
+ "destination-over",
12883
+ "difference",
12884
+ "exclusion",
12885
+ "hard-light",
12886
+ "hue",
12887
+ "invert",
12888
+ "lighten",
12889
+ "lighter",
12890
+ "luminosity",
12891
+ "minus",
12892
+ "multiply",
12893
+ "normal",
12894
+ "overlay",
12895
+ "plus",
12896
+ "reflect",
12897
+ "saturation",
12898
+ "screen",
12899
+ "soft-light",
12900
+ "source-atop",
12901
+ "source-in",
12902
+ "source-out",
12903
+ "vivid-light",
12904
+ "xor"
12905
+ ],
12906
+ "type": "string"
12907
+ },
12908
+ "disablePopup": {
12909
+ "description": "Indicates whether to allow a client to ignore popups defined by the service item.",
12910
+ "type": "boolean"
12911
+ },
12912
+ "effect": {
12913
+ "$ref": "#/definitions/esri.rest-api.LayerJson.EffectJson",
12914
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
12915
+ },
12916
+ "id": {
12917
+ "description": "A unique identifying string for the layer.",
12918
+ "type": "string"
12919
+ },
12920
+ "itemId": {
12921
+ "description": "Optional string containing the item ID of the service if it's registered on ArcGIS Online or your organization's portal.",
12922
+ "type": "string"
12923
+ },
12924
+ "layerDefinition": {
12925
+ "$ref": "#/definitions/esri.rest-api.LayerDefinitionJson.LayerDefinitionJson",
12926
+ "description": "A layerDefinition object defining the attribute schema and drawing information for the layer."
12927
+ },
12928
+ "layerType": {
12929
+ "const": "WFS",
12930
+ "description": "The type of layer.",
12931
+ "type": "string"
12932
+ },
12933
+ "listMode": {
12934
+ "$ref": "esri.ListMode",
12935
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
12936
+ },
12937
+ "maxScale": {
12938
+ "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.",
12939
+ "type": "number"
12940
+ },
12941
+ "minScale": {
12942
+ "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.",
12943
+ "type": "number"
12944
+ },
12945
+ "mode": {
12946
+ "description": "Number where 0 means 'snapshot' and 1 means 'ondemand'.",
12947
+ "enum": [
12948
+ 0,
12949
+ 1
12950
+ ],
12951
+ "type": "number"
12952
+ },
12953
+ "opacity": {
12954
+ "description": "The degree of transparency applied to the layer on the client side, where 0 is full transparency and 1 is no transparency.",
12955
+ "type": "number"
12956
+ },
12957
+ "popupInfo": {
12958
+ "$ref": "#/definitions/esri.rest-api.PopupInfoJson.PopupInfoJson",
12959
+ "description": "A PopupInfo object defining the content of pop-up windows when you click or query a feature."
12960
+ },
12961
+ "refreshInterval": {
12962
+ "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}.",
12963
+ "type": "number"
12964
+ },
12965
+ "showLabels": {
12966
+ "description": "Indicates whether to display labels for this layer. If true, labels will appear as defined in the labelingInfo property.",
12967
+ "type": "boolean"
12968
+ },
12969
+ "showLegend": {
12970
+ "description": "Indicates whether to allow map authors the ability to control what layers should be shown in a client's legend.",
12971
+ "type": "boolean"
12972
+ },
12973
+ "title": {
12974
+ "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.",
12975
+ "type": "string"
12976
+ },
12977
+ "type": {
12978
+ "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.",
12979
+ "enum": [
12980
+ "BingMapsAerial",
12981
+ "BingMapsHybrid",
12982
+ "BingMapsRoad",
12983
+ "CSV",
12984
+ "KML",
12985
+ "OpenStreetMap",
12986
+ "WMS",
12987
+ "WebTiledLayer"
12988
+ ],
12989
+ "type": "string"
12990
+ },
12991
+ "url": {
12992
+ "description": "The URL to the layer. If the layer is not from a web service but rather a feature collection, than the url property is omitted.",
12993
+ "type": "string"
12994
+ },
12995
+ "visibility": {
12996
+ "description": "Determines whether the layer is initially visible in the web map.",
12997
+ "type": "boolean"
12998
+ },
12999
+ "wfsInfo": {
13000
+ "$ref": "#/definitions/esri.rest-api.WFSLayerJson.WFSInfoJson",
13001
+ "description": "Object that defines and provides information about layers in a WFS service."
13002
+ }
13003
+ },
13004
+ "required": [
13005
+ "layerType"
13006
+ ],
13007
+ "type": "object"
13008
+ },
12791
13009
  "esri.rest-api.WMSLayerJson.WMSLayerJson": {
12792
13010
  "additionalProperties": false,
12793
13011
  "description": "A layer consuming a Web Map Service (WMS). The WMS specification is an international specification for serving and consuming dynamic maps on the web. For additional information on publishing WMS services, please see the ArcGIS Server help. See {@link https://developers.arcgis.com/web-map-specification/objects/wmsLayer/}.",
@@ -274,6 +274,9 @@
274
274
  {
275
275
  "$ref": "#/definitions/esri.rest-api.WebTileLayerJson.WebTileLayerJson"
276
276
  },
277
+ {
278
+ "$ref": "#/definitions/esri.rest-api.WFSLayerJson.WFSLayerJson"
279
+ },
277
280
  {
278
281
  "$ref": "#/definitions/esri.rest-api.WMSLayerJson.WMSLayerJson"
279
282
  }
@@ -1114,6 +1117,10 @@
1114
1117
  "description": "A unique identifying string for the layer.",
1115
1118
  "type": "string"
1116
1119
  },
1120
+ "itemId": {
1121
+ "description": "Optional string containing the item ID of the service if it's registered on ArcGIS Online or your organization's portal.",
1122
+ "type": "string"
1123
+ },
1117
1124
  "layerDefinition": {
1118
1125
  "$ref": "#/definitions/esri.rest-api.LayerDefinitionJson.LayerDefinitionJson",
1119
1126
  "description": "A layerDefinition object defining the attribute schema and drawing information for the layer."
@@ -7458,9 +7465,6 @@
7458
7465
  "type": "number"
7459
7466
  }
7460
7467
  },
7461
- "required": [
7462
- "color"
7463
- ],
7464
7468
  "type": "object"
7465
7469
  },
7466
7470
  "esri.rest-api.SymbolJson.CIMSymbolJson": {
@@ -7505,8 +7509,6 @@
7505
7509
  }
7506
7510
  },
7507
7511
  "required": [
7508
- "color",
7509
- "size",
7510
7512
  "type"
7511
7513
  ],
7512
7514
  "type": "object"
@@ -7794,9 +7796,6 @@
7794
7796
  "type": "number"
7795
7797
  }
7796
7798
  },
7797
- "required": [
7798
- "color"
7799
- ],
7800
7799
  "type": "object"
7801
7800
  },
7802
7801
  "esri.rest-api.SymbolJson.MeshSymbol3DJson": {
@@ -7828,8 +7827,26 @@
7828
7827
  "properties": {
7829
7828
  "anchor": {
7830
7829
  "description": "The positioning of the object relative to the geometry. Must be one of the following values: center, bottom, origin.",
7830
+ "enum": [
7831
+ "bottom",
7832
+ "center",
7833
+ "origin",
7834
+ "relative",
7835
+ "top"
7836
+ ],
7831
7837
  "type": "string"
7832
7838
  },
7839
+ "anchorPosition": {
7840
+ "description": "When anchor equals \"relative\", this property specifies the positioning of the object relative to the geometry as a fraction of the symbol layer's bounding box. Otherwise it is ignored.",
7841
+ "items": {
7842
+ "type": "number"
7843
+ },
7844
+ "type": "array"
7845
+ },
7846
+ "castShadows": {
7847
+ "description": "Boolean to control the shadow casting behavior of the rendered geometries.",
7848
+ "type": "boolean"
7849
+ },
7833
7850
  "depth": {
7834
7851
  "description": "Object depth in meters, positive only.",
7835
7852
  "type": "number"
@@ -7890,10 +7907,6 @@
7890
7907
  "type": "number"
7891
7908
  }
7892
7909
  },
7893
- "required": [
7894
- "color",
7895
- "size"
7896
- ],
7897
7910
  "type": "object"
7898
7911
  },
7899
7912
  "esri.rest-api.SymbolJson.PathSymbol3DLayerJson": {
@@ -9051,6 +9064,189 @@
9051
9064
  ],
9052
9065
  "type": "object"
9053
9066
  },
9067
+ "esri.rest-api.WFSLayerJson.WFSInfoJson": {
9068
+ "additionalProperties": false,
9069
+ "description": "Object that defines and provides information about layers in a WFS service. See {@link https://developers.arcgis.com/web-map-specification/objects/wfsInfo/}.",
9070
+ "properties": {
9071
+ "customParameters": {
9072
+ "description": "A sequence of parameters used to append custom parameters to all WFS requests. These parameters are applied to GetCapabilities, DescribeFeatureType, and GetFeatures."
9073
+ },
9074
+ "featureUrl": {
9075
+ "description": "URL of the WFS service operation.",
9076
+ "type": "string"
9077
+ },
9078
+ "maxFeatures": {
9079
+ "description": "Set this to limit the number of requested features that a GetFeature request presents.",
9080
+ "type": "number"
9081
+ },
9082
+ "name": {
9083
+ "description": "The name of the WFS layer. This is used to set layer visibility.",
9084
+ "type": "string"
9085
+ },
9086
+ "supportedSpatialReferences": {
9087
+ "description": "List of supported spatial reference IDs.",
9088
+ "items": {
9089
+ "type": "number"
9090
+ },
9091
+ "type": "array"
9092
+ },
9093
+ "swapXY": {
9094
+ "description": "Boolean value indicating whether X and Y axis are flipped.",
9095
+ "type": "boolean"
9096
+ },
9097
+ "version": {
9098
+ "description": "Value indicating which version of the WFS specification is used.",
9099
+ "type": "string"
9100
+ },
9101
+ "wfsNamespace": {
9102
+ "description": "String indicating namespace.",
9103
+ "type": "string"
9104
+ }
9105
+ },
9106
+ "type": "object"
9107
+ },
9108
+ "esri.rest-api.WFSLayerJson.WFSLayerJson": {
9109
+ "additionalProperties": false,
9110
+ "description": "OGC Web Feature Service (WFS) is a dynamic feature service that follows the specifications of OGC. See {@link https://developers.arcgis.com/web-map-specification/objects/wfsLayer/} and {@link https://developers.arcgis.com/web-scene-specification/objects/wfsLayer/}.",
9111
+ "properties": {
9112
+ "blendMode": {
9113
+ "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.",
9114
+ "enum": [
9115
+ "average",
9116
+ "color",
9117
+ "color-burn",
9118
+ "color-dodge",
9119
+ "darken",
9120
+ "destination-atop",
9121
+ "destination-in",
9122
+ "destination-out",
9123
+ "destination-over",
9124
+ "difference",
9125
+ "exclusion",
9126
+ "hard-light",
9127
+ "hue",
9128
+ "invert",
9129
+ "lighten",
9130
+ "lighter",
9131
+ "luminosity",
9132
+ "minus",
9133
+ "multiply",
9134
+ "normal",
9135
+ "overlay",
9136
+ "plus",
9137
+ "reflect",
9138
+ "saturation",
9139
+ "screen",
9140
+ "soft-light",
9141
+ "source-atop",
9142
+ "source-in",
9143
+ "source-out",
9144
+ "vivid-light",
9145
+ "xor"
9146
+ ],
9147
+ "type": "string"
9148
+ },
9149
+ "disablePopup": {
9150
+ "description": "Indicates whether to allow a client to ignore popups defined by the service item.",
9151
+ "type": "boolean"
9152
+ },
9153
+ "effect": {
9154
+ "$ref": "#/definitions/esri.rest-api.LayerJson.EffectJson",
9155
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
9156
+ },
9157
+ "id": {
9158
+ "description": "A unique identifying string for the layer.",
9159
+ "type": "string"
9160
+ },
9161
+ "itemId": {
9162
+ "description": "Optional string containing the item ID of the service if it's registered on ArcGIS Online or your organization's portal.",
9163
+ "type": "string"
9164
+ },
9165
+ "layerDefinition": {
9166
+ "$ref": "#/definitions/esri.rest-api.LayerDefinitionJson.LayerDefinitionJson",
9167
+ "description": "A layerDefinition object defining the attribute schema and drawing information for the layer."
9168
+ },
9169
+ "layerType": {
9170
+ "const": "WFS",
9171
+ "description": "The type of layer.",
9172
+ "type": "string"
9173
+ },
9174
+ "listMode": {
9175
+ "$ref": "esri.ListMode",
9176
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}."
9177
+ },
9178
+ "maxScale": {
9179
+ "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.",
9180
+ "type": "number"
9181
+ },
9182
+ "minScale": {
9183
+ "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.",
9184
+ "type": "number"
9185
+ },
9186
+ "mode": {
9187
+ "description": "Number where 0 means 'snapshot' and 1 means 'ondemand'.",
9188
+ "enum": [
9189
+ 0,
9190
+ 1
9191
+ ],
9192
+ "type": "number"
9193
+ },
9194
+ "opacity": {
9195
+ "description": "The degree of transparency applied to the layer on the client side, where 0 is full transparency and 1 is no transparency.",
9196
+ "type": "number"
9197
+ },
9198
+ "popupInfo": {
9199
+ "$ref": "#/definitions/esri.rest-api.PopupInfoJson.PopupInfoJson",
9200
+ "description": "A PopupInfo object defining the content of pop-up windows when you click or query a feature."
9201
+ },
9202
+ "refreshInterval": {
9203
+ "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}.",
9204
+ "type": "number"
9205
+ },
9206
+ "showLabels": {
9207
+ "description": "Indicates whether to display labels for this layer. If true, labels will appear as defined in the labelingInfo property.",
9208
+ "type": "boolean"
9209
+ },
9210
+ "showLegend": {
9211
+ "description": "Indicates whether to allow map authors the ability to control what layers should be shown in a client's legend.",
9212
+ "type": "boolean"
9213
+ },
9214
+ "title": {
9215
+ "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.",
9216
+ "type": "string"
9217
+ },
9218
+ "type": {
9219
+ "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.",
9220
+ "enum": [
9221
+ "BingMapsAerial",
9222
+ "BingMapsHybrid",
9223
+ "BingMapsRoad",
9224
+ "CSV",
9225
+ "KML",
9226
+ "OpenStreetMap",
9227
+ "WMS",
9228
+ "WebTiledLayer"
9229
+ ],
9230
+ "type": "string"
9231
+ },
9232
+ "url": {
9233
+ "description": "The URL to the layer. If the layer is not from a web service but rather a feature collection, than the url property is omitted.",
9234
+ "type": "string"
9235
+ },
9236
+ "visibility": {
9237
+ "description": "Determines whether the layer is initially visible in the web map.",
9238
+ "type": "boolean"
9239
+ },
9240
+ "wfsInfo": {
9241
+ "$ref": "#/definitions/esri.rest-api.WFSLayerJson.WFSInfoJson",
9242
+ "description": "Object that defines and provides information about layers in a WFS service."
9243
+ }
9244
+ },
9245
+ "required": [
9246
+ "layerType"
9247
+ ],
9248
+ "type": "object"
9249
+ },
9054
9250
  "esri.rest-api.WMSLayerJson.WMSLayerJson": {
9055
9251
  "additionalProperties": false,
9056
9252
  "description": "A layer consuming a Web Map Service (WMS). The WMS specification is an international specification for serving and consuming dynamic maps on the web. For additional information on publishing WMS services, please see the ArcGIS Server help. See {@link https://developers.arcgis.com/web-map-specification/objects/wmsLayer/}.",