@vertigis/viewer-spec 49.8.0 → 49.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.
@@ -680,6 +680,9 @@
680
680
  {
681
681
  "$ref": "#/definitions/esri.rest-api.StreamLayer.StreamLayer"
682
682
  },
683
+ {
684
+ "$ref": "#/definitions/esri.rest-api.SubtypeGroupLayer.SubtypeGroupLayer"
685
+ },
683
686
  {
684
687
  "$ref": "#/definitions/esri.rest-api.TiledImageServiceLayer.TiledImageServiceLayer"
685
688
  },
@@ -1226,6 +1229,10 @@
1226
1229
  "$ref": "#/definitions/esri.rest-api._LayerBase.BlendMode",
1227
1230
  "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."
1228
1231
  },
1232
+ "effect": {
1233
+ "$ref": "#/definitions/esri.rest-api.Effect.Effect",
1234
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
1235
+ },
1229
1236
  "filters": {
1230
1237
  "description": "A list of filters available for this layer. Overrides filters defined on the service.",
1231
1238
  "items": {
@@ -1512,6 +1519,10 @@
1512
1519
  "description": "Indicates whether to allow a client to ignore popups defined by the service item.",
1513
1520
  "type": "boolean"
1514
1521
  },
1522
+ "effect": {
1523
+ "$ref": "#/definitions/esri.rest-api.Effect.Effect",
1524
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
1525
+ },
1515
1526
  "id": {
1516
1527
  "description": "A unique identifying string for the layer.",
1517
1528
  "type": "string"
@@ -2264,6 +2275,369 @@
2264
2275
  ],
2265
2276
  "type": "object"
2266
2277
  },
2278
+ "esri.rest-api.Effect.BloomEffectFunction": {
2279
+ "additionalProperties": false,
2280
+ "description": "An Effect Function for the bloom effect.",
2281
+ "properties": {
2282
+ "radius": {
2283
+ "description": "Determines the radius of the blur. Negative values are not allowed. Leaves the pixels inside the radius untouched.",
2284
+ "type": "number"
2285
+ },
2286
+ "strength": {
2287
+ "description": "The intensity of the bloom effect. The higher the value, the brighter the glow. Negative values are not allowed.",
2288
+ "type": "number"
2289
+ },
2290
+ "threshold": {
2291
+ "description": "The minimum color luminosity for a pixel to bloom, where at 0 all pixels bloom and 1 only the pixels with 100% luminosity colors bloom.",
2292
+ "type": "number"
2293
+ },
2294
+ "type": {
2295
+ "description": "Effect type.",
2296
+ "enum": [
2297
+ "bloom"
2298
+ ],
2299
+ "type": "string"
2300
+ }
2301
+ },
2302
+ "required": [
2303
+ "type"
2304
+ ],
2305
+ "type": "object"
2306
+ },
2307
+ "esri.rest-api.Effect.BlurEffectFunction": {
2308
+ "additionalProperties": false,
2309
+ "description": "An Effect Function for the blur effect.",
2310
+ "properties": {
2311
+ "radius": {
2312
+ "description": "The radius of the blur in points. It defines the value of the standard deviation to the Gaussian function. Negative values are not allowed.",
2313
+ "type": "number"
2314
+ },
2315
+ "type": {
2316
+ "description": "Effect type.",
2317
+ "enum": [
2318
+ "blur"
2319
+ ],
2320
+ "type": "string"
2321
+ }
2322
+ },
2323
+ "required": [
2324
+ "type"
2325
+ ],
2326
+ "type": "object"
2327
+ },
2328
+ "esri.rest-api.Effect.BrightnessEffectFunction": {
2329
+ "additionalProperties": false,
2330
+ "description": "An Effect Function for the brightness effect.",
2331
+ "properties": {
2332
+ "amount": {
2333
+ "description": "Amount of effect. A value of 0 leaves the input unchanged. Grayscale, invert, sepia, and opacity effects accept a maximum amount of 1 which applies the effect at 100%. Brightness, contrast, and saturate can accept amount above 1. Negative values are not allowed.",
2334
+ "type": "number"
2335
+ },
2336
+ "type": {
2337
+ "description": "Effect type.",
2338
+ "enum": [
2339
+ "brightness"
2340
+ ],
2341
+ "type": "string"
2342
+ }
2343
+ },
2344
+ "required": [
2345
+ "type"
2346
+ ],
2347
+ "type": "object"
2348
+ },
2349
+ "esri.rest-api.Effect.ContrastEffectFunction": {
2350
+ "additionalProperties": false,
2351
+ "description": "An Effect Function for the contrast effect.",
2352
+ "properties": {
2353
+ "amount": {
2354
+ "description": "Amount of effect. A value of 0 leaves the input unchanged. Grayscale, invert, sepia, and opacity effects accept a maximum amount of 1 which applies the effect at 100%. Brightness, contrast, and saturate can accept amount above 1. Negative values are not allowed.",
2355
+ "type": "number"
2356
+ },
2357
+ "type": {
2358
+ "description": "Effect type.",
2359
+ "enum": [
2360
+ "contrast"
2361
+ ],
2362
+ "type": "string"
2363
+ }
2364
+ },
2365
+ "required": [
2366
+ "type"
2367
+ ],
2368
+ "type": "object"
2369
+ },
2370
+ "esri.rest-api.Effect.DropShadowEffectFunction": {
2371
+ "additionalProperties": false,
2372
+ "description": "An Effect Function for the drop-shadow effect.",
2373
+ "properties": {
2374
+ "blurRadius": {
2375
+ "description": "The radius of the blur in points. It defines the value of the standard deviation to the Gaussian function.",
2376
+ "type": "number"
2377
+ },
2378
+ "color": {
2379
+ "description": "Color is represented as a four-element array. The four elements represent values for red, green, blue, and alpha in that order. Values range from 0 through 255.",
2380
+ "items": {
2381
+ "type": "number"
2382
+ },
2383
+ "type": "array"
2384
+ },
2385
+ "type": {
2386
+ "description": "Effect type.",
2387
+ "enum": [
2388
+ "drop-shadow"
2389
+ ],
2390
+ "type": "string"
2391
+ },
2392
+ "xoffset": {
2393
+ "description": "The distance of the shadow on the x-axis in points.",
2394
+ "type": "number"
2395
+ },
2396
+ "yoffset": {
2397
+ "description": "The distance of the shadow on the y-axis in points.",
2398
+ "type": "number"
2399
+ }
2400
+ },
2401
+ "required": [
2402
+ "type"
2403
+ ],
2404
+ "type": "object"
2405
+ },
2406
+ "esri.rest-api.Effect.Effect": {
2407
+ "anyOf": [
2408
+ {
2409
+ "items": {
2410
+ "$ref": "#/definitions/esri.rest-api.Effect.ScaleDependentEffect"
2411
+ },
2412
+ "type": "array"
2413
+ },
2414
+ {
2415
+ "items": {
2416
+ "anyOf": [
2417
+ {
2418
+ "$ref": "#/definitions/esri.rest-api.Effect.HueRotateEffectFunction"
2419
+ },
2420
+ {
2421
+ "$ref": "#/definitions/esri.rest-api.Effect.BlurEffectFunction"
2422
+ },
2423
+ {
2424
+ "$ref": "#/definitions/esri.rest-api.Effect.DropShadowEffectFunction"
2425
+ },
2426
+ {
2427
+ "$ref": "#/definitions/esri.rest-api.Effect.BloomEffectFunction"
2428
+ },
2429
+ {
2430
+ "$ref": "#/definitions/esri.rest-api.Effect.BrightnessEffectFunction"
2431
+ },
2432
+ {
2433
+ "$ref": "#/definitions/esri.rest-api.Effect.ContrastEffectFunction"
2434
+ },
2435
+ {
2436
+ "$ref": "#/definitions/esri.rest-api.Effect.GrayscaleEffectFunction"
2437
+ },
2438
+ {
2439
+ "$ref": "#/definitions/esri.rest-api.Effect.InvertEffectFunction"
2440
+ },
2441
+ {
2442
+ "$ref": "#/definitions/esri.rest-api.Effect.OpacityEffectFunction"
2443
+ },
2444
+ {
2445
+ "$ref": "#/definitions/esri.rest-api.Effect.SaturateEffectFunction"
2446
+ },
2447
+ {
2448
+ "$ref": "#/definitions/esri.rest-api.Effect.SepiaEffectFunction"
2449
+ }
2450
+ ],
2451
+ "description": "Effect functions that can be combined to build a layer effect."
2452
+ },
2453
+ "type": "array"
2454
+ }
2455
+ ],
2456
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
2457
+ },
2458
+ "esri.rest-api.Effect.GrayscaleEffectFunction": {
2459
+ "additionalProperties": false,
2460
+ "description": "An Effect Function for the grayscale effect.",
2461
+ "properties": {
2462
+ "amount": {
2463
+ "description": "Amount of effect. A value of 0 leaves the input unchanged. Grayscale, invert, sepia, and opacity effects accept a maximum amount of 1 which applies the effect at 100%. Brightness, contrast, and saturate can accept amount above 1. Negative values are not allowed.",
2464
+ "type": "number"
2465
+ },
2466
+ "type": {
2467
+ "description": "Effect type.",
2468
+ "enum": [
2469
+ "grayscale"
2470
+ ],
2471
+ "type": "string"
2472
+ }
2473
+ },
2474
+ "required": [
2475
+ "type"
2476
+ ],
2477
+ "type": "object"
2478
+ },
2479
+ "esri.rest-api.Effect.HueRotateEffectFunction": {
2480
+ "additionalProperties": false,
2481
+ "description": "An Effect Function for the hue-rotate effect.",
2482
+ "properties": {
2483
+ "angle": {
2484
+ "description": "The relative change in hue as an angle in degree. A value of 0 leaves the input unchanged. A positive hue rotation increases the hue value, while a negative one decreases the hue value.",
2485
+ "type": "number"
2486
+ },
2487
+ "type": {
2488
+ "description": "Effect type.",
2489
+ "enum": [
2490
+ "hue-rotate"
2491
+ ],
2492
+ "type": "string"
2493
+ }
2494
+ },
2495
+ "required": [
2496
+ "type"
2497
+ ],
2498
+ "type": "object"
2499
+ },
2500
+ "esri.rest-api.Effect.InvertEffectFunction": {
2501
+ "additionalProperties": false,
2502
+ "description": "An Effect Function for the invert effect.",
2503
+ "properties": {
2504
+ "amount": {
2505
+ "description": "Amount of effect. A value of 0 leaves the input unchanged. Grayscale, invert, sepia, and opacity effects accept a maximum amount of 1 which applies the effect at 100%. Brightness, contrast, and saturate can accept amount above 1. Negative values are not allowed.",
2506
+ "type": "number"
2507
+ },
2508
+ "type": {
2509
+ "description": "Effect type.",
2510
+ "enum": [
2511
+ "invert"
2512
+ ],
2513
+ "type": "string"
2514
+ }
2515
+ },
2516
+ "required": [
2517
+ "type"
2518
+ ],
2519
+ "type": "object"
2520
+ },
2521
+ "esri.rest-api.Effect.OpacityEffectFunction": {
2522
+ "additionalProperties": false,
2523
+ "description": "An Effect Function for the opacity effect.",
2524
+ "properties": {
2525
+ "amount": {
2526
+ "description": "Amount of effect. A value of 0 leaves the input unchanged. Grayscale, invert, sepia, and opacity effects accept a maximum amount of 1 which applies the effect at 100%. Brightness, contrast, and saturate can accept amount above 1. Negative values are not allowed.",
2527
+ "type": "number"
2528
+ },
2529
+ "type": {
2530
+ "description": "Effect type.",
2531
+ "enum": [
2532
+ "opacity"
2533
+ ],
2534
+ "type": "string"
2535
+ }
2536
+ },
2537
+ "required": [
2538
+ "type"
2539
+ ],
2540
+ "type": "object"
2541
+ },
2542
+ "esri.rest-api.Effect.SaturateEffectFunction": {
2543
+ "additionalProperties": false,
2544
+ "description": "An Effect Function for the saturate effect.",
2545
+ "properties": {
2546
+ "amount": {
2547
+ "description": "Amount of effect. A value of 0 leaves the input unchanged. Grayscale, invert, sepia, and opacity effects accept a maximum amount of 1 which applies the effect at 100%. Brightness, contrast, and saturate can accept amount above 1. Negative values are not allowed.",
2548
+ "type": "number"
2549
+ },
2550
+ "type": {
2551
+ "description": "Effect type.",
2552
+ "enum": [
2553
+ "saturate"
2554
+ ],
2555
+ "type": "string"
2556
+ }
2557
+ },
2558
+ "required": [
2559
+ "type"
2560
+ ],
2561
+ "type": "object"
2562
+ },
2563
+ "esri.rest-api.Effect.ScaleDependentEffect": {
2564
+ "additionalProperties": false,
2565
+ "description": "An object describing the effect to apply at a scale stop.",
2566
+ "properties": {
2567
+ "scale": {
2568
+ "description": "The scale of the view for the effect to take place.",
2569
+ "type": "number"
2570
+ },
2571
+ "value": {
2572
+ "description": "The effect to be applied at the corresponding scale.",
2573
+ "items": {
2574
+ "anyOf": [
2575
+ {
2576
+ "$ref": "#/definitions/esri.rest-api.Effect.HueRotateEffectFunction"
2577
+ },
2578
+ {
2579
+ "$ref": "#/definitions/esri.rest-api.Effect.BlurEffectFunction"
2580
+ },
2581
+ {
2582
+ "$ref": "#/definitions/esri.rest-api.Effect.DropShadowEffectFunction"
2583
+ },
2584
+ {
2585
+ "$ref": "#/definitions/esri.rest-api.Effect.BloomEffectFunction"
2586
+ },
2587
+ {
2588
+ "$ref": "#/definitions/esri.rest-api.Effect.BrightnessEffectFunction"
2589
+ },
2590
+ {
2591
+ "$ref": "#/definitions/esri.rest-api.Effect.ContrastEffectFunction"
2592
+ },
2593
+ {
2594
+ "$ref": "#/definitions/esri.rest-api.Effect.GrayscaleEffectFunction"
2595
+ },
2596
+ {
2597
+ "$ref": "#/definitions/esri.rest-api.Effect.InvertEffectFunction"
2598
+ },
2599
+ {
2600
+ "$ref": "#/definitions/esri.rest-api.Effect.OpacityEffectFunction"
2601
+ },
2602
+ {
2603
+ "$ref": "#/definitions/esri.rest-api.Effect.SaturateEffectFunction"
2604
+ },
2605
+ {
2606
+ "$ref": "#/definitions/esri.rest-api.Effect.SepiaEffectFunction"
2607
+ }
2608
+ ],
2609
+ "description": "Effect functions that can be combined to build a layer effect."
2610
+ },
2611
+ "type": "array"
2612
+ }
2613
+ },
2614
+ "required": [
2615
+ "scale",
2616
+ "value"
2617
+ ],
2618
+ "type": "object"
2619
+ },
2620
+ "esri.rest-api.Effect.SepiaEffectFunction": {
2621
+ "additionalProperties": false,
2622
+ "description": "An Effect Function for the sepia effect.",
2623
+ "properties": {
2624
+ "amount": {
2625
+ "description": "Amount of effect. A value of 0 leaves the input unchanged. Grayscale, invert, sepia, and opacity effects accept a maximum amount of 1 which applies the effect at 100%. Brightness, contrast, and saturate can accept amount above 1. Negative values are not allowed.",
2626
+ "type": "number"
2627
+ },
2628
+ "type": {
2629
+ "description": "Effect type.",
2630
+ "enum": [
2631
+ "sepia"
2632
+ ],
2633
+ "type": "string"
2634
+ }
2635
+ },
2636
+ "required": [
2637
+ "type"
2638
+ ],
2639
+ "type": "object"
2640
+ },
2267
2641
  "esri.rest-api.ElevationInfo.ElevationInfo": {
2268
2642
  "additionalProperties": false,
2269
2643
  "description": "Specifies how graphics are placed on the vertical axis (z). This property may only be used in a SceneView.{@linkhttps://developers.arcgis.com/web-scene-specification/objects/elevationInfo/}.",
@@ -2323,6 +2697,10 @@
2323
2697
  "$ref": "#/definitions/esri.rest-api._LayerBase.BlendMode",
2324
2698
  "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."
2325
2699
  },
2700
+ "effect": {
2701
+ "$ref": "#/definitions/esri.rest-api.Effect.Effect",
2702
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
2703
+ },
2326
2704
  "id": {
2327
2705
  "description": "A unique identifying string for the layer.",
2328
2706
  "type": "string"
@@ -2569,6 +2947,10 @@
2569
2947
  "description": "Indicates whether to allow a client to ignore popups defined by the service item.",
2570
2948
  "type": "boolean"
2571
2949
  },
2950
+ "effect": {
2951
+ "$ref": "#/definitions/esri.rest-api.Effect.Effect",
2952
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
2953
+ },
2572
2954
  "featureCollection": {
2573
2955
  "$ref": "#/definitions/esri.rest-api.FeatureCollection.FeatureCollection",
2574
2956
  "description": "A featureCollection object defining a layer of features whose geometry and attributes will be stored directly within the web map. This is only used when no url property is supplied."
@@ -3438,6 +3820,10 @@
3438
3820
  "$ref": "#/definitions/esri.rest-api._LayerBase.BlendMode",
3439
3821
  "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."
3440
3822
  },
3823
+ "effect": {
3824
+ "$ref": "#/definitions/esri.rest-api.Effect.Effect",
3825
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
3826
+ },
3441
3827
  "id": {
3442
3828
  "description": "A unique identifying string for the layer.",
3443
3829
  "type": "string"
@@ -3545,6 +3931,10 @@
3545
3931
  "$ref": "#/definitions/esri.rest-api._LayerBase.BlendMode",
3546
3932
  "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."
3547
3933
  },
3934
+ "effect": {
3935
+ "$ref": "#/definitions/esri.rest-api.Effect.Effect",
3936
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
3937
+ },
3548
3938
  "id": {
3549
3939
  "description": "A unique identifying string for the layer.",
3550
3940
  "type": "string"
@@ -3789,6 +4179,10 @@
3789
4179
  "$ref": "#/definitions/esri.rest-api.DefinitionEditor.DefinitionEditor",
3790
4180
  "description": "Stores interactive filters."
3791
4181
  },
4182
+ "effect": {
4183
+ "$ref": "#/definitions/esri.rest-api.Effect.Effect",
4184
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
4185
+ },
3792
4186
  "format": {
3793
4187
  "description": "The output image type.",
3794
4188
  "enum": [
@@ -3939,6 +4333,10 @@
3939
4333
  "description": "Boolean property indicating whether to ignore popups defined by the service item.",
3940
4334
  "type": "boolean"
3941
4335
  },
4336
+ "effect": {
4337
+ "$ref": "#/definitions/esri.rest-api.Effect.Effect",
4338
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
4339
+ },
3942
4340
  "id": {
3943
4341
  "description": "A unique identifying string for the layer.",
3944
4342
  "type": "string"
@@ -4053,6 +4451,10 @@
4053
4451
  "$ref": "#/definitions/esri.rest-api._LayerBase.BlendMode",
4054
4452
  "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."
4055
4453
  },
4454
+ "effect": {
4455
+ "$ref": "#/definitions/esri.rest-api.Effect.Effect",
4456
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
4457
+ },
4056
4458
  "id": {
4057
4459
  "description": "A unique identifying string for the layer.",
4058
4460
  "type": "string"
@@ -4195,6 +4597,10 @@
4195
4597
  "$ref": "#/definitions/esri.rest-api._LayerBase.BlendMode",
4196
4598
  "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."
4197
4599
  },
4600
+ "effect": {
4601
+ "$ref": "#/definitions/esri.rest-api.Effect.Effect",
4602
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
4603
+ },
4198
4604
  "id": {
4199
4605
  "description": "A unique identifying string for the layer.",
4200
4606
  "type": "string"
@@ -4926,6 +5332,10 @@
4926
5332
  "customParameters": {
4927
5333
  "description": "A sequence of custom parameters appended to the URL of all requests related to supporting ArcGIS layer types."
4928
5334
  },
5335
+ "effect": {
5336
+ "$ref": "#/definitions/esri.rest-api.Effect.Effect",
5337
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
5338
+ },
4929
5339
  "id": {
4930
5340
  "description": "A unique identifying string for the layer.",
4931
5341
  "type": "string"
@@ -5575,6 +5985,10 @@
5575
5985
  "description": "Indicates whether to allow a client to ignore popups defined by the service item.",
5576
5986
  "type": "boolean"
5577
5987
  },
5988
+ "effect": {
5989
+ "$ref": "#/definitions/esri.rest-api.Effect.Effect",
5990
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
5991
+ },
5578
5992
  "id": {
5579
5993
  "description": "A unique identifying string for the layer.",
5580
5994
  "type": "string"
@@ -6706,6 +7120,10 @@
6706
7120
  "description": "Indicates whether to allow a client to ignore popups defined by the service item.",
6707
7121
  "type": "boolean"
6708
7122
  },
7123
+ "effect": {
7124
+ "$ref": "#/definitions/esri.rest-api.Effect.Effect",
7125
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
7126
+ },
6709
7127
  "id": {
6710
7128
  "description": "A unique identifying string for the layer.",
6711
7129
  "type": "string"
@@ -7075,6 +7493,10 @@
7075
7493
  "description": "Indicates whether to allow a client to ignore popups defined by the service item.",
7076
7494
  "type": "boolean"
7077
7495
  },
7496
+ "effect": {
7497
+ "$ref": "#/definitions/esri.rest-api.Effect.Effect",
7498
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
7499
+ },
7078
7500
  "featureCollection": {
7079
7501
  "$ref": "#/definitions/esri.rest-api.FeatureCollection.FeatureCollection",
7080
7502
  "description": "A featureCollection object defining a layer of features whose geometry and attributes will be stored directly within the web map. This is only used when no url property is supplied."
@@ -7213,6 +7635,99 @@
7213
7635
  ],
7214
7636
  "type": "object"
7215
7637
  },
7638
+ "esri.rest-api.SubtypeGroupLayer.SubtypeGroupLayer": {
7639
+ "additionalProperties": false,
7640
+ "description": "SubtypeGroupLayer 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 SubtypeGroupLayer provides the functionality to treat them as one layer called Water Features even though they are stored as separate feature layers.{@linkhttps://developers.arcgis.com/web-scene-specification/objects/subtypeGroupLayer/}.",
7641
+ "properties": {
7642
+ "blendMode": {
7643
+ "$ref": "#/definitions/esri.rest-api._LayerBase.BlendMode",
7644
+ "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."
7645
+ },
7646
+ "customParameters": {
7647
+ "description": "A sequence of custom parameters appended to the URL of all requests related to supporting ArcGIS layer types."
7648
+ },
7649
+ "effect": {
7650
+ "$ref": "#/definitions/esri.rest-api.Effect.Effect",
7651
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
7652
+ },
7653
+ "id": {
7654
+ "description": "A unique identifying string for the layer.",
7655
+ "type": "string"
7656
+ },
7657
+ "layerDefinition": {
7658
+ "$ref": "#/definitions/esri.rest-api.LayerDefinition.LayerDefinition",
7659
+ "description": "A layerDefinition object defining the attribute schema and drawing information for the layer."
7660
+ },
7661
+ "layerType": {
7662
+ "description": "String indicating the layer type. Value of this property must be SubtypeGroupLayer.",
7663
+ "enum": [
7664
+ "ArcGISSubtypeGroupLayer"
7665
+ ],
7666
+ "type": "string"
7667
+ },
7668
+ "layers": {
7669
+ "description": "An array of feature layers, each describing the properties for a subtype in the feature service layer.",
7670
+ "items": {
7671
+ "$ref": "#/definitions/esri.rest-api.FeatureLayer.FeatureLayer"
7672
+ },
7673
+ "type": "array"
7674
+ },
7675
+ "listMode": {
7676
+ "$ref": "esri.ListMode",
7677
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See{@linkListMode}."
7678
+ },
7679
+ "maxScale": {
7680
+ "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.",
7681
+ "type": "number"
7682
+ },
7683
+ "minScale": {
7684
+ "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.",
7685
+ "type": "number"
7686
+ },
7687
+ "opacity": {
7688
+ "description": "The degree of transparency applied to the layer on the client side, where 0 is full transparency and 1 is no transparency.",
7689
+ "type": "number"
7690
+ },
7691
+ "refreshInterval": {
7692
+ "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.{@linkhttps://doc.arcgis.com/en/arcgis-online/create-maps/set-refresh-interval.htm}.",
7693
+ "type": "number"
7694
+ },
7695
+ "showLegend": {
7696
+ "description": "Indicates whether to allow map authors the ability to control what layers should be shown in a client's legend.",
7697
+ "type": "boolean"
7698
+ },
7699
+ "title": {
7700
+ "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.",
7701
+ "type": "string"
7702
+ },
7703
+ "type": {
7704
+ "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. See{@linkOperationalLayerType}and{@linkBaseMapLayerType}.",
7705
+ "enum": [
7706
+ "BingMapsAerial",
7707
+ "BingMapsHybrid",
7708
+ "BingMapsRoad",
7709
+ "CSV",
7710
+ "KML",
7711
+ "OpenStreetMap",
7712
+ "WMS",
7713
+ "WebTiledLayer"
7714
+ ],
7715
+ "type": "string"
7716
+ },
7717
+ "url": {
7718
+ "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.",
7719
+ "type": "string"
7720
+ },
7721
+ "visibility": {
7722
+ "description": "Determines whether the layer is initially visible in the web map.",
7723
+ "type": "boolean"
7724
+ }
7725
+ },
7726
+ "required": [
7727
+ "layerType"
7728
+ ],
7729
+ "type": "object"
7730
+ },
7216
7731
  "esri.rest-api.Symbol.Color": {
7217
7732
  "description": "Color is represented as a four-element array. The four elements represent values for red, green, blue, and alpha in that order. Values range from 0 through 255. If color is undefined for a symbol, the color value is null.{@linkhttps://developers.arcgis.com/web-map-specification/objects/color/}{@linkhttps://developers.arcgis.com/web-scene-specification/objects/color/}.",
7218
7733
  "items": {
@@ -7715,6 +8230,10 @@
7715
8230
  "customParameters": {
7716
8231
  "description": "A sequence of custom parameters appended to the URL of all requests related to supporting ArcGIS layer types."
7717
8232
  },
8233
+ "effect": {
8234
+ "$ref": "#/definitions/esri.rest-api.Effect.Effect",
8235
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
8236
+ },
7718
8237
  "id": {
7719
8238
  "description": "A unique identifying string for the layer.",
7720
8239
  "type": "string"
@@ -7809,6 +8328,10 @@
7809
8328
  },
7810
8329
  "type": "array"
7811
8330
  },
8331
+ "effect": {
8332
+ "$ref": "#/definitions/esri.rest-api.Effect.Effect",
8333
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
8334
+ },
7812
8335
  "exclusionAreas": {
7813
8336
  "$ref": "__type",
7814
8337
  "description": "Exclusion areas define extent areas where no data will be fetched for a layer. NOTE: Applicable if used as a baseMapLayer. An array of exclusionArea objects defining the layer exclusions.{@linkhttps://developers.arcgis.com/web-map-specification/objects/exclusionArea/}."
@@ -8303,6 +8826,10 @@
8303
8826
  "customParameters": {
8304
8827
  "description": "A sequence of custom parameters appended to the URL of all requests related to supporting ArcGIS layer types."
8305
8828
  },
8829
+ "effect": {
8830
+ "$ref": "#/definitions/esri.rest-api.Effect.Effect",
8831
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
8832
+ },
8306
8833
  "id": {
8307
8834
  "description": "A unique identifying string for the layer.",
8308
8835
  "type": "string"
@@ -8775,6 +9302,10 @@
8775
9302
  "customParameters": {
8776
9303
  "description": "A sequence of custom parameters to all WMS requests. These parameters are applied to GetCapabilities, GetMap, and GetFeatureInfo requests. If used with the customLayerParameters property, customParameters will not take precedence."
8777
9304
  },
9305
+ "effect": {
9306
+ "$ref": "#/definitions/esri.rest-api.Effect.Effect",
9307
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
9308
+ },
8778
9309
  "extent": {
8779
9310
  "description": "The rectangular map extent that should be requested from the service.",
8780
9311
  "items": {
@@ -8977,6 +9508,10 @@
8977
9508
  "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.",
8978
9509
  "type": "string"
8979
9510
  },
9511
+ "effect": {
9512
+ "$ref": "#/definitions/esri.rest-api.Effect.Effect",
9513
+ "description": "Effect provides various filter functions to achieve different visual effects similar to how image filters (photo apps) work."
9514
+ },
8980
9515
  "fullExtent": {
8981
9516
  "$ref": "#/definitions/esri.rest-api.Extent.Extent",
8982
9517
  "description": "An extent object representing the full extent envelope for the layer."