@vertigis/viewer-spec 59.5.0 → 59.6.1

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.
@@ -3376,25 +3376,6 @@
3376
3376
  ],
3377
3377
  "description": "One or more objects that are convertible to layer extensions."
3378
3378
  },
3379
- "LayoutExportFormats": {
3380
- "description": "The export formats allowed for the layout print.",
3381
- "enum": [
3382
- "AIX",
3383
- "BMP",
3384
- "EPS",
3385
- "GIF",
3386
- "JPG",
3387
- "MF",
3388
- "PDF",
3389
- "PNG",
3390
- "PNG32",
3391
- "SVG",
3392
- "SVGZ",
3393
- "TGA",
3394
- "TIFF"
3395
- ],
3396
- "type": "string"
3397
- },
3398
3379
  "LengthUnitsMobile": {
3399
3380
  "description": "The units for distance supported by Mobile.",
3400
3381
  "enum": [
@@ -3839,6 +3820,9 @@
3839
3820
  {
3840
3821
  "$ref": "#/definitions/esri.rest-api.KMLLayerJson.KMLLayerJson"
3841
3822
  },
3823
+ {
3824
+ "$ref": "#/definitions/esri.rest-api.MediaLayerJson.MediaLayerJson"
3825
+ },
3842
3826
  {
3843
3827
  "$ref": "#/definitions/esri.rest-api.MapServiceLayerJson.MapServiceLayerJson"
3844
3828
  },
@@ -3911,6 +3895,25 @@
3911
3895
  ],
3912
3896
  "description": "Filters applied to the pointCloud which will hide a point.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/pointCloudFilter/}."
3913
3897
  },
3898
+ "PrintOutputFormat": {
3899
+ "description": "Represents the print output format type (printing gen2). Note: Output format is ignored and PDF is used automatically if more than one page is exported.",
3900
+ "enum": [
3901
+ "AIX",
3902
+ "BMP",
3903
+ "EMF",
3904
+ "EPS",
3905
+ "GIF",
3906
+ "JPG",
3907
+ "PDF",
3908
+ "PNG",
3909
+ "PNG32",
3910
+ "SVG",
3911
+ "SVGZ",
3912
+ "TGA",
3913
+ "TIFF"
3914
+ ],
3915
+ "type": "string"
3916
+ },
3914
3917
  "PublishEventArgs": {
3915
3918
  "additionalProperties": false,
3916
3919
  "description": "Arguments for the 'viewer.publish-event' command.",
@@ -4084,16 +4087,12 @@
4084
4087
  },
4085
4088
  "RunLayoutPrintArgs": {
4086
4089
  "additionalProperties": false,
4087
- "description": "The arguments required by the printing.run command when printing with ArcGIS Pro layouts.",
4090
+ "description": "The arguments required by the printing.run command when printing with VertiGIS Studio ArcGIS Pro layouts or -layout packages (printing gen2).",
4088
4091
  "properties": {
4089
4092
  "dpi": {
4090
4093
  "description": "The DPI with which to print.",
4091
4094
  "type": "number"
4092
4095
  },
4093
- "exportFormat": {
4094
- "$ref": "#/definitions/LayoutExportFormats",
4095
- "description": "The export format of the layout print."
4096
- },
4097
4096
  "extent": {
4098
4097
  "$ref": "#/definitions/esri.Extent",
4099
4098
  "description": "The initial extent of the 2D map(s). Defaults to the map's current extent. If scale is provided, only the center point is used."
@@ -4114,6 +4113,10 @@
4114
4113
  "$ref": "MapsLike",
4115
4114
  "description": "The map(s) to print."
4116
4115
  },
4116
+ "outputFormat": {
4117
+ "$ref": "#/definitions/PrintOutputFormat",
4118
+ "description": "The print output format."
4119
+ },
4117
4120
  "parameters": {
4118
4121
  "$ref": "#/definitions/JobParameters",
4119
4122
  "description": "Additional parameters used in the print template, specified as key-value pairs."
@@ -4147,7 +4150,7 @@
4147
4150
  },
4148
4151
  "RunPrintArgs": {
4149
4152
  "additionalProperties": false,
4150
- "description": "The arguments required by the printing.run command when printing with templates.",
4153
+ "description": "The arguments required by the printing.run command when printing with templates (printing gen1).",
4151
4154
  "properties": {
4152
4155
  "dpi": {
4153
4156
  "description": "The DPI with which to print.",
@@ -6155,6 +6158,20 @@
6155
6158
  "description": "Determines whether the layer is initially visible in the web map.",
6156
6159
  "type": "boolean"
6157
6160
  },
6161
+ "visibilityTimeExtent": {
6162
+ "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.",
6163
+ "items": [
6164
+ {
6165
+ "type": "number"
6166
+ },
6167
+ {
6168
+ "type": "number"
6169
+ }
6170
+ ],
6171
+ "maxItems": 2,
6172
+ "minItems": 2,
6173
+ "type": "array"
6174
+ },
6158
6175
  "visibleLayers": {
6159
6176
  "description": "An array of sublayer ids that should appear visible. These ids refer to subsets of the Annotation features in the AnnotationLayer, identified by their AnnotationClassId.",
6160
6177
  "items": {
@@ -6334,6 +6351,20 @@
6334
6351
  "visibility": {
6335
6352
  "description": "Determines whether the layer is initially visible in the web map.",
6336
6353
  "type": "boolean"
6354
+ },
6355
+ "visibilityTimeExtent": {
6356
+ "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.",
6357
+ "items": [
6358
+ {
6359
+ "type": "number"
6360
+ },
6361
+ {
6362
+ "type": "number"
6363
+ }
6364
+ ],
6365
+ "maxItems": 2,
6366
+ "minItems": 2,
6367
+ "type": "array"
6337
6368
  }
6338
6369
  },
6339
6370
  "required": [
@@ -6633,6 +6664,20 @@
6633
6664
  "visibility": {
6634
6665
  "description": "Determines whether the layer is initially visible in the web map.",
6635
6666
  "type": "boolean"
6667
+ },
6668
+ "visibilityTimeExtent": {
6669
+ "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.",
6670
+ "items": [
6671
+ {
6672
+ "type": "number"
6673
+ },
6674
+ {
6675
+ "type": "number"
6676
+ }
6677
+ ],
6678
+ "maxItems": 2,
6679
+ "minItems": 2,
6680
+ "type": "array"
6636
6681
  }
6637
6682
  },
6638
6683
  "required": [
@@ -7258,6 +7303,20 @@
7258
7303
  "description": "Determines whether the layer is initially visible in the web map.",
7259
7304
  "type": "boolean"
7260
7305
  },
7306
+ "visibilityTimeExtent": {
7307
+ "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.",
7308
+ "items": [
7309
+ {
7310
+ "type": "number"
7311
+ },
7312
+ {
7313
+ "type": "number"
7314
+ }
7315
+ ],
7316
+ "maxItems": 2,
7317
+ "minItems": 2,
7318
+ "type": "array"
7319
+ },
7261
7320
  "visibleLayers": {
7262
7321
  "description": "An array of sublayer ids that should appear visible. Used with feature layers that are based on feature collections.",
7263
7322
  "items": {
@@ -7908,6 +7967,20 @@
7908
7967
  "visibility": {
7909
7968
  "description": "Determines whether the layer is initially visible in the web map.",
7910
7969
  "type": "boolean"
7970
+ },
7971
+ "visibilityTimeExtent": {
7972
+ "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.",
7973
+ "items": [
7974
+ {
7975
+ "type": "number"
7976
+ },
7977
+ {
7978
+ "type": "number"
7979
+ }
7980
+ ],
7981
+ "maxItems": 2,
7982
+ "minItems": 2,
7983
+ "type": "array"
7911
7984
  }
7912
7985
  },
7913
7986
  "required": [
@@ -8035,6 +8108,20 @@
8035
8108
  "visibility": {
8036
8109
  "description": "Determines whether the layer is initially visible in the web map.",
8037
8110
  "type": "boolean"
8111
+ },
8112
+ "visibilityTimeExtent": {
8113
+ "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.",
8114
+ "items": [
8115
+ {
8116
+ "type": "number"
8117
+ },
8118
+ {
8119
+ "type": "number"
8120
+ }
8121
+ ],
8122
+ "maxItems": 2,
8123
+ "minItems": 2,
8124
+ "type": "array"
8038
8125
  }
8039
8126
  },
8040
8127
  "required": [
@@ -8331,6 +8418,20 @@
8331
8418
  "inherited"
8332
8419
  ],
8333
8420
  "type": "string"
8421
+ },
8422
+ "visibilityTimeExtent": {
8423
+ "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.",
8424
+ "items": [
8425
+ {
8426
+ "type": "number"
8427
+ },
8428
+ {
8429
+ "type": "number"
8430
+ }
8431
+ ],
8432
+ "maxItems": 2,
8433
+ "minItems": 2,
8434
+ "type": "array"
8334
8435
  }
8335
8436
  },
8336
8437
  "required": [
@@ -8532,6 +8633,20 @@
8532
8633
  "visibility": {
8533
8634
  "description": "Determines whether the layer is initially visible in the web map.",
8534
8635
  "type": "boolean"
8636
+ },
8637
+ "visibilityTimeExtent": {
8638
+ "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.",
8639
+ "items": [
8640
+ {
8641
+ "type": "number"
8642
+ },
8643
+ {
8644
+ "type": "number"
8645
+ }
8646
+ ],
8647
+ "maxItems": 2,
8648
+ "minItems": 2,
8649
+ "type": "array"
8535
8650
  }
8536
8651
  },
8537
8652
  "required": [
@@ -8716,6 +8831,20 @@
8716
8831
  "visibility": {
8717
8832
  "description": "Determines whether the layer is initially visible in the web map.",
8718
8833
  "type": "boolean"
8834
+ },
8835
+ "visibilityTimeExtent": {
8836
+ "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.",
8837
+ "items": [
8838
+ {
8839
+ "type": "number"
8840
+ },
8841
+ {
8842
+ "type": "number"
8843
+ }
8844
+ ],
8845
+ "maxItems": 2,
8846
+ "minItems": 2,
8847
+ "type": "array"
8719
8848
  }
8720
8849
  },
8721
8850
  "required": [
@@ -8837,6 +8966,20 @@
8837
8966
  "visibility": {
8838
8967
  "description": "Determines whether the layer is initially visible in the web map.",
8839
8968
  "type": "boolean"
8969
+ },
8970
+ "visibilityTimeExtent": {
8971
+ "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.",
8972
+ "items": [
8973
+ {
8974
+ "type": "number"
8975
+ },
8976
+ {
8977
+ "type": "number"
8978
+ }
8979
+ ],
8980
+ "maxItems": 2,
8981
+ "minItems": 2,
8982
+ "type": "array"
8840
8983
  }
8841
8984
  },
8842
8985
  "required": [
@@ -9186,6 +9329,20 @@
9186
9329
  "description": "Determines whether the layer is initially visible in the web map.",
9187
9330
  "type": "boolean"
9188
9331
  },
9332
+ "visibilityTimeExtent": {
9333
+ "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.",
9334
+ "items": [
9335
+ {
9336
+ "type": "number"
9337
+ },
9338
+ {
9339
+ "type": "number"
9340
+ }
9341
+ ],
9342
+ "maxItems": 2,
9343
+ "minItems": 2,
9344
+ "type": "array"
9345
+ },
9189
9346
  "visibleFolders": {
9190
9347
  "description": "Array of numeric IDs of folders that will be made visible.",
9191
9348
  "items": {
@@ -10277,6 +10434,20 @@
10277
10434
  "description": "Determines whether the layer is initially visible in the web map.",
10278
10435
  "type": "boolean"
10279
10436
  },
10437
+ "visibilityTimeExtent": {
10438
+ "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.",
10439
+ "items": [
10440
+ {
10441
+ "type": "number"
10442
+ },
10443
+ {
10444
+ "type": "number"
10445
+ }
10446
+ ],
10447
+ "maxItems": 2,
10448
+ "minItems": 2,
10449
+ "type": "array"
10450
+ },
10280
10451
  "visibleLayers": {
10281
10452
  "description": "An array of layers that should appear visible. Used with ArcGIS map services that are not tiled in addition to WMS layers. Array of items of the following types: Number With ArcGIS map services, the array contains integers of the index positions of each visible layer.",
10282
10453
  "items": {
@@ -10290,6 +10461,184 @@
10290
10461
  ],
10291
10462
  "type": "object"
10292
10463
  },
10464
+ "esri.rest-api.MediaLayerJson.GeoreferenceJson": {
10465
+ "additionalProperties": false,
10466
+ "description": "The georeference used to place a media in a MediaLayer.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/mediaLayer_georeference/} {@link https://developers.arcgis.com/web-scene-specification/objects/mediaLayer_georeference/}.",
10467
+ "properties": {
10468
+ "coefficients": {
10469
+ "description": "An array of 8 coefficients representing the projective transformation..",
10470
+ "items": {
10471
+ "type": "number"
10472
+ },
10473
+ "type": "array"
10474
+ },
10475
+ "controlPoints": {
10476
+ "description": "An array of 4 user defined control points placed on the media..",
10477
+ "items": {
10478
+ "$ref": "__type"
10479
+ },
10480
+ "type": "array"
10481
+ },
10482
+ "height": {
10483
+ "description": "Numeric value indicating the height of media in pixels.",
10484
+ "type": "number"
10485
+ },
10486
+ "spatialReference": {
10487
+ "$ref": "#/definitions/esri.rest-api.SpatialReferenceJson.SpatialReferenceJson",
10488
+ "description": "Image format of the cached tiles."
10489
+ },
10490
+ "width": {
10491
+ "description": "Numeric value indicating the width of media in pixels.",
10492
+ "type": "number"
10493
+ }
10494
+ },
10495
+ "type": "object"
10496
+ },
10497
+ "esri.rest-api.MediaLayerJson.MediaLayerJson": {
10498
+ "additionalProperties": false,
10499
+ "description": "The MediaLayer is used to add image and video elements to the map at a specified geographic location. This layer can be used to display old scanned maps, weather data, satellite imagery, aerial and drone images, fantasy images and video feedback, etc. The geographic location of the image or video can be set using the extent and rotation, corner points or control points.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/mediaLayer/} {@link https://developers.arcgis.com/web-scene-specification/objects/mediaLayer/}.",
10500
+ "properties": {
10501
+ "blendMode": {
10502
+ "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.",
10503
+ "enum": [
10504
+ "average",
10505
+ "color",
10506
+ "color-burn",
10507
+ "color-dodge",
10508
+ "darken",
10509
+ "destination-atop",
10510
+ "destination-in",
10511
+ "destination-out",
10512
+ "destination-over",
10513
+ "difference",
10514
+ "exclusion",
10515
+ "hard-light",
10516
+ "hue",
10517
+ "invert",
10518
+ "lighten",
10519
+ "lighter",
10520
+ "luminosity",
10521
+ "minus",
10522
+ "multiply",
10523
+ "normal",
10524
+ "overlay",
10525
+ "plus",
10526
+ "reflect",
10527
+ "saturation",
10528
+ "screen",
10529
+ "soft-light",
10530
+ "source-atop",
10531
+ "source-in",
10532
+ "source-out",
10533
+ "vivid-light",
10534
+ "xor"
10535
+ ],
10536
+ "type": "string"
10537
+ },
10538
+ "effect": {
10539
+ "$ref": "#/definitions/EffectJson",
10540
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
10541
+ },
10542
+ "georeference": {
10543
+ "$ref": "#/definitions/esri.rest-api.MediaLayerJson.GeoreferenceJson",
10544
+ "description": "Attribution to the Web Tile Layer provider. It is displayed in the attribution on the web map. Input required by the user when the layer is added to the web map."
10545
+ },
10546
+ "id": {
10547
+ "description": "A unique identifying string for the layer.",
10548
+ "type": "string"
10549
+ },
10550
+ "itemId": {
10551
+ "description": "Optional string containing the item ID of the Media Layer item registered on ArcGIS Online or your organization's portal.",
10552
+ "type": "string"
10553
+ },
10554
+ "layerType": {
10555
+ "const": "MediaLayer",
10556
+ "description": "The type of layer.",
10557
+ "type": "string"
10558
+ },
10559
+ "listMode": {
10560
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link support /esri!ListMode}.",
10561
+ "enum": [
10562
+ "hide",
10563
+ "hide-children",
10564
+ "show"
10565
+ ],
10566
+ "type": "string"
10567
+ },
10568
+ "maxScale": {
10569
+ "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.",
10570
+ "type": "number"
10571
+ },
10572
+ "mediaType": {
10573
+ "description": "Indicates the type of media that the url points to. The currently supported media types are image and video. Images must be in JPEG or PNG format. For supported video formats, please refer to the MDN video codec guide. 'mediaType' is applicable only when the url is defined.",
10574
+ "enum": [
10575
+ "image",
10576
+ "video"
10577
+ ],
10578
+ "type": "string"
10579
+ },
10580
+ "minScale": {
10581
+ "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.",
10582
+ "type": "number"
10583
+ },
10584
+ "opacity": {
10585
+ "description": "The degree of transparency applied to the layer on the client side, where\n0 is full transparency and 1 is no transparency.",
10586
+ "type": "number"
10587
+ },
10588
+ "refreshInterval": {
10589
+ "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}.",
10590
+ "type": "number"
10591
+ },
10592
+ "showLegend": {
10593
+ "description": "Indicates whether to allow map authors the ability to control what layers should be shown in a client's legend.",
10594
+ "type": "boolean"
10595
+ },
10596
+ "title": {
10597
+ "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.",
10598
+ "type": "string"
10599
+ },
10600
+ "type": {
10601
+ "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.",
10602
+ "enum": [
10603
+ "BingMapsAerial",
10604
+ "BingMapsHybrid",
10605
+ "BingMapsRoad",
10606
+ "CSV",
10607
+ "KML",
10608
+ "OpenStreetMap",
10609
+ "WMS",
10610
+ "WebTiledLayer"
10611
+ ],
10612
+ "type": "string"
10613
+ },
10614
+ "url": {
10615
+ "description": "Url URL to the media file. It is not applicable when itemId is defined. The url is relative when the media file is stored as an item resource. Relative urls are only applicable for image media types. Video media types only support external video urls at this time. See related mediaType property.",
10616
+ "type": "string"
10617
+ },
10618
+ "visibility": {
10619
+ "description": "Determines whether the layer is initially visible in the web map.",
10620
+ "type": "boolean"
10621
+ },
10622
+ "visibilityTimeExtent": {
10623
+ "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.",
10624
+ "items": [
10625
+ {
10626
+ "type": "number"
10627
+ },
10628
+ {
10629
+ "type": "number"
10630
+ }
10631
+ ],
10632
+ "maxItems": 2,
10633
+ "minItems": 2,
10634
+ "type": "array"
10635
+ }
10636
+ },
10637
+ "required": [
10638
+ "layerType"
10639
+ ],
10640
+ "type": "object"
10641
+ },
10293
10642
  "esri.rest-api.MosaicRuleJson.MosaicRuleJson": {
10294
10643
  "additionalProperties": false,
10295
10644
  "description": "Specifies the mosaic rule when defining how individual images should be mosaiced. It specifies selection, mosaic method, sort order, overlapping pixel resolution, etc. Mosaic rules are for mosaicing rasters in the mosaic dataset.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/mosaicRule/} {@link https://developers.arcgis.com/web-scene-specification/objects/mosaicRule/}.",
@@ -10492,6 +10841,20 @@
10492
10841
  "visibility": {
10493
10842
  "description": "Determines whether the layer is initially visible in the web map.",
10494
10843
  "type": "boolean"
10844
+ },
10845
+ "visibilityTimeExtent": {
10846
+ "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.",
10847
+ "items": [
10848
+ {
10849
+ "type": "number"
10850
+ },
10851
+ {
10852
+ "type": "number"
10853
+ }
10854
+ ],
10855
+ "maxItems": 2,
10856
+ "minItems": 2,
10857
+ "type": "array"
10495
10858
  }
10496
10859
  },
10497
10860
  "required": [
@@ -12371,6 +12734,20 @@
12371
12734
  "visibility": {
12372
12735
  "description": "Determines whether the layer is initially visible in the web map.",
12373
12736
  "type": "boolean"
12737
+ },
12738
+ "visibilityTimeExtent": {
12739
+ "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.",
12740
+ "items": [
12741
+ {
12742
+ "type": "number"
12743
+ },
12744
+ {
12745
+ "type": "number"
12746
+ }
12747
+ ],
12748
+ "maxItems": 2,
12749
+ "minItems": 2,
12750
+ "type": "array"
12374
12751
  }
12375
12752
  },
12376
12753
  "required": [
@@ -12587,6 +12964,20 @@
12587
12964
  "description": "Determines whether the layer is initially visible in the web map.",
12588
12965
  "type": "boolean"
12589
12966
  },
12967
+ "visibilityTimeExtent": {
12968
+ "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.",
12969
+ "items": [
12970
+ {
12971
+ "type": "number"
12972
+ },
12973
+ {
12974
+ "type": "number"
12975
+ }
12976
+ ],
12977
+ "maxItems": 2,
12978
+ "minItems": 2,
12979
+ "type": "array"
12980
+ },
12590
12981
  "visibleLayers": {
12591
12982
  "description": "An array of sublayer ids that should appear visible. Used with feature layers that are based on feature collections.",
12592
12983
  "items": {
@@ -12815,6 +13206,20 @@
12815
13206
  "visibility": {
12816
13207
  "description": "Determines whether the layer is initially visible in the web map.",
12817
13208
  "type": "boolean"
13209
+ },
13210
+ "visibilityTimeExtent": {
13211
+ "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.",
13212
+ "items": [
13213
+ {
13214
+ "type": "number"
13215
+ },
13216
+ {
13217
+ "type": "number"
13218
+ }
13219
+ ],
13220
+ "maxItems": 2,
13221
+ "minItems": 2,
13222
+ "type": "array"
12818
13223
  }
12819
13224
  },
12820
13225
  "required": [
@@ -12956,6 +13361,20 @@
12956
13361
  "visibility": {
12957
13362
  "description": "Determines whether the layer is initially visible in the web map.",
12958
13363
  "type": "boolean"
13364
+ },
13365
+ "visibilityTimeExtent": {
13366
+ "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.",
13367
+ "items": [
13368
+ {
13369
+ "type": "number"
13370
+ },
13371
+ {
13372
+ "type": "number"
13373
+ }
13374
+ ],
13375
+ "maxItems": 2,
13376
+ "minItems": 2,
13377
+ "type": "array"
12959
13378
  }
12960
13379
  },
12961
13380
  "required": [
@@ -14247,6 +14666,20 @@
14247
14666
  "visibility": {
14248
14667
  "description": "Determines whether the layer is initially visible in the web map.",
14249
14668
  "type": "boolean"
14669
+ },
14670
+ "visibilityTimeExtent": {
14671
+ "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.",
14672
+ "items": [
14673
+ {
14674
+ "type": "number"
14675
+ },
14676
+ {
14677
+ "type": "number"
14678
+ }
14679
+ ],
14680
+ "maxItems": 2,
14681
+ "minItems": 2,
14682
+ "type": "array"
14250
14683
  }
14251
14684
  },
14252
14685
  "required": [
@@ -14395,6 +14828,20 @@
14395
14828
  "visibility": {
14396
14829
  "description": "Determines whether the layer is initially visible in the web map.",
14397
14830
  "type": "boolean"
14831
+ },
14832
+ "visibilityTimeExtent": {
14833
+ "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.",
14834
+ "items": [
14835
+ {
14836
+ "type": "number"
14837
+ },
14838
+ {
14839
+ "type": "number"
14840
+ }
14841
+ ],
14842
+ "maxItems": 2,
14843
+ "minItems": 2,
14844
+ "type": "array"
14398
14845
  }
14399
14846
  },
14400
14847
  "required": [
@@ -14553,6 +15000,20 @@
14553
15000
  "visibility": {
14554
15001
  "description": "Determines whether the layer is initially visible in the web map.",
14555
15002
  "type": "boolean"
15003
+ },
15004
+ "visibilityTimeExtent": {
15005
+ "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.",
15006
+ "items": [
15007
+ {
15008
+ "type": "number"
15009
+ },
15010
+ {
15011
+ "type": "number"
15012
+ }
15013
+ ],
15014
+ "maxItems": 2,
15015
+ "minItems": 2,
15016
+ "type": "array"
14556
15017
  }
14557
15018
  },
14558
15019
  "required": [
@@ -14783,6 +15244,20 @@
14783
15244
  "description": "Determines whether the layer is initially visible in the web map.",
14784
15245
  "type": "boolean"
14785
15246
  },
15247
+ "visibilityTimeExtent": {
15248
+ "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.",
15249
+ "items": [
15250
+ {
15251
+ "type": "number"
15252
+ },
15253
+ {
15254
+ "type": "number"
15255
+ }
15256
+ ],
15257
+ "maxItems": 2,
15258
+ "minItems": 2,
15259
+ "type": "array"
15260
+ },
14786
15261
  "wfsInfo": {
14787
15262
  "$ref": "#/definitions/esri.rest-api.WFSLayerJson.WFSInfoJson",
14788
15263
  "description": "Object that defines and provides information about layers in a WFS service."
@@ -14980,6 +15455,20 @@
14980
15455
  "description": "Determines whether the layer is initially visible in the web map.",
14981
15456
  "type": "boolean"
14982
15457
  },
15458
+ "visibilityTimeExtent": {
15459
+ "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.",
15460
+ "items": [
15461
+ {
15462
+ "type": "number"
15463
+ },
15464
+ {
15465
+ "type": "number"
15466
+ }
15467
+ ],
15468
+ "maxItems": 2,
15469
+ "minItems": 2,
15470
+ "type": "array"
15471
+ },
14983
15472
  "visibleLayers": {
14984
15473
  "description": "An array of layers that should appear visible. The array contains the names of the visible layers.",
14985
15474
  "items": {
@@ -15223,6 +15712,20 @@
15223
15712
  "description": "Determines whether the layer is initially visible in the web map.",
15224
15713
  "type": "boolean"
15225
15714
  },
15715
+ "visibilityTimeExtent": {
15716
+ "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.",
15717
+ "items": [
15718
+ {
15719
+ "type": "number"
15720
+ },
15721
+ {
15722
+ "type": "number"
15723
+ }
15724
+ ],
15725
+ "maxItems": 2,
15726
+ "minItems": 2,
15727
+ "type": "array"
15728
+ },
15226
15729
  "wmtsInfo": {
15227
15730
  "$ref": "#/definitions/esri.rest-api.WebTileLayerJson.WMTSInfoJson",
15228
15731
  "description": "An object representing information about this layer if it is a WMTS layer."