@vertigis/viewer-spec 42.10.0 → 42.14.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.
@@ -767,6 +767,10 @@
767
767
  "description": "The message to be displayed in the notification.",
768
768
  "type": "string"
769
769
  },
770
+ "notificationGroup": {
771
+ "description": "Notifications in the same notification group are mutually exclusive, and will supersede one another. Mobile only.",
772
+ "type": "string"
773
+ },
770
774
  "position": {
771
775
  "$ref": "Position",
772
776
  "description": "The position of the notification on the screen."
@@ -1495,10 +1499,15 @@
1495
1499
  "id": {
1496
1500
  "description": "The unique ID for this entity.",
1497
1501
  "type": "string"
1502
+ },
1503
+ "itemType": {
1504
+ "description": "The item type for this entity when it participates in an App.",
1505
+ "type": "string"
1498
1506
  }
1499
1507
  },
1500
1508
  "required": [
1501
- "id"
1509
+ "id",
1510
+ "itemType"
1502
1511
  ],
1503
1512
  "type": "object"
1504
1513
  },
@@ -2832,6 +2841,10 @@
2832
2841
  "description": "A string defining the character used to separate columns in a CSV file. You can set this property using any of the following: \",\", \" \", \";\", \"|\", \"\\t\". Used with CSV layers only.",
2833
2842
  "type": "string"
2834
2843
  },
2844
+ "disablePopup": {
2845
+ "description": "Indicates whether to allow a client to ignore popups defined by the service item.",
2846
+ "type": "boolean"
2847
+ },
2835
2848
  "id": {
2836
2849
  "description": "A unique identifying string for the layer.",
2837
2850
  "type": "string"
@@ -3446,7 +3459,7 @@
3446
3459
  "type": "array"
3447
3460
  },
3448
3461
  "fixedSymbols": {
3449
- "description": "Indicates whether symbols should stay the same size in screen units as you zoom in. A value of true means the symbols stay the same size in screen units regardless of the map scale.",
3462
+ "description": "Only used for feature collections with a renderer. The feature's symbol is defined by the layer's renderer. Not implemented in JSAPI 4.x.",
3450
3463
  "type": "boolean"
3451
3464
  },
3452
3465
  "labelingInfo": {
@@ -3460,6 +3473,10 @@
3460
3473
  "$ref": "#/definitions/esri.rest-api.Renderer.Renderer",
3461
3474
  "description": "A renderer object that provides the symbology for the layer."
3462
3475
  },
3476
+ "scaleSymbols": {
3477
+ "description": "Boolean property indicating whether symbols should stay the same size in screen units as you zoom in. A value of false means the symbols stay the same size in screen units regardless of the map scale. Not implemented in JSAPI 4.x.",
3478
+ "type": "boolean"
3479
+ },
3463
3480
  "showLabels": {
3464
3481
  "description": "Defines whether labels should be shown or not. This is only valid for sublayers.",
3465
3482
  "type": "boolean"
@@ -3894,6 +3911,9 @@
3894
3911
  "description": "A comma-separated string listing which editing operations are allowed on an editable feature service. Available operations include: Create | Delete | Query | Update | Editing.",
3895
3912
  "type": "string"
3896
3913
  },
3914
+ "customParameters": {
3915
+ "description": "A sequence of custom parameters appended to the URL of all requests related to supporting ArcGIS layer types."
3916
+ },
3897
3917
  "definitionEditor": {
3898
3918
  "$ref": "#/definitions/esri.rest-api.DefinitionEditor.DefinitionEditor",
3899
3919
  "description": "Stores interactive filters."
@@ -3910,6 +3930,10 @@
3910
3930
  "$ref": "#/definitions/esri.rest-api.FeatureLayer.FeatureCollectionType",
3911
3931
  "description": "Indicates the type of features in the feature collection. If featureCollectionType is missing, it means the feature collection is a regular single-layer or multi-layer feature collection."
3912
3932
  },
3933
+ "formInfo": {
3934
+ "$ref": "#/definitions/esri.rest-api.FormInfo.FormInfo",
3935
+ "description": "A formInfo object defining the content of the form when you are editing a feature."
3936
+ },
3913
3937
  "id": {
3914
3938
  "description": "A unique identifying string for the layer.",
3915
3939
  "type": "string"
@@ -3969,6 +3993,13 @@
3969
3993
  "description": "Indicates whether to allow map authors the ability to control what layers should be shown in a client's legend.",
3970
3994
  "type": "boolean"
3971
3995
  },
3996
+ "subtypeCode": {
3997
+ "description": "The feature subtype code identifying the layer. Used with SubtypeGroupLayers.",
3998
+ "type": [
3999
+ "string",
4000
+ "number"
4001
+ ]
4002
+ },
3972
4003
  "title": {
3973
4004
  "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.",
3974
4005
  "type": "string"
@@ -4248,6 +4279,487 @@
4248
4279
  ],
4249
4280
  "type": "object"
4250
4281
  },
4282
+ "esri.rest-api.FormInfo.FormAttachmentElement": {
4283
+ "additionalProperties": false,
4284
+ "description": "Defines how one or more attachments can participate in the form. When present in the form, the user has the ability to upload an attachment specific to the form element. {@link https://developers.arcgis.com/web-map-specification/objects/formAttachmentElement/}.",
4285
+ "properties": {
4286
+ "attachmentKeyword": {
4287
+ "description": "A string to identify the attachment(s). When a file is attached using the form, this property is used to set the value of the keywords field for the attachment. When a form is displaying existing attachments, this property is used to query attachments using an exact match on the keywords field.",
4288
+ "type": "string"
4289
+ },
4290
+ "description": {
4291
+ "description": "A string that describes the element in detail.",
4292
+ "type": "string"
4293
+ },
4294
+ "editable": {
4295
+ "description": "Indicates whether the attachments can be edited. If not present, the default is true.",
4296
+ "type": "boolean"
4297
+ },
4298
+ "inputType": {
4299
+ "additionalProperties": false,
4300
+ "description": "The input user interface to use for the attachment.",
4301
+ "properties": {
4302
+ "type": {
4303
+ "description": "The input type identifier.",
4304
+ "enum": [
4305
+ "attachment",
4306
+ "audio",
4307
+ "document",
4308
+ "image",
4309
+ "signature",
4310
+ "video"
4311
+ ],
4312
+ "type": "string"
4313
+ }
4314
+ },
4315
+ "required": [
4316
+ "type"
4317
+ ],
4318
+ "type": "object"
4319
+ },
4320
+ "label": {
4321
+ "description": "A string value indicating what the element represents.",
4322
+ "type": "string"
4323
+ },
4324
+ "type": {
4325
+ "description": "String value indicating which type of element to use.",
4326
+ "enum": [
4327
+ "attachment"
4328
+ ],
4329
+ "type": "string"
4330
+ },
4331
+ "visibilityExpression": {
4332
+ "description": "A reference to an Arcade expression that returns a boolean value. When this expression evaluates to true, the element is displayed. When the expression evaluates to false the element is not displayed. If no expression is provided, the default behavior is that the element is displayed.",
4333
+ "type": "string"
4334
+ }
4335
+ },
4336
+ "required": [
4337
+ "type"
4338
+ ],
4339
+ "type": "object"
4340
+ },
4341
+ "esri.rest-api.FormInfo.FormBarcodeScannerInput": {
4342
+ "additionalProperties": false,
4343
+ "description": "Defines the desired user interface is a barcode or QR code scanner. If the client does not support barcode scanning, a single-line text box should be used. {@link https://developers.arcgis.com/web-map-specification/objects/formBarcodeScannerInput/}.",
4344
+ "properties": {
4345
+ "maxLength": {
4346
+ "description": "This represents the maximum number of characters allowed. This only applies for string fields. If not supplied, the value is derived from the length property of the referenced field in the service.",
4347
+ "type": "number"
4348
+ },
4349
+ "minLength": {
4350
+ "description": "This represents the minimum number of characters allowed. This only applies for string fields. If not supplied, the value is 0, meaning there is no minimum constraint.",
4351
+ "type": "number"
4352
+ },
4353
+ "type": {
4354
+ "description": "The input type identifier.",
4355
+ "enum": [
4356
+ "barcode-scanner"
4357
+ ],
4358
+ "type": "string"
4359
+ }
4360
+ },
4361
+ "required": [
4362
+ "type"
4363
+ ],
4364
+ "type": "object"
4365
+ },
4366
+ "esri.rest-api.FormInfo.FormComboBoxInput": {
4367
+ "additionalProperties": false,
4368
+ "description": "Defines the desired user interface is a list of values in a drop-down that supports typing to filter. Only one value can be selected at a time. {@link https://developers.arcgis.com/web-map-specification/objects/formComboBoxInput/}.",
4369
+ "properties": {
4370
+ "noValueOptionLabel": {
4371
+ "description": "The text used to represent a null value.",
4372
+ "type": "string"
4373
+ },
4374
+ "showNoValueOption": {
4375
+ "description": "Determines whether null value option is displayed. This only applies to fields that support null values. If not provided, the default value is false.",
4376
+ "type": "boolean"
4377
+ },
4378
+ "type": {
4379
+ "description": "The input type identifier.",
4380
+ "enum": [
4381
+ "combo-box"
4382
+ ],
4383
+ "type": "string"
4384
+ }
4385
+ },
4386
+ "required": [
4387
+ "type"
4388
+ ],
4389
+ "type": "object"
4390
+ },
4391
+ "esri.rest-api.FormInfo.FormDateTimePickerInput": {
4392
+ "additionalProperties": false,
4393
+ "description": "Defines the desired user interface is a calendar date picker. {@link https://developers.arcgis.com/web-map-specification/objects/formDatetimePickerInput/}.",
4394
+ "properties": {
4395
+ "includeTime": {
4396
+ "description": "Indicates if the datetime picker should provide an option to select the time. If not provided, the default value is false.",
4397
+ "type": "boolean"
4398
+ },
4399
+ "max": {
4400
+ "description": "The maximum date to allow. The number represents the number of milliseconds since epoch (January 1, 1970) in UTC.",
4401
+ "type": "number"
4402
+ },
4403
+ "min": {
4404
+ "description": "The minimum date to allow. The number represents the number of milliseconds since epoch (January 1, 1970) in UTC.",
4405
+ "type": "number"
4406
+ },
4407
+ "type": {
4408
+ "description": "The input type identifier.",
4409
+ "enum": [
4410
+ "datetime-picker"
4411
+ ],
4412
+ "type": "string"
4413
+ }
4414
+ },
4415
+ "required": [
4416
+ "type"
4417
+ ],
4418
+ "type": "object"
4419
+ },
4420
+ "esri.rest-api.FormInfo.FormExpressionInfo": {
4421
+ "additionalProperties": false,
4422
+ "description": "Arcade expression used in the form. {@link https://developers.arcgis.com/web-map-specification/objects/formExpressionInfo/}.",
4423
+ "properties": {
4424
+ "expression": {
4425
+ "description": "The Arcade expression.",
4426
+ "type": "string"
4427
+ },
4428
+ "name": {
4429
+ "description": "Unique identifier for the expression.",
4430
+ "type": "string"
4431
+ },
4432
+ "returnType": {
4433
+ "description": "Return type of the Arcade expression. This can be determined by the authoring client by executing the expression using a sample feature(s), although it can be corrected by the user.",
4434
+ "enum": [
4435
+ "boolean"
4436
+ ],
4437
+ "type": "string"
4438
+ },
4439
+ "title": {
4440
+ "description": "Title of the expression.",
4441
+ "type": "string"
4442
+ }
4443
+ },
4444
+ "type": "object"
4445
+ },
4446
+ "esri.rest-api.FormInfo.FormFieldElement": {
4447
+ "additionalProperties": false,
4448
+ "description": "Defines how a field in the dataset participates in the form. {@link https://developers.arcgis.com/web-map-specification/objects/formFieldElement/}.",
4449
+ "properties": {
4450
+ "description": {
4451
+ "description": "A string that describes the element in detail.",
4452
+ "type": "string"
4453
+ },
4454
+ "domain": {
4455
+ "$ref": "#/definitions/esri.rest-api.Domain.Domain",
4456
+ "description": "The domain to apply to this field. If defined, it takes precedence over domains defined in field, type, or subtype."
4457
+ },
4458
+ "editable": {
4459
+ "description": "A Boolean determining whether users can edit this form element. If not supplied, the editable state is derived from the editable property of referenced field in the service.",
4460
+ "type": "boolean"
4461
+ },
4462
+ "fieldName": {
4463
+ "description": "A string containing the field name as defined by the feature layer.",
4464
+ "type": "string"
4465
+ },
4466
+ "inputType": {
4467
+ "anyOf": [
4468
+ {
4469
+ "$ref": "#/definitions/esri.rest-api.FormInfo.FormBarcodeScannerInput"
4470
+ },
4471
+ {
4472
+ "$ref": "#/definitions/esri.rest-api.FormInfo.FormComboBoxInput"
4473
+ },
4474
+ {
4475
+ "$ref": "#/definitions/esri.rest-api.FormInfo.FormDateTimePickerInput"
4476
+ },
4477
+ {
4478
+ "$ref": "#/definitions/esri.rest-api.FormInfo.FormRadioButtonsInput"
4479
+ },
4480
+ {
4481
+ "$ref": "#/definitions/esri.rest-api.FormInfo.FormSwitchInput"
4482
+ },
4483
+ {
4484
+ "$ref": "#/definitions/esri.rest-api.FormInfo.FormTextAreaInput"
4485
+ },
4486
+ {
4487
+ "$ref": "#/definitions/esri.rest-api.FormInfo.FormTextBoxInput"
4488
+ }
4489
+ ],
4490
+ "description": "The input user interface to use for the element. If an input type is not supplied or the client application does not understand the supplied input type, the client application is responsible for defining the default user interface."
4491
+ },
4492
+ "label": {
4493
+ "description": "A string indicating what the element represents. If not supplied, the label is derived from the alias property in the referenced field in the service.",
4494
+ "type": "string"
4495
+ },
4496
+ "requiredExpression": {
4497
+ "description": "A reference to an Arcade expression that returns a boolean value. When this expression evaluates to true and the element is visible, the element must have a valid value in order for the feature to be created or edited. When the expression evaluates to false the element is not required. If no expression is provided, the default behavior is that the element is not required. If the referenced field is non-nullable, the required expression is ignored and the element is always required.",
4498
+ "type": "string"
4499
+ },
4500
+ "type": {
4501
+ "description": "A string indicating which type of element to use.",
4502
+ "enum": [
4503
+ "field"
4504
+ ],
4505
+ "type": "string"
4506
+ },
4507
+ "visibilityExpression": {
4508
+ "description": "A reference to an Arcade expression that returns a boolean value. When this expression evaluates to true, the element is displayed. When the expression evaluates to false the element is not displayed. If no expression is provided, the default behavior is that the element is displayed. Care must be taken when defining a visibility expression for a non-nullable field i.e. to make sure that such fields either have default values or are made visible to users so that they can provide a value before submitting the form.",
4509
+ "type": "string"
4510
+ }
4511
+ },
4512
+ "required": [
4513
+ "type"
4514
+ ],
4515
+ "type": "object"
4516
+ },
4517
+ "esri.rest-api.FormInfo.FormGroupElement": {
4518
+ "additionalProperties": false,
4519
+ "description": "Defines a container that holds a set of form elements that can be expanded, collapsed, or displayed together. {@link https://developers.arcgis.com/web-map-specification/objects/formGroupElement/}.",
4520
+ "properties": {
4521
+ "description": {
4522
+ "description": "A string that describes the element in detail.",
4523
+ "type": "string"
4524
+ },
4525
+ "formElements": {
4526
+ "description": "An array of Form Element objects that represent an ordered list of form elements. Nested group elements are not supported.",
4527
+ "items": {
4528
+ "anyOf": [
4529
+ {
4530
+ "$ref": "#/definitions/esri.rest-api.FormInfo.FormAttachmentElement"
4531
+ },
4532
+ {
4533
+ "$ref": "#/definitions/esri.rest-api.FormInfo.FormFieldElement"
4534
+ },
4535
+ {
4536
+ "$ref": "#/definitions/esri.rest-api.FormInfo.FormRelationshipElement"
4537
+ }
4538
+ ]
4539
+ },
4540
+ "type": "array"
4541
+ },
4542
+ "initialState": {
4543
+ "description": "Defines if the group should be expanded or collapsed when the form is initially displayed. If not provided, the default value is expanded.",
4544
+ "enum": [
4545
+ "collapsed",
4546
+ "expanded"
4547
+ ],
4548
+ "type": "string"
4549
+ },
4550
+ "label": {
4551
+ "description": "A string value indicating what the element represents.",
4552
+ "type": "string"
4553
+ },
4554
+ "type": {
4555
+ "description": "String value indicating which type of element to use.",
4556
+ "enum": [
4557
+ "group"
4558
+ ],
4559
+ "type": "string"
4560
+ },
4561
+ "visibilityExpression": {
4562
+ "description": "A reference to an Arcade expression that returns a boolean value. When this expression evaluates to true, the element is displayed. When the expression evaluates to false the element is not displayed. If no expression is provided, the default behavior is that the element is displayed.",
4563
+ "type": "string"
4564
+ }
4565
+ },
4566
+ "required": [
4567
+ "type"
4568
+ ],
4569
+ "type": "object"
4570
+ },
4571
+ "esri.rest-api.FormInfo.FormInfo": {
4572
+ "additionalProperties": false,
4573
+ "description": "Defines the form configuration when a user edits a feature. {@link https://developers.arcgis.com/web-map-specification/objects/formInfo/}.",
4574
+ "properties": {
4575
+ "description": {
4576
+ "description": "A string that appears in the body of the form as a description.",
4577
+ "type": "string"
4578
+ },
4579
+ "expressionInfos": {
4580
+ "description": "List of Arcade expressions used in the form.",
4581
+ "items": {
4582
+ "$ref": "#/definitions/esri.rest-api.FormInfo.FormExpressionInfo"
4583
+ },
4584
+ "type": "array"
4585
+ },
4586
+ "formElements": {
4587
+ "description": "An array of formElement objects that represent an ordered list of form elements.",
4588
+ "items": {
4589
+ "anyOf": [
4590
+ {
4591
+ "$ref": "#/definitions/esri.rest-api.FormInfo.FormAttachmentElement"
4592
+ },
4593
+ {
4594
+ "$ref": "#/definitions/esri.rest-api.FormInfo.FormFieldElement"
4595
+ },
4596
+ {
4597
+ "$ref": "#/definitions/esri.rest-api.FormInfo.FormGroupElement"
4598
+ },
4599
+ {
4600
+ "$ref": "#/definitions/esri.rest-api.FormInfo.FormRelationshipElement"
4601
+ }
4602
+ ]
4603
+ },
4604
+ "type": "array"
4605
+ },
4606
+ "title": {
4607
+ "description": "A string that appears at the top of the form as a title.",
4608
+ "type": "string"
4609
+ }
4610
+ },
4611
+ "type": "object"
4612
+ },
4613
+ "esri.rest-api.FormInfo.FormRadioButtonsInput": {
4614
+ "additionalProperties": false,
4615
+ "description": "Defines the desired user interface is a radio button group. {@link https://developers.arcgis.com/web-map-specification/objects/formRadioButtonsInput/}.",
4616
+ "properties": {
4617
+ "noValueOptionLabel": {
4618
+ "description": "The text used to represent a null value.",
4619
+ "type": "string"
4620
+ },
4621
+ "showNoValueOption": {
4622
+ "description": "Determines whether null value option is displayed. This only applies to fields that support null values. If not provided, the default value is false.",
4623
+ "type": "boolean"
4624
+ },
4625
+ "type": {
4626
+ "description": "The input type identifier.",
4627
+ "enum": [
4628
+ "radio-buttons"
4629
+ ],
4630
+ "type": "string"
4631
+ }
4632
+ },
4633
+ "required": [
4634
+ "type"
4635
+ ],
4636
+ "type": "object"
4637
+ },
4638
+ "esri.rest-api.FormInfo.FormRelationshipElement": {
4639
+ "additionalProperties": false,
4640
+ "description": "Defines how a relationship between feature layers and tables can participate in the form. When present in the form, the user may have the option to add or edit related records. {@link https://developers.arcgis.com/web-map-specification/objects/formRelationshipElement/}.",
4641
+ "properties": {
4642
+ "description": {
4643
+ "description": "A string that describes the element in detail.",
4644
+ "type": "string"
4645
+ },
4646
+ "displayCount": {
4647
+ "description": "An integer that indicates the maximum number of records to display.",
4648
+ "type": "number"
4649
+ },
4650
+ "displayType": {
4651
+ "description": "A string that defines how the related records should be displayed.",
4652
+ "enum": [
4653
+ "list"
4654
+ ],
4655
+ "type": "string"
4656
+ },
4657
+ "editable": {
4658
+ "description": "A Boolean determining whether users can edit this form element. If not supplied the default value is true.",
4659
+ "type": "boolean"
4660
+ },
4661
+ "label": {
4662
+ "description": "A string value indicating what the element represents.",
4663
+ "type": "string"
4664
+ },
4665
+ "type": {
4666
+ "description": "String value indicating which type of element to use.",
4667
+ "enum": [
4668
+ "relationship"
4669
+ ],
4670
+ "type": "string"
4671
+ },
4672
+ "visibilityExpression": {
4673
+ "description": "A reference to an Arcade expression that returns a boolean value. When this expression evaluates to true, the element is displayed. When the expression evaluates to false the element is not displayed. If no expression is provided, the default behavior is that the element is displayed.",
4674
+ "type": "string"
4675
+ }
4676
+ },
4677
+ "required": [
4678
+ "type"
4679
+ ],
4680
+ "type": "object"
4681
+ },
4682
+ "esri.rest-api.FormInfo.FormSwitchInput": {
4683
+ "additionalProperties": false,
4684
+ "description": "Defines a desired user interface to present a binary switch, or toggle. This should be used when selecting between two options. {@link https://developers.arcgis.com/web-map-specification/objects/formSwitchInput/}.",
4685
+ "properties": {
4686
+ "offValue": {
4687
+ "description": "The coded value when switch state is off.",
4688
+ "type": [
4689
+ "string",
4690
+ "number"
4691
+ ]
4692
+ },
4693
+ "onValue": {
4694
+ "description": "The coded value when switch state is on.",
4695
+ "type": [
4696
+ "string",
4697
+ "number"
4698
+ ]
4699
+ },
4700
+ "type": {
4701
+ "description": "The input type identifier.",
4702
+ "enum": [
4703
+ "switch"
4704
+ ],
4705
+ "type": "string"
4706
+ }
4707
+ },
4708
+ "required": [
4709
+ "type"
4710
+ ],
4711
+ "type": "object"
4712
+ },
4713
+ "esri.rest-api.FormInfo.FormTextAreaInput": {
4714
+ "additionalProperties": false,
4715
+ "description": "Defines the desired user interface is a multi-line text area. {@link https://developers.arcgis.com/web-map-specification/objects/formTextAreaInput/}.",
4716
+ "properties": {
4717
+ "maxLength": {
4718
+ "description": "This represents the maximum number of characters allowed. If not supplied, the value is derived from the length property of the referenced field in the service.",
4719
+ "type": "number"
4720
+ },
4721
+ "minLength": {
4722
+ "description": "This represents the minimum number of characters allowed. If not supplied, the value is 0, meaning there is no minimum constraint.",
4723
+ "type": "number"
4724
+ },
4725
+ "type": {
4726
+ "description": "The input type identifier.",
4727
+ "enum": [
4728
+ "text-area"
4729
+ ],
4730
+ "type": "string"
4731
+ }
4732
+ },
4733
+ "required": [
4734
+ "type"
4735
+ ],
4736
+ "type": "object"
4737
+ },
4738
+ "esri.rest-api.FormInfo.FormTextBoxInput": {
4739
+ "additionalProperties": false,
4740
+ "description": "Defines the desired user interface is a single-line text box. {@link https://developers.arcgis.com/web-map-specification/objects/formTextBoxInput/}.",
4741
+ "properties": {
4742
+ "maxLength": {
4743
+ "description": "This represents the maximum number of characters allowed. This only applies for string fields. If not supplied, the value is derived from the length property of the referenced field in the service.",
4744
+ "type": "number"
4745
+ },
4746
+ "minLength": {
4747
+ "description": "This represents the minimum number of characters allowed. This only applies for string fields. If not supplied, the value is 0, meaning there is no minimum constraint.",
4748
+ "type": "number"
4749
+ },
4750
+ "type": {
4751
+ "description": "The input type identifier.",
4752
+ "enum": [
4753
+ "text-box"
4754
+ ],
4755
+ "type": "string"
4756
+ }
4757
+ },
4758
+ "required": [
4759
+ "type"
4760
+ ],
4761
+ "type": "object"
4762
+ },
4251
4763
  "esri.rest-api.Format.DateFormat": {
4252
4764
  "description": "Possible date formats for {@link Format.dateFormat}.",
4253
4765
  "enum": [
@@ -4721,6 +5233,9 @@
4721
5233
  "description": "The attribution information for the layer. (not in the documentation).",
4722
5234
  "type": "string"
4723
5235
  },
5236
+ "customParameters": {
5237
+ "description": "A sequence of custom parameters appended to the URL of all requests related to supporting ArcGIS layer types."
5238
+ },
4724
5239
  "definitionEditor": {
4725
5240
  "$ref": "#/definitions/esri.rest-api.DefinitionEditor.DefinitionEditor",
4726
5241
  "description": "Stores interactive filters."
@@ -4864,6 +5379,9 @@
4864
5379
  "$ref": "#/definitions/esri.rest-api._LayerBase.BlendMode",
4865
5380
  "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."
4866
5381
  },
5382
+ "customParameters": {
5383
+ "description": "A sequence of custom parameters appended to the URL of all requests related to supporting ArcGIS layer types."
5384
+ },
4867
5385
  "definitionEditor": {
4868
5386
  "$ref": "#/definitions/esri.rest-api.DefinitionEditor.DefinitionEditor",
4869
5387
  "description": "Stores interactive filters."
@@ -5073,8 +5591,11 @@
5073
5591
  "description": "Information on the source of the item and its copyright status.",
5074
5592
  "type": "string"
5075
5593
  },
5594
+ "advancedSettings": {
5595
+ "description": "<not in spec>."
5596
+ },
5076
5597
  "appCategories": {
5077
- "description": "<not in spec>.",
5598
+ "description": "An array that primarily applies to a list of categories that the application item is applicable to.",
5078
5599
  "items": {
5079
5600
  "type": "string"
5080
5601
  },
@@ -5099,6 +5620,10 @@
5099
5620
  "description": "Indicates if comments are allowed on the item.",
5100
5621
  "type": "boolean"
5101
5622
  },
5623
+ "contentOrigin": {
5624
+ "description": "<not in spec>.",
5625
+ "type": "string"
5626
+ },
5102
5627
  "created": {
5103
5628
  "description": "The date the item was created. Shown in UNIX time in milliseconds.",
5104
5629
  "type": "number"
@@ -5111,6 +5636,9 @@
5111
5636
  "description": "Item description.",
5112
5637
  "type": "string"
5113
5638
  },
5639
+ "documentation": {
5640
+ "description": "<not in spec>."
5641
+ },
5114
5642
  "extent": {
5115
5643
  "description": "The bounding rectangle of the item. Should always be in WGS84.",
5116
5644
  "items": {
@@ -5121,6 +5649,9 @@
5121
5649
  },
5122
5650
  "type": "array"
5123
5651
  },
5652
+ "groupDesignations": {
5653
+ "description": "<not in spec>."
5654
+ },
5124
5655
  "guid": {
5125
5656
  "description": "<not in spec>.",
5126
5657
  "type": "string"
@@ -5136,6 +5667,10 @@
5136
5667
  },
5137
5668
  "type": "array"
5138
5669
  },
5670
+ "isOrgItem": {
5671
+ "description": "<not in spec>.",
5672
+ "type": "boolean"
5673
+ },
5139
5674
  "itemControl": {
5140
5675
  "description": "Indicates user's control to the item. Values: admin (for item owner and org admin) | update (for members of groups with item update capability that the item is shared with).",
5141
5676
  "enum": [
@@ -5196,7 +5731,7 @@
5196
5731
  "type": "string"
5197
5732
  },
5198
5733
  "properties": {
5199
- "description": "<not in spec>.",
5734
+ "description": "A JSON object that primarily applies to system requirements, Terms and Conditions, version, supported platforms, YouTube video ID, etc associated with the application.",
5200
5735
  "type": "string"
5201
5736
  },
5202
5737
  "protected": {
@@ -5229,6 +5764,10 @@
5229
5764
  "$ref": "#/definitions/esri.rest-api.SpatialReference.SpatialReference",
5230
5765
  "description": "The coordinate system of the item."
5231
5766
  },
5767
+ "subInfo": {
5768
+ "description": "<not in spec>.",
5769
+ "type": "number"
5770
+ },
5232
5771
  "tags": {
5233
5772
  "description": "User defined tags that describe the item.",
5234
5773
  "items": {
@@ -5494,14 +6033,15 @@
5494
6033
  "description": "An Arcade expression evaluating to either a string or a number.",
5495
6034
  "type": "string"
5496
6035
  },
6036
+ "title": {
6037
+ "description": "The title of the expression.",
6038
+ "type": "string"
6039
+ },
5497
6040
  "value": {
5498
- "description": "Represents a simple template string.",
6041
+ "description": "Represents a simple template string. This property is deprecated as of version 2.7 of the web map in favor of 'expression'.",
5499
6042
  "type": "string"
5500
6043
  }
5501
6044
  },
5502
- "required": [
5503
- "value"
5504
- ],
5505
6045
  "type": "object"
5506
6046
  },
5507
6047
  "labelPlacement": {
@@ -5619,6 +6159,25 @@
5619
6159
  },
5620
6160
  "type": "object"
5621
6161
  },
6162
+ "esri.rest-api.LayerDefinition.FieldOverride": {
6163
+ "additionalProperties": false,
6164
+ "description": "Defines overridden properties on a field for a specific view of the data. {@link https://developers.arcgis.com/web-map-specification/objects/fieldOverride/}.",
6165
+ "properties": {
6166
+ "alias": {
6167
+ "description": "A string containing the overridden field alias.",
6168
+ "type": "string"
6169
+ },
6170
+ "editable": {
6171
+ "description": "A Boolean determining whether users can edit this field.",
6172
+ "type": "boolean"
6173
+ },
6174
+ "name": {
6175
+ "description": "A string containing the field name as defined by the service.",
6176
+ "type": "string"
6177
+ }
6178
+ },
6179
+ "type": "object"
6180
+ },
5622
6181
  "esri.rest-api.LayerDefinition.HtmlPopupType": {
5623
6182
  "description": "The HTML popup type for the LayerDefinition.",
5624
6183
  "enum": [
@@ -5684,6 +6243,13 @@
5684
6243
  "$ref": "#/definitions/esri.rest-api.FeatureReduction.FeatureReduction",
5685
6244
  "description": "Feature reductions declutter the screen by hiding features that would otherwise intersect with other features on screen."
5686
6245
  },
6246
+ "fieldOverrides": {
6247
+ "description": "The layer-specific overrides of field properties. Used by SubtypeGroupLayer to modify field information for each subtype. Any field missing from this array should be hidden.",
6248
+ "items": {
6249
+ "$ref": "#/definitions/esri.rest-api.LayerDefinition.FieldOverride"
6250
+ },
6251
+ "type": "array"
6252
+ },
5687
6253
  "fields": {
5688
6254
  "description": "An array of Field objects containing information about the attribute fields for the feature collection or layer.",
5689
6255
  "items": {
@@ -5691,6 +6257,20 @@
5691
6257
  },
5692
6258
  "type": "array"
5693
6259
  },
6260
+ "floorInfo": {
6261
+ "additionalProperties": false,
6262
+ "description": "Contains floor-awareness information for the layer. {@link https://developers.arcgis.com/web-map-specification/objects/layerFloorInfo/}.",
6263
+ "properties": {
6264
+ "floorField": {
6265
+ "description": "The name of the attribute field that contains a floor's level ID used for floor filtering.",
6266
+ "type": "string"
6267
+ }
6268
+ },
6269
+ "required": [
6270
+ "floorField"
6271
+ ],
6272
+ "type": "object"
6273
+ },
5694
6274
  "geometryType": {
5695
6275
  "description": "The type of geometry used in the layer definition. One of the GeometryType constants.",
5696
6276
  "type": "string"
@@ -5747,6 +6327,13 @@
5747
6327
  "description": "Indicates the name of the object ID field in the dataset.",
5748
6328
  "type": "string"
5749
6329
  },
6330
+ "orderBy": {
6331
+ "description": "Determines the display order of features on the map (currently undocumented in the web map spec but supported by Esri's viewer).",
6332
+ "items": {
6333
+ "$ref": "#/definitions/esri.rest-api.LayerDefinition.OrderByClause"
6334
+ },
6335
+ "type": "array"
6336
+ },
5750
6337
  "overrideSymbols": {
5751
6338
  "description": "Dictates whether a client can support having an end user modify symbols on individual features.",
5752
6339
  "type": "boolean"
@@ -5793,43 +6380,189 @@
5793
6380
  "description": "Boolean value indicating whether the layer supports rolling back edits made on a feature layer if some of the edits fail.",
5794
6381
  "type": "boolean"
5795
6382
  },
5796
- "supportsStatistics": {
5797
- "description": "Boolean value indicating whether feature layer query operations support statistical functions.",
5798
- "type": "boolean"
6383
+ "supportsStatistics": {
6384
+ "description": "Boolean value indicating whether feature layer query operations support statistical functions.",
6385
+ "type": "boolean"
6386
+ },
6387
+ "supportsValidateSql": {
6388
+ "description": "Boolean value indicating whether the validateSQL operation is supported across a feature service layer.",
6389
+ "type": "boolean"
6390
+ },
6391
+ "templates": {
6392
+ "description": "An array of template objects describing features that can be created in this layer. Templates are used with map notes, other feature collections, and editable web-based CSV layers. They are not used with ArcGIS feature services, which already have feature templates defined in the service. Templates are defined as a property of the layer definition when there are no types defined; otherwise, templates are defined as properties of the types.",
6393
+ "items": {
6394
+ "$ref": "#/definitions/esri.rest-api.Template.Template"
6395
+ },
6396
+ "type": "array"
6397
+ },
6398
+ "timeInfo": {
6399
+ "$ref": "#/definitions/esri.rest-api.LayerDefinition.LayerTimeInfo",
6400
+ "description": "The time info metadata of the layer. May be set for feature layers inside a feature collection item."
6401
+ },
6402
+ "type": {
6403
+ "description": "Indicates whether the layerDefinition applies to a \"Feature Layer\" or a \"Table\".",
6404
+ "type": "string"
6405
+ },
6406
+ "typeIdField": {
6407
+ "description": "The name of the field holding the type ID for the features, if types exist for the dataset. Each available type has an ID, and each feature's typeIdField can be read to determine the type for each feature.",
6408
+ "type": "string"
6409
+ },
6410
+ "types": {
6411
+ "description": "An array of Type objects available for the dataset. This is used when the typeIdField is populated. Types contain information about the combinations of attributes that are allowed for features in the dataset. Each feature in the dataset can have a type, indicated in its typeIdField.",
6412
+ "items": {
6413
+ "$ref": "#/definitions/esri.rest-api.Type.Type"
6414
+ },
6415
+ "type": "array"
6416
+ },
6417
+ "visibilityField": {
6418
+ "description": "String value indicating the attribute field that is used to control the visibility of a feature. If applicable, when rendering a feature the client should use this field to control visibility. The field's values are 0 = do not display, 1 = display.",
6419
+ "type": "string"
6420
+ }
6421
+ },
6422
+ "type": "object"
6423
+ },
6424
+ "esri.rest-api.LayerDefinition.LayerTimeInfo": {
6425
+ "additionalProperties": false,
6426
+ "description": "Time info if the layer/table supports querying and exporting maps based on time. {@link https://developers.arcgis.com/web-map-specification/objects/layerTimeInfo/}.",
6427
+ "properties": {
6428
+ "endTimeField": {
6429
+ "description": "The name of the attribute field that contains the end time information.",
6430
+ "type": "string"
6431
+ },
6432
+ "exportOptions": {
6433
+ "$ref": "#/definitions/esri.rest-api.LayerDefinition.TimeInfoExportOptions",
6434
+ "description": "The default time-related export options for this layer."
6435
+ },
6436
+ "hasLiveData": {
6437
+ "description": "Indicates whether service has live data.",
6438
+ "type": "boolean"
6439
+ },
6440
+ "startTimeField": {
6441
+ "description": "The name of the attribute field that contains the start time information.",
6442
+ "type": "string"
6443
+ },
6444
+ "timeExtent": {
6445
+ "additionalItems": {
6446
+ "anyOf": [
6447
+ {
6448
+ "type": "number"
6449
+ },
6450
+ {
6451
+ "type": "number"
6452
+ }
6453
+ ]
6454
+ },
6455
+ "description": "The time extent for all the data in the layer.",
6456
+ "items": [
6457
+ {
6458
+ "type": "number"
6459
+ },
6460
+ {
6461
+ "type": "number"
6462
+ }
6463
+ ],
6464
+ "minItems": 2,
6465
+ "type": "array"
6466
+ },
6467
+ "timeInterval": {
6468
+ "description": "Time interval of the data in the layer. Typically used for the TimeSlider when animating the layer.",
6469
+ "type": "number"
5799
6470
  },
5800
- "supportsValidateSql": {
5801
- "description": "Boolean value indicating whether the validateSQL operation is supported across a feature service layer.",
5802
- "type": "boolean"
6471
+ "timeIntervalUnits": {
6472
+ "$ref": "#/definitions/esri.rest-api.LayerDefinition.TemporalUnit",
6473
+ "description": "Temporal unit in which the time interval is measured."
5803
6474
  },
5804
- "templates": {
5805
- "description": "An array of template objects describing features that can be created in this layer. Templates are used with map notes, other feature collections, and editable web-based CSV layers. They are not used with ArcGIS feature services, which already have feature templates defined in the service. Templates are defined as a property of the layer definition when there are no types defined; otherwise, templates are defined as properties of the types.",
5806
- "items": {
5807
- "$ref": "#/definitions/esri.rest-api.Template.Template"
6475
+ "timeReference": {
6476
+ "additionalProperties": false,
6477
+ "description": "Defines information about daylight savings time and the time zone in which data was collected. {@link https://developers.arcgis.com/web-map-specification/objects/timeReference/}.",
6478
+ "properties": {
6479
+ "respectsDaylightSaving": {
6480
+ "description": "Indicates whether the time reference takes into account daylight savings time.",
6481
+ "type": "boolean"
6482
+ },
6483
+ "timeZone": {
6484
+ "description": "The time zone in which the data was captured.",
6485
+ "type": "string"
6486
+ }
5808
6487
  },
5809
- "type": "array"
6488
+ "required": [
6489
+ "respectsDaylightSaving"
6490
+ ],
6491
+ "type": "object"
5810
6492
  },
5811
- "type": {
5812
- "description": "Indicates whether the layerDefinition applies to a \"Feature Layer\" or a \"Table\".",
6493
+ "trackIdField": {
6494
+ "description": "The field that contains the trackId.",
5813
6495
  "type": "string"
5814
- },
5815
- "typeIdField": {
5816
- "description": "The name of the field holding the type ID for the features, if types exist for the dataset. Each available type has an ID, and each feature's typeIdField can be read to determine the type for each feature.",
6496
+ }
6497
+ },
6498
+ "required": [
6499
+ "trackIdField"
6500
+ ],
6501
+ "type": "object"
6502
+ },
6503
+ "esri.rest-api.LayerDefinition.OrderByClause": {
6504
+ "additionalProperties": false,
6505
+ "description": "A clause in a layer definition's `orderBy` property.",
6506
+ "properties": {
6507
+ "field": {
6508
+ "description": "The number or date field whose values will be used to sort features.",
5817
6509
  "type": "string"
5818
6510
  },
5819
- "types": {
5820
- "description": "An array of Type objects available for the dataset. This is used when the typeIdField is populated. Types contain information about the combinations of attributes that are allowed for features in the dataset. Each feature in the dataset can have a type, indicated in its typeIdField.",
5821
- "items": {
5822
- "$ref": "#/definitions/esri.rest-api.Type.Type"
5823
- },
5824
- "type": "array"
6511
+ "order": {
6512
+ "description": "The sort order.",
6513
+ "enum": [
6514
+ "asc",
6515
+ "desc"
6516
+ ],
6517
+ "type": "string"
5825
6518
  },
5826
- "visibilityField": {
5827
- "description": "String value indicating the attribute field that is used to control the visibility of a feature. If applicable, when rendering a feature the client should use this field to control visibility. The field's values are 0 = do not display, 1 = display.",
6519
+ "valueExpression": {
6520
+ "description": "The [Arcade expression](https://developers.arcgis.com/javascript/latest/arcade/) whose return value will be used to sort features. [Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-mixins-OrderedLayer.html#orderBy).",
5828
6521
  "type": "string"
5829
6522
  }
5830
6523
  },
5831
6524
  "type": "object"
5832
6525
  },
6526
+ "esri.rest-api.LayerDefinition.TemporalUnit": {
6527
+ "description": "Temporal units in which a time value can be measured.",
6528
+ "enum": [
6529
+ "esriTimeUnitsCenturies",
6530
+ "esriTimeUnitsDays",
6531
+ "esriTimeUnitsDecades",
6532
+ "esriTimeUnitsHours",
6533
+ "esriTimeUnitsMilliseconds",
6534
+ "esriTimeUnitsMinutes",
6535
+ "esriTimeUnitsMonths",
6536
+ "esriTimeUnitsSeconds",
6537
+ "esriTimeUnitsUnknown",
6538
+ "esriTimeUnitsWeeks",
6539
+ "esriTimeUnitsYears"
6540
+ ],
6541
+ "type": "string"
6542
+ },
6543
+ "esri.rest-api.LayerDefinition.TimeInfoExportOptions": {
6544
+ "additionalProperties": false,
6545
+ "description": "The default time-related export options for a layer. {@link: https://developers.arcgis.com/web-map-specification/objects/timeInfoExportOptions/}.",
6546
+ "properties": {
6547
+ "timeDataCumulative": {
6548
+ "description": "If true, draw all the features from the beginning of time for that data.",
6549
+ "type": "boolean"
6550
+ },
6551
+ "timeOffset": {
6552
+ "description": "Time offset value for this layer so that it can be overlaid on the top of a previous or future time period.",
6553
+ "type": "number"
6554
+ },
6555
+ "timeOffsetUnits": {
6556
+ "$ref": "#/definitions/esri.rest-api.LayerDefinition.TemporalUnit",
6557
+ "description": "Temporal unit in which the time offset is measured."
6558
+ },
6559
+ "useTime": {
6560
+ "description": "If true, use the time extent specified by the time parameter.",
6561
+ "type": "boolean"
6562
+ }
6563
+ },
6564
+ "type": "object"
6565
+ },
5833
6566
  "esri.rest-api.LineSymbol3D.LineSymbol3D": {
5834
6567
  "additionalProperties": false,
5835
6568
  "description": "LineSymbol3D is used to render features with Polyline geometry in a 3D SceneView. {@link https://developers.arcgis.com/web-scene-specification/objects/lineSymbol3D/}.",
@@ -5918,6 +6651,9 @@
5918
6651
  "$ref": "#/definitions/esri.rest-api._LayerBase.BlendMode",
5919
6652
  "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."
5920
6653
  },
6654
+ "customParameters": {
6655
+ "description": "A sequence of custom parameters appended to the URL of all requests related to supporting ArcGIS layer types."
6656
+ },
5921
6657
  "id": {
5922
6658
  "description": "A unique identifying string for the layer.",
5923
6659
  "type": "string"
@@ -7637,6 +8373,10 @@
7637
8373
  "$ref": "#/definitions/esri.rest-api.Renderer.ClassificationMethod",
7638
8374
  "description": "Used for classed color or size. The default value is esriClassifyManual. See {@link ClassificationMethod}."
7639
8375
  },
8376
+ "colorRamp": {
8377
+ "$ref": "#/definitions/esri.rest-api.Renderer.ColorRamp",
8378
+ "description": "A colorRamp object is used to specify a range of colors that are applied to a group of symbols."
8379
+ },
7640
8380
  "field": {
7641
8381
  "$ref": "#/definitions/esri.rest-api.Field.Field",
7642
8382
  "description": "Contains information about an attribute field."
@@ -7680,6 +8420,110 @@
7680
8420
  ],
7681
8421
  "type": "string"
7682
8422
  },
8423
+ "esri.rest-api.Renderer.ColorRamp": {
8424
+ "additionalProperties": false,
8425
+ "description": "A colorRamp object is used to specify a range of colors that are applied to a group of symbols. {@link https://developers.arcgis.com/web-map-specification/objects/colorRamp/}.",
8426
+ "properties": {
8427
+ "algorithm": {
8428
+ "description": "Algorithm used for calculating the ramp.",
8429
+ "enum": [
8430
+ "esriCIELabAlgorithm",
8431
+ "esriHSVAlgorithm",
8432
+ "esriLabLChAlgorithm"
8433
+ ],
8434
+ "type": "string"
8435
+ },
8436
+ "colorRamps": {
8437
+ "description": "A multipart color ramp is defined by a list of constituent color ramps.",
8438
+ "items": {
8439
+ "$ref": "#/definitions/esri.rest-api.Renderer.ColorRamp"
8440
+ },
8441
+ "type": "array"
8442
+ },
8443
+ "fromColor": {
8444
+ "additionalItems": {
8445
+ "anyOf": [
8446
+ {
8447
+ "type": "number"
8448
+ },
8449
+ {
8450
+ "type": "number"
8451
+ },
8452
+ {
8453
+ "type": "number"
8454
+ },
8455
+ {
8456
+ "type": "number"
8457
+ }
8458
+ ]
8459
+ },
8460
+ "description": "Array representing the initial color to start the ramp from.",
8461
+ "items": [
8462
+ {
8463
+ "type": "number"
8464
+ },
8465
+ {
8466
+ "type": "number"
8467
+ },
8468
+ {
8469
+ "type": "number"
8470
+ },
8471
+ {
8472
+ "type": "number"
8473
+ }
8474
+ ],
8475
+ "minItems": 4,
8476
+ "type": "array"
8477
+ },
8478
+ "toColor": {
8479
+ "additionalItems": {
8480
+ "anyOf": [
8481
+ {
8482
+ "type": "number"
8483
+ },
8484
+ {
8485
+ "type": "number"
8486
+ },
8487
+ {
8488
+ "type": "number"
8489
+ },
8490
+ {
8491
+ "type": "number"
8492
+ }
8493
+ ]
8494
+ },
8495
+ "description": "Array representing the final color to end the ramp with.",
8496
+ "items": [
8497
+ {
8498
+ "type": "number"
8499
+ },
8500
+ {
8501
+ "type": "number"
8502
+ },
8503
+ {
8504
+ "type": "number"
8505
+ },
8506
+ {
8507
+ "type": "number"
8508
+ }
8509
+ ],
8510
+ "minItems": 4,
8511
+ "type": "array"
8512
+ },
8513
+ "type": {
8514
+ "description": "Value indicating the type of colorRamp.",
8515
+ "enum": [
8516
+ "algorithmic",
8517
+ "multipart"
8518
+ ],
8519
+ "type": "string"
8520
+ }
8521
+ },
8522
+ "required": [
8523
+ "type"
8524
+ ],
8525
+ "type": "object"
8526
+ },
7683
8527
  "esri.rest-api.Renderer.Renderer": {
7684
8528
  "anyOf": [
7685
8529
  {
@@ -7714,6 +8558,9 @@
7714
8558
  },
7715
8559
  {
7716
8560
  "$ref": "#/definitions/esri.rest-api.UniqueValueFromStyle.UniqueValueFromStyle"
8561
+ },
8562
+ {
8563
+ "$ref": "#/definitions/esri.rest-api.VectorFieldRenderer.VectorFieldRenderer"
7717
8564
  }
7718
8565
  ],
7719
8566
  "description": "A renderer that uses one symbol only. Part of the Esri ArcGIS REST API (see http://resources.arcgis.com/en/help/rest/apiref/renderer.html)."
@@ -8147,6 +8994,9 @@
8147
8994
  "description": "A comma-separated string listing which editing operations are allowed on an editable feature service. Available operations include: Create | Delete | Query | Update | Editing.",
8148
8995
  "type": "string"
8149
8996
  },
8997
+ "customParameters": {
8998
+ "description": "A sequence of custom parameters appended to the URL of all requests related to supporting ArcGIS layer types."
8999
+ },
8150
9000
  "definitionEditor": {
8151
9001
  "$ref": "#/definitions/esri.rest-api.DefinitionEditor.DefinitionEditor",
8152
9002
  "description": "Stores interactive filters."
@@ -8163,6 +9013,10 @@
8163
9013
  "$ref": "#/definitions/esri.rest-api.FeatureLayer.FeatureCollectionType",
8164
9014
  "description": "Indicates the type of features in the feature collection. If featureCollectionType is missing, it means the feature collection is a regular single-layer or multi-layer feature collection."
8165
9015
  },
9016
+ "formInfo": {
9017
+ "$ref": "#/definitions/esri.rest-api.FormInfo.FormInfo",
9018
+ "description": "A formInfo object defining the content of the form when you are editing a feature."
9019
+ },
8166
9020
  "id": {
8167
9021
  "description": "A unique identifying string for the layer.",
8168
9022
  "type": "string"
@@ -8222,6 +9076,13 @@
8222
9076
  "description": "Indicates whether to allow map authors the ability to control what layers should be shown in a client's legend.",
8223
9077
  "type": "boolean"
8224
9078
  },
9079
+ "subtypeCode": {
9080
+ "description": "The feature subtype code identifying the layer. Used with SubtypeGroupLayers.",
9081
+ "type": [
9082
+ "string",
9083
+ "number"
9084
+ ]
9085
+ },
8225
9086
  "title": {
8226
9087
  "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.",
8227
9088
  "type": "string"
@@ -8314,12 +9175,6 @@
8314
9175
  "description": "The text weight. See {@link FontWeight}."
8315
9176
  }
8316
9177
  },
8317
- "required": [
8318
- "family",
8319
- "size",
8320
- "style",
8321
- "weight"
8322
- ],
8323
9178
  "type": "object"
8324
9179
  },
8325
9180
  "esri.rest-api.Symbol.FontStyle": {
@@ -8815,6 +9670,9 @@
8815
9670
  "$ref": "#/definitions/esri.rest-api._LayerBase.BlendMode",
8816
9671
  "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."
8817
9672
  },
9673
+ "customParameters": {
9674
+ "description": "A sequence of custom parameters appended to the URL of all requests related to supporting ArcGIS layer types."
9675
+ },
8818
9676
  "id": {
8819
9677
  "description": "A unique identifying string for the layer.",
8820
9678
  "type": "string"
@@ -8899,6 +9757,9 @@
8899
9757
  "$ref": "#/definitions/esri.rest-api._LayerBase.BlendMode",
8900
9758
  "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."
8901
9759
  },
9760
+ "customParameters": {
9761
+ "description": "A sequence of custom parameters appended to the URL of all requests related to supporting ArcGIS layer types."
9762
+ },
8902
9763
  "displayLevels": {
8903
9764
  "description": "NOTE: Applicable if used as a baseMapLayer. Integer value(s) indicating the display levels of the basemap layer. Only applicable for TiledMapService layers. All tiled map service layers should share the same tiling scheme. This property cannot be set via the Map Viewer UI.",
8904
9765
  "items": {
@@ -9348,6 +10209,113 @@
9348
10209
  },
9349
10210
  "type": "object"
9350
10211
  },
10212
+ "esri.rest-api.VectorFieldRenderer.MagnitudeUnit": {
10213
+ "description": "Units of magnitude.",
10214
+ "enum": [
10215
+ "esriFeetPerSecond",
10216
+ "esriKilometersPerHour",
10217
+ "esriKnots",
10218
+ "esriMetersPerSecond",
10219
+ "esriMilesPerHour"
10220
+ ],
10221
+ "type": "string"
10222
+ },
10223
+ "esri.rest-api.VectorFieldRenderer.VectorFieldRenderer": {
10224
+ "additionalProperties": false,
10225
+ "description": "A vector field renderer is a renderer that uses symbolizes a U-V or Magnitude-Direction data.",
10226
+ "properties": {
10227
+ "attributeField": {
10228
+ "description": "Name of the feature attribute field that contains the data value.",
10229
+ "enum": [
10230
+ "Magnitude"
10231
+ ],
10232
+ "type": "string"
10233
+ },
10234
+ "authoringInfo": {
10235
+ "$ref": "#/definitions/esri.rest-api.Renderer.AuthoringInfo",
10236
+ "description": "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."
10237
+ },
10238
+ "flowRepresentation": {
10239
+ "description": "Sets the flow direction of the data.",
10240
+ "enum": [
10241
+ "flow_from",
10242
+ "flow_to"
10243
+ ],
10244
+ "type": "string"
10245
+ },
10246
+ "inputUnit": {
10247
+ "$ref": "#/definitions/esri.rest-api.VectorFieldRenderer.MagnitudeUnit",
10248
+ "description": "Input unit for Magnitude."
10249
+ },
10250
+ "outputUnit": {
10251
+ "$ref": "#/definitions/esri.rest-api.VectorFieldRenderer.MagnitudeUnit",
10252
+ "description": "Output unit for Magnitude."
10253
+ },
10254
+ "rotationExpression": {
10255
+ "description": "A constant value or an expression that derives the angle of rotation based on a feature attribute value. When an attribute name is specified, it's enclosed in square brackets.",
10256
+ "type": "string"
10257
+ },
10258
+ "rotationType": {
10259
+ "$ref": "#/definitions/esri.rest-api.Renderer.RotationType",
10260
+ "description": "String value (either geographic or arithmetic) which controls the origin and direction of rotation on point features. If the rotationType is defined as 'arithmetic', the symbol is rotated from East in a counter-clockwise direction where East is the 0� axis. If the rotationType is defined as 'geographic', the symbol is rotated from North in a clockwise direction where North is the 0� axis. See {@link RotationType}."
10261
+ },
10262
+ "style": {
10263
+ "description": "A predefined style.",
10264
+ "enum": [
10265
+ "beaufort_ft",
10266
+ "beaufort_km",
10267
+ "beaufort_kn",
10268
+ "beaufort_m",
10269
+ "beaufort_mi",
10270
+ "classified_arrow",
10271
+ "ocean_current_kn",
10272
+ "ocean_current_m",
10273
+ "simple_scalar",
10274
+ "single_arrow",
10275
+ "wind_speed"
10276
+ ],
10277
+ "type": "string"
10278
+ },
10279
+ "symbolTileSize": {
10280
+ "description": "Determines the density of the symbols. Larger tile size, fewer symbols appear in the display. The VectorFieldRenderer draws one symbol within a defined tile size (in pixels). The default is 50 pixels.",
10281
+ "type": "number"
10282
+ },
10283
+ "type": {
10284
+ "description": "The type of renderer. See {@link RendererType}.",
10285
+ "enum": [
10286
+ "vectorField"
10287
+ ],
10288
+ "type": "string"
10289
+ },
10290
+ "visualVariables": {
10291
+ "description": "An array of visualVariable objects used for continuous color or size, simple, and unique values with feature opacity.",
10292
+ "items": {
10293
+ "anyOf": [
10294
+ {
10295
+ "$ref": "#/definitions/esri.rest-api.VisualVariable.ColorInfo"
10296
+ },
10297
+ {
10298
+ "$ref": "#/definitions/esri.rest-api.VisualVariable.SizeInfo"
10299
+ },
10300
+ {
10301
+ "$ref": "#/definitions/esri.rest-api.VisualVariable.TransparencyInfo"
10302
+ },
10303
+ {
10304
+ "$ref": "#/definitions/esri.rest-api.VisualVariable.RotationInfo"
10305
+ }
10306
+ ]
10307
+ },
10308
+ "type": "array"
10309
+ }
10310
+ },
10311
+ "required": [
10312
+ "attributeField",
10313
+ "flowRepresentation",
10314
+ "style",
10315
+ "type"
10316
+ ],
10317
+ "type": "object"
10318
+ },
9351
10319
  "esri.rest-api.VectorTileLayer.VectorTileLayer": {
9352
10320
  "additionalProperties": false,
9353
10321
  "description": "A vector tile layer references a set of web-accessible vector tiles and the corresponding style for how those tiles should be drawn. {@link https://developers.arcgis.com/web-map-specification/objects/vectorTileLayer/} {@link https://developers.arcgis.com/web-scene-specification/objects/vectorTileLayer/}.",
@@ -9356,6 +10324,9 @@
9356
10324
  "$ref": "#/definitions/esri.rest-api._LayerBase.BlendMode",
9357
10325
  "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."
9358
10326
  },
10327
+ "customParameters": {
10328
+ "description": "A sequence of custom parameters appended to the URL of all requests related to supporting ArcGIS layer types."
10329
+ },
9359
10330
  "id": {
9360
10331
  "description": "A unique identifying string for the layer.",
9361
10332
  "type": "string"
@@ -11761,6 +12732,18 @@
11761
12732
  "ui.hide-notification"
11762
12733
  ]
11763
12734
  },
12735
+ "ui.pause-notifications": {
12736
+ "description": "Pauses display of notifications until resumed.",
12737
+ "enum": [
12738
+ "ui.pause-notifications"
12739
+ ]
12740
+ },
12741
+ "ui.resume-notifications": {
12742
+ "description": "If notifications are currently paused, resumes displaying notifications.",
12743
+ "enum": [
12744
+ "ui.resume-notifications"
12745
+ ]
12746
+ },
11764
12747
  "ui.set-theme": {
11765
12748
  "description": "Sets the color theme of the viewer. The required argument is the new theme's ID.",
11766
12749
  "enum": [
@@ -13617,6 +14600,12 @@
13617
14600
  {
13618
14601
  "$ref": "#/definitions/ui.hide-notification"
13619
14602
  },
14603
+ {
14604
+ "$ref": "#/definitions/ui.pause-notifications"
14605
+ },
14606
+ {
14607
+ "$ref": "#/definitions/ui.resume-notifications"
14608
+ },
13620
14609
  {
13621
14610
  "$ref": "#/definitions/ui.set-theme"
13622
14611
  },