@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.
@@ -1296,6 +1296,10 @@
1296
1296
  "description": "The message to be displayed in the notification.",
1297
1297
  "type": "string"
1298
1298
  },
1299
+ "notificationGroup": {
1300
+ "description": "Notifications in the same notification group are mutually exclusive, and will supersede one another. Mobile only.",
1301
+ "type": "string"
1302
+ },
1299
1303
  "position": {
1300
1304
  "$ref": "Position",
1301
1305
  "description": "The position of the notification on the screen."
@@ -2836,10 +2840,15 @@
2836
2840
  "id": {
2837
2841
  "description": "The unique ID for this entity.",
2838
2842
  "type": "string"
2843
+ },
2844
+ "itemType": {
2845
+ "description": "The item type for this entity when it participates in an App.",
2846
+ "type": "string"
2839
2847
  }
2840
2848
  },
2841
2849
  "required": [
2842
- "id"
2850
+ "id",
2851
+ "itemType"
2843
2852
  ],
2844
2853
  "type": "object"
2845
2854
  },
@@ -5449,6 +5458,10 @@
5449
5458
  "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.",
5450
5459
  "type": "string"
5451
5460
  },
5461
+ "disablePopup": {
5462
+ "description": "Indicates whether to allow a client to ignore popups defined by the service item.",
5463
+ "type": "boolean"
5464
+ },
5452
5465
  "id": {
5453
5466
  "description": "A unique identifying string for the layer.",
5454
5467
  "type": "string"
@@ -6063,7 +6076,7 @@
6063
6076
  "type": "array"
6064
6077
  },
6065
6078
  "fixedSymbols": {
6066
- "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.",
6079
+ "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.",
6067
6080
  "type": "boolean"
6068
6081
  },
6069
6082
  "labelingInfo": {
@@ -6077,6 +6090,10 @@
6077
6090
  "$ref": "#/definitions/esri.rest-api.Renderer.Renderer",
6078
6091
  "description": "A renderer object that provides the symbology for the layer."
6079
6092
  },
6093
+ "scaleSymbols": {
6094
+ "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.",
6095
+ "type": "boolean"
6096
+ },
6080
6097
  "showLabels": {
6081
6098
  "description": "Defines whether labels should be shown or not. This is only valid for sublayers.",
6082
6099
  "type": "boolean"
@@ -6511,6 +6528,9 @@
6511
6528
  "description": "A comma-separated string listing which editing operations are allowed on an editable feature service. Available operations include: Create | Delete | Query | Update | Editing.",
6512
6529
  "type": "string"
6513
6530
  },
6531
+ "customParameters": {
6532
+ "description": "A sequence of custom parameters appended to the URL of all requests related to supporting ArcGIS layer types."
6533
+ },
6514
6534
  "definitionEditor": {
6515
6535
  "$ref": "#/definitions/esri.rest-api.DefinitionEditor.DefinitionEditor",
6516
6536
  "description": "Stores interactive filters."
@@ -6527,6 +6547,10 @@
6527
6547
  "$ref": "#/definitions/esri.rest-api.FeatureLayer.FeatureCollectionType",
6528
6548
  "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."
6529
6549
  },
6550
+ "formInfo": {
6551
+ "$ref": "#/definitions/esri.rest-api.FormInfo.FormInfo",
6552
+ "description": "A formInfo object defining the content of the form when you are editing a feature."
6553
+ },
6530
6554
  "id": {
6531
6555
  "description": "A unique identifying string for the layer.",
6532
6556
  "type": "string"
@@ -6586,6 +6610,13 @@
6586
6610
  "description": "Indicates whether to allow map authors the ability to control what layers should be shown in a client's legend.",
6587
6611
  "type": "boolean"
6588
6612
  },
6613
+ "subtypeCode": {
6614
+ "description": "The feature subtype code identifying the layer. Used with SubtypeGroupLayers.",
6615
+ "type": [
6616
+ "string",
6617
+ "number"
6618
+ ]
6619
+ },
6589
6620
  "title": {
6590
6621
  "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.",
6591
6622
  "type": "string"
@@ -6865,183 +6896,664 @@
6865
6896
  ],
6866
6897
  "type": "object"
6867
6898
  },
6868
- "esri.rest-api.Format.DateFormat": {
6869
- "description": "Possible date formats for {@link Format.dateFormat}.",
6870
- "enum": [
6871
- "dayShortMonthYear",
6872
- "longDate",
6873
- "longMonthDayYear",
6874
- "longMonthYear",
6875
- "shortDate",
6876
- "shortDateLE",
6877
- "shortDateLELongTime",
6878
- "shortDateLELongTime24",
6879
- "shortDateLEShortTime",
6880
- "shortDateLEShortTime24",
6881
- "shortDateLongTime",
6882
- "shortDateLongTime24",
6883
- "shortDateShortTime",
6884
- "shortDateShortTime24",
6885
- "shortMonthYear",
6886
- "year"
6887
- ],
6888
- "type": "string"
6889
- },
6890
- "esri.rest-api.Format.Format": {
6899
+ "esri.rest-api.FormInfo.FormAttachmentElement": {
6891
6900
  "additionalProperties": false,
6892
- "description": "The format object can be used with numerical or date fields to provide more detail about how values should be displayed in web map pop-up windows. {@link https://developers.arcgis.com/web-map-specification/objects/format/} {@link https://developers.arcgis.com/web-scene-specification/objects/format/}.",
6901
+ "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/}.",
6893
6902
  "properties": {
6894
- "dateFormat": {
6895
- "$ref": "#/definitions/esri.rest-api.Format.DateFormat",
6896
- "description": "A string used with date fields to specify how the date should appear in pop-up windows. See {@link DateFormat}."
6903
+ "attachmentKeyword": {
6904
+ "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.",
6905
+ "type": "string"
6897
6906
  },
6898
- "digitSeparator": {
6899
- "description": "A Boolean used with numerical fields. A value of true allows the number to have a digit (or thousands) separator when the value appears in pop-up windows. Depending on the locale, this separator is a decimal point or a comma. A value of false means that no separator will be used.",
6907
+ "description": {
6908
+ "description": "A string that describes the element in detail.",
6909
+ "type": "string"
6910
+ },
6911
+ "editable": {
6912
+ "description": "Indicates whether the attachments can be edited. If not present, the default is true.",
6900
6913
  "type": "boolean"
6901
6914
  },
6902
- "places": {
6903
- "description": "An integer used with numerical fields to specify the number of supported decimal places that should appear in pop-up windows. Any places beyond this value are rounded.",
6904
- "type": "number"
6915
+ "inputType": {
6916
+ "additionalProperties": false,
6917
+ "description": "The input user interface to use for the attachment.",
6918
+ "properties": {
6919
+ "type": {
6920
+ "description": "The input type identifier.",
6921
+ "enum": [
6922
+ "attachment",
6923
+ "audio",
6924
+ "document",
6925
+ "image",
6926
+ "signature",
6927
+ "video"
6928
+ ],
6929
+ "type": "string"
6930
+ }
6931
+ },
6932
+ "required": [
6933
+ "type"
6934
+ ],
6935
+ "type": "object"
6936
+ },
6937
+ "label": {
6938
+ "description": "A string value indicating what the element represents.",
6939
+ "type": "string"
6940
+ },
6941
+ "type": {
6942
+ "description": "String value indicating which type of element to use.",
6943
+ "enum": [
6944
+ "attachment"
6945
+ ],
6946
+ "type": "string"
6947
+ },
6948
+ "visibilityExpression": {
6949
+ "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.",
6950
+ "type": "string"
6905
6951
  }
6906
6952
  },
6953
+ "required": [
6954
+ "type"
6955
+ ],
6907
6956
  "type": "object"
6908
6957
  },
6909
- "esri.rest-api.GeoRSSLayer.GeoRSSLayer": {
6958
+ "esri.rest-api.FormInfo.FormBarcodeScannerInput": {
6910
6959
  "additionalProperties": false,
6911
- "description": "GeoRSS feeds may contain any combination of points, lines, and polygons. Web clients use a GeoRSS to JSON request service. This service returns one to many feature collections with different geometry types. The returned JSON specifies the point, lines, and polygons symbols used to display the features in that layer. {@link https://developers.arcgis.com/web-map-specification/objects/geoRSSLayer/}.",
6960
+ "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/}.",
6912
6961
  "properties": {
6913
- "blendMode": {
6914
- "$ref": "#/definitions/esri.rest-api._LayerBase.BlendMode",
6915
- "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."
6962
+ "maxLength": {
6963
+ "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.",
6964
+ "type": "number"
6916
6965
  },
6917
- "id": {
6918
- "description": "A unique identifying string for the layer.",
6919
- "type": "string"
6966
+ "minLength": {
6967
+ "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.",
6968
+ "type": "number"
6920
6969
  },
6921
- "layerType": {
6922
- "description": "The type of layer.",
6970
+ "type": {
6971
+ "description": "The input type identifier.",
6923
6972
  "enum": [
6924
- "GeoRSS"
6973
+ "barcode-scanner"
6925
6974
  ],
6926
6975
  "type": "string"
6976
+ }
6977
+ },
6978
+ "required": [
6979
+ "type"
6980
+ ],
6981
+ "type": "object"
6982
+ },
6983
+ "esri.rest-api.FormInfo.FormComboBoxInput": {
6984
+ "additionalProperties": false,
6985
+ "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/}.",
6986
+ "properties": {
6987
+ "noValueOptionLabel": {
6988
+ "description": "The text used to represent a null value.",
6989
+ "type": "string"
6927
6990
  },
6928
- "lineSymbol": {
6929
- "$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol",
6930
- "description": "Defined by the GeoRSS to JSON request service. If the GeoRSS feed does not have lines, this property is not added to the layer JSON."
6931
- },
6932
- "listMode": {
6933
- "$ref": "esri.ListMode",
6934
- "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link ListMode}."
6935
- },
6936
- "maxScale": {
6937
- "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.",
6938
- "type": "number"
6991
+ "showNoValueOption": {
6992
+ "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.",
6993
+ "type": "boolean"
6939
6994
  },
6940
- "minScale": {
6941
- "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.",
6942
- "type": "number"
6995
+ "type": {
6996
+ "description": "The input type identifier.",
6997
+ "enum": [
6998
+ "combo-box"
6999
+ ],
7000
+ "type": "string"
7001
+ }
7002
+ },
7003
+ "required": [
7004
+ "type"
7005
+ ],
7006
+ "type": "object"
7007
+ },
7008
+ "esri.rest-api.FormInfo.FormDateTimePickerInput": {
7009
+ "additionalProperties": false,
7010
+ "description": "Defines the desired user interface is a calendar date picker. {@link https://developers.arcgis.com/web-map-specification/objects/formDatetimePickerInput/}.",
7011
+ "properties": {
7012
+ "includeTime": {
7013
+ "description": "Indicates if the datetime picker should provide an option to select the time. If not provided, the default value is false.",
7014
+ "type": "boolean"
6943
7015
  },
6944
- "opacity": {
6945
- "description": "The degree of transparency applied to the layer on the client side, where 0 is full transparency and 1 is no transparency.",
7016
+ "max": {
7017
+ "description": "The maximum date to allow. The number represents the number of milliseconds since epoch (January 1, 1970) in UTC.",
6946
7018
  "type": "number"
6947
7019
  },
6948
- "pointSymbol": {
6949
- "$ref": "#/definitions/esri.rest-api.PictureMarkerSymbol.PictureMarkerSymbol",
6950
- "description": "Defined by the GeoRSS to JSON request service. If the GeoRSS feed does not have points, this property is not added to the layer JSON."
6951
- },
6952
- "polygonSymbol": {
6953
- "$ref": "#/definitions/esri.rest-api.SimpleFillSymbol.SimpleFillSymbol",
6954
- "description": "Defined by the GeoRSS to JSON request service. If the GeoRSS feed does not have polygons, this property is not added to the layer JSON."
6955
- },
6956
- "refreshInterval": {
6957
- "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. {@link https://doc.arcgis.com/en/arcgis-online/create-maps/set-refresh-interval.htm}.",
7020
+ "min": {
7021
+ "description": "The minimum date to allow. The number represents the number of milliseconds since epoch (January 1, 1970) in UTC.",
6958
7022
  "type": "number"
6959
7023
  },
6960
- "showLegend": {
6961
- "description": "Indicates whether to allow map authors the ability to control what layers should be shown in a client's legend.",
6962
- "type": "boolean"
6963
- },
6964
- "title": {
6965
- "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.",
6966
- "type": "string"
6967
- },
6968
7024
  "type": {
6969
- "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 {@link OperationalLayerType} and {@link BaseMapLayerType}.",
7025
+ "description": "The input type identifier.",
6970
7026
  "enum": [
6971
- "BingMapsAerial",
6972
- "BingMapsHybrid",
6973
- "BingMapsRoad",
6974
- "CSV",
6975
- "KML",
6976
- "OpenStreetMap",
6977
- "WMS",
6978
- "WebTiledLayer"
7027
+ "datetime-picker"
6979
7028
  ],
6980
7029
  "type": "string"
6981
- },
6982
- "url": {
6983
- "description": "The URL to the layer.",
6984
- "type": "string"
6985
- },
6986
- "visibility": {
6987
- "description": "Determines whether the layer is initially visible in the web map.",
6988
- "type": "boolean"
6989
7030
  }
6990
7031
  },
6991
7032
  "required": [
6992
- "layerType"
7033
+ "type"
6993
7034
  ],
6994
7035
  "type": "object"
6995
7036
  },
6996
- "esri.rest-api.Geometry.Geometry": {
6997
- "anyOf": [
6998
- {
6999
- "$ref": "#/definitions/esri.rest-api.Extent.Extent"
7000
- },
7001
- {
7002
- "$ref": "#/definitions/esri.rest-api.Multipoint.Multipoint"
7037
+ "esri.rest-api.FormInfo.FormExpressionInfo": {
7038
+ "additionalProperties": false,
7039
+ "description": "Arcade expression used in the form. {@link https://developers.arcgis.com/web-map-specification/objects/formExpressionInfo/}.",
7040
+ "properties": {
7041
+ "expression": {
7042
+ "description": "The Arcade expression.",
7043
+ "type": "string"
7003
7044
  },
7004
- {
7005
- "$ref": "#/definitions/esri.rest-api.Polygon.Polygon"
7045
+ "name": {
7046
+ "description": "Unique identifier for the expression.",
7047
+ "type": "string"
7006
7048
  },
7007
- {
7008
- "$ref": "#/definitions/esri.rest-api.Polyline.Polyline"
7049
+ "returnType": {
7050
+ "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.",
7051
+ "enum": [
7052
+ "boolean"
7053
+ ],
7054
+ "type": "string"
7009
7055
  },
7010
- {
7011
- "$ref": "#/definitions/esri.rest-api.Point.Point"
7056
+ "title": {
7057
+ "description": "Title of the expression.",
7058
+ "type": "string"
7012
7059
  }
7013
- ],
7014
- "description": "A geometry as defined in the ArcGIS REST and web map specifications. See {@link http://resources.arcgis.com/en/help/rest/apiref/geometry.html}. {@link https://developers.arcgis.com/web-map-specification/objects/geometry/} {@link https://developers.arcgis.com/web-map-specification/objects/geometryType/}."
7060
+ },
7061
+ "type": "object"
7015
7062
  },
7016
- "esri.rest-api.GroupLayer.GroupLayer": {
7063
+ "esri.rest-api.FormInfo.FormFieldElement": {
7017
7064
  "additionalProperties": false,
7018
- "description": "GroupLayer provides the ability to organize several sublayers into one common layer. Suppose there are several FeatureLayers that all represent water features in different dimensions. For example, wells (points), streams (lines), and lakes (polygons). The GroupLayer provides the functionality to treat them as one layer called Water Features even though they are stored as separate feature layers. {@link https://developers.arcgis.com/web-scene-specification/objects/groupLayer/}.",
7065
+ "description": "Defines how a field in the dataset participates in the form. {@link https://developers.arcgis.com/web-map-specification/objects/formFieldElement/}.",
7019
7066
  "properties": {
7020
- "blendMode": {
7021
- "$ref": "#/definitions/esri.rest-api._LayerBase.BlendMode",
7022
- "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."
7067
+ "description": {
7068
+ "description": "A string that describes the element in detail.",
7069
+ "type": "string"
7023
7070
  },
7024
- "id": {
7025
- "description": "A unique identifying string for the layer.",
7071
+ "domain": {
7072
+ "$ref": "#/definitions/esri.rest-api.Domain.Domain",
7073
+ "description": "The domain to apply to this field. If defined, it takes precedence over domains defined in field, type, or subtype."
7074
+ },
7075
+ "editable": {
7076
+ "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.",
7077
+ "type": "boolean"
7078
+ },
7079
+ "fieldName": {
7080
+ "description": "A string containing the field name as defined by the feature layer.",
7026
7081
  "type": "string"
7027
7082
  },
7028
- "layerType": {
7029
- "description": "String indicating the layer type. Value of this property must be GroupLayer.",
7083
+ "inputType": {
7084
+ "anyOf": [
7085
+ {
7086
+ "$ref": "#/definitions/esri.rest-api.FormInfo.FormBarcodeScannerInput"
7087
+ },
7088
+ {
7089
+ "$ref": "#/definitions/esri.rest-api.FormInfo.FormComboBoxInput"
7090
+ },
7091
+ {
7092
+ "$ref": "#/definitions/esri.rest-api.FormInfo.FormDateTimePickerInput"
7093
+ },
7094
+ {
7095
+ "$ref": "#/definitions/esri.rest-api.FormInfo.FormRadioButtonsInput"
7096
+ },
7097
+ {
7098
+ "$ref": "#/definitions/esri.rest-api.FormInfo.FormSwitchInput"
7099
+ },
7100
+ {
7101
+ "$ref": "#/definitions/esri.rest-api.FormInfo.FormTextAreaInput"
7102
+ },
7103
+ {
7104
+ "$ref": "#/definitions/esri.rest-api.FormInfo.FormTextBoxInput"
7105
+ }
7106
+ ],
7107
+ "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."
7108
+ },
7109
+ "label": {
7110
+ "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.",
7111
+ "type": "string"
7112
+ },
7113
+ "requiredExpression": {
7114
+ "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.",
7115
+ "type": "string"
7116
+ },
7117
+ "type": {
7118
+ "description": "A string indicating which type of element to use.",
7030
7119
  "enum": [
7031
- "GroupLayer"
7120
+ "field"
7032
7121
  ],
7033
7122
  "type": "string"
7034
7123
  },
7035
- "layers": {
7036
- "description": "List of child operationalLayers.",
7037
- "items": {
7038
- "anyOf": [
7039
- {
7040
- "$ref": "#/definitions/esri.rest-api.BuildingSceneLayer.BuildingSceneLayer"
7041
- },
7042
- {
7043
- "$ref": "#/definitions/esri.rest-api.CSVLayer.CSVLayer"
7044
- },
7124
+ "visibilityExpression": {
7125
+ "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.",
7126
+ "type": "string"
7127
+ }
7128
+ },
7129
+ "required": [
7130
+ "type"
7131
+ ],
7132
+ "type": "object"
7133
+ },
7134
+ "esri.rest-api.FormInfo.FormGroupElement": {
7135
+ "additionalProperties": false,
7136
+ "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/}.",
7137
+ "properties": {
7138
+ "description": {
7139
+ "description": "A string that describes the element in detail.",
7140
+ "type": "string"
7141
+ },
7142
+ "formElements": {
7143
+ "description": "An array of Form Element objects that represent an ordered list of form elements. Nested group elements are not supported.",
7144
+ "items": {
7145
+ "anyOf": [
7146
+ {
7147
+ "$ref": "#/definitions/esri.rest-api.FormInfo.FormAttachmentElement"
7148
+ },
7149
+ {
7150
+ "$ref": "#/definitions/esri.rest-api.FormInfo.FormFieldElement"
7151
+ },
7152
+ {
7153
+ "$ref": "#/definitions/esri.rest-api.FormInfo.FormRelationshipElement"
7154
+ }
7155
+ ]
7156
+ },
7157
+ "type": "array"
7158
+ },
7159
+ "initialState": {
7160
+ "description": "Defines if the group should be expanded or collapsed when the form is initially displayed. If not provided, the default value is expanded.",
7161
+ "enum": [
7162
+ "collapsed",
7163
+ "expanded"
7164
+ ],
7165
+ "type": "string"
7166
+ },
7167
+ "label": {
7168
+ "description": "A string value indicating what the element represents.",
7169
+ "type": "string"
7170
+ },
7171
+ "type": {
7172
+ "description": "String value indicating which type of element to use.",
7173
+ "enum": [
7174
+ "group"
7175
+ ],
7176
+ "type": "string"
7177
+ },
7178
+ "visibilityExpression": {
7179
+ "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.",
7180
+ "type": "string"
7181
+ }
7182
+ },
7183
+ "required": [
7184
+ "type"
7185
+ ],
7186
+ "type": "object"
7187
+ },
7188
+ "esri.rest-api.FormInfo.FormInfo": {
7189
+ "additionalProperties": false,
7190
+ "description": "Defines the form configuration when a user edits a feature. {@link https://developers.arcgis.com/web-map-specification/objects/formInfo/}.",
7191
+ "properties": {
7192
+ "description": {
7193
+ "description": "A string that appears in the body of the form as a description.",
7194
+ "type": "string"
7195
+ },
7196
+ "expressionInfos": {
7197
+ "description": "List of Arcade expressions used in the form.",
7198
+ "items": {
7199
+ "$ref": "#/definitions/esri.rest-api.FormInfo.FormExpressionInfo"
7200
+ },
7201
+ "type": "array"
7202
+ },
7203
+ "formElements": {
7204
+ "description": "An array of formElement objects that represent an ordered list of form elements.",
7205
+ "items": {
7206
+ "anyOf": [
7207
+ {
7208
+ "$ref": "#/definitions/esri.rest-api.FormInfo.FormAttachmentElement"
7209
+ },
7210
+ {
7211
+ "$ref": "#/definitions/esri.rest-api.FormInfo.FormFieldElement"
7212
+ },
7213
+ {
7214
+ "$ref": "#/definitions/esri.rest-api.FormInfo.FormGroupElement"
7215
+ },
7216
+ {
7217
+ "$ref": "#/definitions/esri.rest-api.FormInfo.FormRelationshipElement"
7218
+ }
7219
+ ]
7220
+ },
7221
+ "type": "array"
7222
+ },
7223
+ "title": {
7224
+ "description": "A string that appears at the top of the form as a title.",
7225
+ "type": "string"
7226
+ }
7227
+ },
7228
+ "type": "object"
7229
+ },
7230
+ "esri.rest-api.FormInfo.FormRadioButtonsInput": {
7231
+ "additionalProperties": false,
7232
+ "description": "Defines the desired user interface is a radio button group. {@link https://developers.arcgis.com/web-map-specification/objects/formRadioButtonsInput/}.",
7233
+ "properties": {
7234
+ "noValueOptionLabel": {
7235
+ "description": "The text used to represent a null value.",
7236
+ "type": "string"
7237
+ },
7238
+ "showNoValueOption": {
7239
+ "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.",
7240
+ "type": "boolean"
7241
+ },
7242
+ "type": {
7243
+ "description": "The input type identifier.",
7244
+ "enum": [
7245
+ "radio-buttons"
7246
+ ],
7247
+ "type": "string"
7248
+ }
7249
+ },
7250
+ "required": [
7251
+ "type"
7252
+ ],
7253
+ "type": "object"
7254
+ },
7255
+ "esri.rest-api.FormInfo.FormRelationshipElement": {
7256
+ "additionalProperties": false,
7257
+ "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/}.",
7258
+ "properties": {
7259
+ "description": {
7260
+ "description": "A string that describes the element in detail.",
7261
+ "type": "string"
7262
+ },
7263
+ "displayCount": {
7264
+ "description": "An integer that indicates the maximum number of records to display.",
7265
+ "type": "number"
7266
+ },
7267
+ "displayType": {
7268
+ "description": "A string that defines how the related records should be displayed.",
7269
+ "enum": [
7270
+ "list"
7271
+ ],
7272
+ "type": "string"
7273
+ },
7274
+ "editable": {
7275
+ "description": "A Boolean determining whether users can edit this form element. If not supplied the default value is true.",
7276
+ "type": "boolean"
7277
+ },
7278
+ "label": {
7279
+ "description": "A string value indicating what the element represents.",
7280
+ "type": "string"
7281
+ },
7282
+ "type": {
7283
+ "description": "String value indicating which type of element to use.",
7284
+ "enum": [
7285
+ "relationship"
7286
+ ],
7287
+ "type": "string"
7288
+ },
7289
+ "visibilityExpression": {
7290
+ "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.",
7291
+ "type": "string"
7292
+ }
7293
+ },
7294
+ "required": [
7295
+ "type"
7296
+ ],
7297
+ "type": "object"
7298
+ },
7299
+ "esri.rest-api.FormInfo.FormSwitchInput": {
7300
+ "additionalProperties": false,
7301
+ "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/}.",
7302
+ "properties": {
7303
+ "offValue": {
7304
+ "description": "The coded value when switch state is off.",
7305
+ "type": [
7306
+ "string",
7307
+ "number"
7308
+ ]
7309
+ },
7310
+ "onValue": {
7311
+ "description": "The coded value when switch state is on.",
7312
+ "type": [
7313
+ "string",
7314
+ "number"
7315
+ ]
7316
+ },
7317
+ "type": {
7318
+ "description": "The input type identifier.",
7319
+ "enum": [
7320
+ "switch"
7321
+ ],
7322
+ "type": "string"
7323
+ }
7324
+ },
7325
+ "required": [
7326
+ "type"
7327
+ ],
7328
+ "type": "object"
7329
+ },
7330
+ "esri.rest-api.FormInfo.FormTextAreaInput": {
7331
+ "additionalProperties": false,
7332
+ "description": "Defines the desired user interface is a multi-line text area. {@link https://developers.arcgis.com/web-map-specification/objects/formTextAreaInput/}.",
7333
+ "properties": {
7334
+ "maxLength": {
7335
+ "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.",
7336
+ "type": "number"
7337
+ },
7338
+ "minLength": {
7339
+ "description": "This represents the minimum number of characters allowed. If not supplied, the value is 0, meaning there is no minimum constraint.",
7340
+ "type": "number"
7341
+ },
7342
+ "type": {
7343
+ "description": "The input type identifier.",
7344
+ "enum": [
7345
+ "text-area"
7346
+ ],
7347
+ "type": "string"
7348
+ }
7349
+ },
7350
+ "required": [
7351
+ "type"
7352
+ ],
7353
+ "type": "object"
7354
+ },
7355
+ "esri.rest-api.FormInfo.FormTextBoxInput": {
7356
+ "additionalProperties": false,
7357
+ "description": "Defines the desired user interface is a single-line text box. {@link https://developers.arcgis.com/web-map-specification/objects/formTextBoxInput/}.",
7358
+ "properties": {
7359
+ "maxLength": {
7360
+ "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.",
7361
+ "type": "number"
7362
+ },
7363
+ "minLength": {
7364
+ "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.",
7365
+ "type": "number"
7366
+ },
7367
+ "type": {
7368
+ "description": "The input type identifier.",
7369
+ "enum": [
7370
+ "text-box"
7371
+ ],
7372
+ "type": "string"
7373
+ }
7374
+ },
7375
+ "required": [
7376
+ "type"
7377
+ ],
7378
+ "type": "object"
7379
+ },
7380
+ "esri.rest-api.Format.DateFormat": {
7381
+ "description": "Possible date formats for {@link Format.dateFormat}.",
7382
+ "enum": [
7383
+ "dayShortMonthYear",
7384
+ "longDate",
7385
+ "longMonthDayYear",
7386
+ "longMonthYear",
7387
+ "shortDate",
7388
+ "shortDateLE",
7389
+ "shortDateLELongTime",
7390
+ "shortDateLELongTime24",
7391
+ "shortDateLEShortTime",
7392
+ "shortDateLEShortTime24",
7393
+ "shortDateLongTime",
7394
+ "shortDateLongTime24",
7395
+ "shortDateShortTime",
7396
+ "shortDateShortTime24",
7397
+ "shortMonthYear",
7398
+ "year"
7399
+ ],
7400
+ "type": "string"
7401
+ },
7402
+ "esri.rest-api.Format.Format": {
7403
+ "additionalProperties": false,
7404
+ "description": "The format object can be used with numerical or date fields to provide more detail about how values should be displayed in web map pop-up windows. {@link https://developers.arcgis.com/web-map-specification/objects/format/} {@link https://developers.arcgis.com/web-scene-specification/objects/format/}.",
7405
+ "properties": {
7406
+ "dateFormat": {
7407
+ "$ref": "#/definitions/esri.rest-api.Format.DateFormat",
7408
+ "description": "A string used with date fields to specify how the date should appear in pop-up windows. See {@link DateFormat}."
7409
+ },
7410
+ "digitSeparator": {
7411
+ "description": "A Boolean used with numerical fields. A value of true allows the number to have a digit (or thousands) separator when the value appears in pop-up windows. Depending on the locale, this separator is a decimal point or a comma. A value of false means that no separator will be used.",
7412
+ "type": "boolean"
7413
+ },
7414
+ "places": {
7415
+ "description": "An integer used with numerical fields to specify the number of supported decimal places that should appear in pop-up windows. Any places beyond this value are rounded.",
7416
+ "type": "number"
7417
+ }
7418
+ },
7419
+ "type": "object"
7420
+ },
7421
+ "esri.rest-api.GeoRSSLayer.GeoRSSLayer": {
7422
+ "additionalProperties": false,
7423
+ "description": "GeoRSS feeds may contain any combination of points, lines, and polygons. Web clients use a GeoRSS to JSON request service. This service returns one to many feature collections with different geometry types. The returned JSON specifies the point, lines, and polygons symbols used to display the features in that layer. {@link https://developers.arcgis.com/web-map-specification/objects/geoRSSLayer/}.",
7424
+ "properties": {
7425
+ "blendMode": {
7426
+ "$ref": "#/definitions/esri.rest-api._LayerBase.BlendMode",
7427
+ "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."
7428
+ },
7429
+ "id": {
7430
+ "description": "A unique identifying string for the layer.",
7431
+ "type": "string"
7432
+ },
7433
+ "layerType": {
7434
+ "description": "The type of layer.",
7435
+ "enum": [
7436
+ "GeoRSS"
7437
+ ],
7438
+ "type": "string"
7439
+ },
7440
+ "lineSymbol": {
7441
+ "$ref": "#/definitions/esri.rest-api.SimpleLineSymbol.SimpleLineSymbol",
7442
+ "description": "Defined by the GeoRSS to JSON request service. If the GeoRSS feed does not have lines, this property is not added to the layer JSON."
7443
+ },
7444
+ "listMode": {
7445
+ "$ref": "esri.ListMode",
7446
+ "description": "Indicates how the layer should display in the table of contents. The known values are listed below. See {@link ListMode}."
7447
+ },
7448
+ "maxScale": {
7449
+ "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.",
7450
+ "type": "number"
7451
+ },
7452
+ "minScale": {
7453
+ "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.",
7454
+ "type": "number"
7455
+ },
7456
+ "opacity": {
7457
+ "description": "The degree of transparency applied to the layer on the client side, where 0 is full transparency and 1 is no transparency.",
7458
+ "type": "number"
7459
+ },
7460
+ "pointSymbol": {
7461
+ "$ref": "#/definitions/esri.rest-api.PictureMarkerSymbol.PictureMarkerSymbol",
7462
+ "description": "Defined by the GeoRSS to JSON request service. If the GeoRSS feed does not have points, this property is not added to the layer JSON."
7463
+ },
7464
+ "polygonSymbol": {
7465
+ "$ref": "#/definitions/esri.rest-api.SimpleFillSymbol.SimpleFillSymbol",
7466
+ "description": "Defined by the GeoRSS to JSON request service. If the GeoRSS feed does not have polygons, this property is not added to the layer JSON."
7467
+ },
7468
+ "refreshInterval": {
7469
+ "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. {@link https://doc.arcgis.com/en/arcgis-online/create-maps/set-refresh-interval.htm}.",
7470
+ "type": "number"
7471
+ },
7472
+ "showLegend": {
7473
+ "description": "Indicates whether to allow map authors the ability to control what layers should be shown in a client's legend.",
7474
+ "type": "boolean"
7475
+ },
7476
+ "title": {
7477
+ "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.",
7478
+ "type": "string"
7479
+ },
7480
+ "type": {
7481
+ "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 {@link OperationalLayerType} and {@link BaseMapLayerType}.",
7482
+ "enum": [
7483
+ "BingMapsAerial",
7484
+ "BingMapsHybrid",
7485
+ "BingMapsRoad",
7486
+ "CSV",
7487
+ "KML",
7488
+ "OpenStreetMap",
7489
+ "WMS",
7490
+ "WebTiledLayer"
7491
+ ],
7492
+ "type": "string"
7493
+ },
7494
+ "url": {
7495
+ "description": "The URL to the layer.",
7496
+ "type": "string"
7497
+ },
7498
+ "visibility": {
7499
+ "description": "Determines whether the layer is initially visible in the web map.",
7500
+ "type": "boolean"
7501
+ }
7502
+ },
7503
+ "required": [
7504
+ "layerType"
7505
+ ],
7506
+ "type": "object"
7507
+ },
7508
+ "esri.rest-api.Geometry.Geometry": {
7509
+ "anyOf": [
7510
+ {
7511
+ "$ref": "#/definitions/esri.rest-api.Extent.Extent"
7512
+ },
7513
+ {
7514
+ "$ref": "#/definitions/esri.rest-api.Multipoint.Multipoint"
7515
+ },
7516
+ {
7517
+ "$ref": "#/definitions/esri.rest-api.Polygon.Polygon"
7518
+ },
7519
+ {
7520
+ "$ref": "#/definitions/esri.rest-api.Polyline.Polyline"
7521
+ },
7522
+ {
7523
+ "$ref": "#/definitions/esri.rest-api.Point.Point"
7524
+ }
7525
+ ],
7526
+ "description": "A geometry as defined in the ArcGIS REST and web map specifications. See {@link http://resources.arcgis.com/en/help/rest/apiref/geometry.html}. {@link https://developers.arcgis.com/web-map-specification/objects/geometry/} {@link https://developers.arcgis.com/web-map-specification/objects/geometryType/}."
7527
+ },
7528
+ "esri.rest-api.GroupLayer.GroupLayer": {
7529
+ "additionalProperties": false,
7530
+ "description": "GroupLayer provides the ability to organize several sublayers into one common layer. Suppose there are several FeatureLayers that all represent water features in different dimensions. For example, wells (points), streams (lines), and lakes (polygons). The GroupLayer provides the functionality to treat them as one layer called Water Features even though they are stored as separate feature layers. {@link https://developers.arcgis.com/web-scene-specification/objects/groupLayer/}.",
7531
+ "properties": {
7532
+ "blendMode": {
7533
+ "$ref": "#/definitions/esri.rest-api._LayerBase.BlendMode",
7534
+ "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."
7535
+ },
7536
+ "id": {
7537
+ "description": "A unique identifying string for the layer.",
7538
+ "type": "string"
7539
+ },
7540
+ "layerType": {
7541
+ "description": "String indicating the layer type. Value of this property must be GroupLayer.",
7542
+ "enum": [
7543
+ "GroupLayer"
7544
+ ],
7545
+ "type": "string"
7546
+ },
7547
+ "layers": {
7548
+ "description": "List of child operationalLayers.",
7549
+ "items": {
7550
+ "anyOf": [
7551
+ {
7552
+ "$ref": "#/definitions/esri.rest-api.BuildingSceneLayer.BuildingSceneLayer"
7553
+ },
7554
+ {
7555
+ "$ref": "#/definitions/esri.rest-api.CSVLayer.CSVLayer"
7556
+ },
7045
7557
  {
7046
7558
  "$ref": "#/definitions/esri.rest-api.ElevationLayer.ElevationLayer"
7047
7559
  },
@@ -7327,6 +7839,9 @@
7327
7839
  "description": "The attribution information for the layer. (not in the documentation).",
7328
7840
  "type": "string"
7329
7841
  },
7842
+ "customParameters": {
7843
+ "description": "A sequence of custom parameters appended to the URL of all requests related to supporting ArcGIS layer types."
7844
+ },
7330
7845
  "definitionEditor": {
7331
7846
  "$ref": "#/definitions/esri.rest-api.DefinitionEditor.DefinitionEditor",
7332
7847
  "description": "Stores interactive filters."
@@ -7470,6 +7985,9 @@
7470
7985
  "$ref": "#/definitions/esri.rest-api._LayerBase.BlendMode",
7471
7986
  "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."
7472
7987
  },
7988
+ "customParameters": {
7989
+ "description": "A sequence of custom parameters appended to the URL of all requests related to supporting ArcGIS layer types."
7990
+ },
7473
7991
  "definitionEditor": {
7474
7992
  "$ref": "#/definitions/esri.rest-api.DefinitionEditor.DefinitionEditor",
7475
7993
  "description": "Stores interactive filters."
@@ -7679,8 +8197,11 @@
7679
8197
  "description": "Information on the source of the item and its copyright status.",
7680
8198
  "type": "string"
7681
8199
  },
8200
+ "advancedSettings": {
8201
+ "description": "<not in spec>."
8202
+ },
7682
8203
  "appCategories": {
7683
- "description": "<not in spec>.",
8204
+ "description": "An array that primarily applies to a list of categories that the application item is applicable to.",
7684
8205
  "items": {
7685
8206
  "type": "string"
7686
8207
  },
@@ -7705,6 +8226,10 @@
7705
8226
  "description": "Indicates if comments are allowed on the item.",
7706
8227
  "type": "boolean"
7707
8228
  },
8229
+ "contentOrigin": {
8230
+ "description": "<not in spec>.",
8231
+ "type": "string"
8232
+ },
7708
8233
  "created": {
7709
8234
  "description": "The date the item was created. Shown in UNIX time in milliseconds.",
7710
8235
  "type": "number"
@@ -7717,6 +8242,9 @@
7717
8242
  "description": "Item description.",
7718
8243
  "type": "string"
7719
8244
  },
8245
+ "documentation": {
8246
+ "description": "<not in spec>."
8247
+ },
7720
8248
  "extent": {
7721
8249
  "description": "The bounding rectangle of the item. Should always be in WGS84.",
7722
8250
  "items": {
@@ -7727,6 +8255,9 @@
7727
8255
  },
7728
8256
  "type": "array"
7729
8257
  },
8258
+ "groupDesignations": {
8259
+ "description": "<not in spec>."
8260
+ },
7730
8261
  "guid": {
7731
8262
  "description": "<not in spec>.",
7732
8263
  "type": "string"
@@ -7742,6 +8273,10 @@
7742
8273
  },
7743
8274
  "type": "array"
7744
8275
  },
8276
+ "isOrgItem": {
8277
+ "description": "<not in spec>.",
8278
+ "type": "boolean"
8279
+ },
7745
8280
  "itemControl": {
7746
8281
  "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).",
7747
8282
  "enum": [
@@ -7802,7 +8337,7 @@
7802
8337
  "type": "string"
7803
8338
  },
7804
8339
  "properties": {
7805
- "description": "<not in spec>.",
8340
+ "description": "A JSON object that primarily applies to system requirements, Terms and Conditions, version, supported platforms, YouTube video ID, etc associated with the application.",
7806
8341
  "type": "string"
7807
8342
  },
7808
8343
  "protected": {
@@ -7835,6 +8370,10 @@
7835
8370
  "$ref": "#/definitions/esri.rest-api.SpatialReference.SpatialReference",
7836
8371
  "description": "The coordinate system of the item."
7837
8372
  },
8373
+ "subInfo": {
8374
+ "description": "<not in spec>.",
8375
+ "type": "number"
8376
+ },
7838
8377
  "tags": {
7839
8378
  "description": "User defined tags that describe the item.",
7840
8379
  "items": {
@@ -8100,14 +8639,15 @@
8100
8639
  "description": "An Arcade expression evaluating to either a string or a number.",
8101
8640
  "type": "string"
8102
8641
  },
8642
+ "title": {
8643
+ "description": "The title of the expression.",
8644
+ "type": "string"
8645
+ },
8103
8646
  "value": {
8104
- "description": "Represents a simple template string.",
8647
+ "description": "Represents a simple template string. This property is deprecated as of version 2.7 of the web map in favor of 'expression'.",
8105
8648
  "type": "string"
8106
8649
  }
8107
8650
  },
8108
- "required": [
8109
- "value"
8110
- ],
8111
8651
  "type": "object"
8112
8652
  },
8113
8653
  "labelPlacement": {
@@ -8225,6 +8765,25 @@
8225
8765
  },
8226
8766
  "type": "object"
8227
8767
  },
8768
+ "esri.rest-api.LayerDefinition.FieldOverride": {
8769
+ "additionalProperties": false,
8770
+ "description": "Defines overridden properties on a field for a specific view of the data. {@link https://developers.arcgis.com/web-map-specification/objects/fieldOverride/}.",
8771
+ "properties": {
8772
+ "alias": {
8773
+ "description": "A string containing the overridden field alias.",
8774
+ "type": "string"
8775
+ },
8776
+ "editable": {
8777
+ "description": "A Boolean determining whether users can edit this field.",
8778
+ "type": "boolean"
8779
+ },
8780
+ "name": {
8781
+ "description": "A string containing the field name as defined by the service.",
8782
+ "type": "string"
8783
+ }
8784
+ },
8785
+ "type": "object"
8786
+ },
8228
8787
  "esri.rest-api.LayerDefinition.HtmlPopupType": {
8229
8788
  "description": "The HTML popup type for the LayerDefinition.",
8230
8789
  "enum": [
@@ -8290,6 +8849,13 @@
8290
8849
  "$ref": "#/definitions/esri.rest-api.FeatureReduction.FeatureReduction",
8291
8850
  "description": "Feature reductions declutter the screen by hiding features that would otherwise intersect with other features on screen."
8292
8851
  },
8852
+ "fieldOverrides": {
8853
+ "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.",
8854
+ "items": {
8855
+ "$ref": "#/definitions/esri.rest-api.LayerDefinition.FieldOverride"
8856
+ },
8857
+ "type": "array"
8858
+ },
8293
8859
  "fields": {
8294
8860
  "description": "An array of Field objects containing information about the attribute fields for the feature collection or layer.",
8295
8861
  "items": {
@@ -8297,6 +8863,20 @@
8297
8863
  },
8298
8864
  "type": "array"
8299
8865
  },
8866
+ "floorInfo": {
8867
+ "additionalProperties": false,
8868
+ "description": "Contains floor-awareness information for the layer. {@link https://developers.arcgis.com/web-map-specification/objects/layerFloorInfo/}.",
8869
+ "properties": {
8870
+ "floorField": {
8871
+ "description": "The name of the attribute field that contains a floor's level ID used for floor filtering.",
8872
+ "type": "string"
8873
+ }
8874
+ },
8875
+ "required": [
8876
+ "floorField"
8877
+ ],
8878
+ "type": "object"
8879
+ },
8300
8880
  "geometryType": {
8301
8881
  "description": "The type of geometry used in the layer definition. One of the GeometryType constants.",
8302
8882
  "type": "string"
@@ -8353,6 +8933,13 @@
8353
8933
  "description": "Indicates the name of the object ID field in the dataset.",
8354
8934
  "type": "string"
8355
8935
  },
8936
+ "orderBy": {
8937
+ "description": "Determines the display order of features on the map (currently undocumented in the web map spec but supported by Esri's viewer).",
8938
+ "items": {
8939
+ "$ref": "#/definitions/esri.rest-api.LayerDefinition.OrderByClause"
8940
+ },
8941
+ "type": "array"
8942
+ },
8356
8943
  "overrideSymbols": {
8357
8944
  "description": "Dictates whether a client can support having an end user modify symbols on individual features.",
8358
8945
  "type": "boolean"
@@ -8369,69 +8956,215 @@
8369
8956
  {
8370
8957
  "$ref": "#/definitions/esri.rest-api.DynamicMapLayer.DynamicMapLayer"
8371
8958
  },
8372
- {
8373
- "$ref": "#/definitions/esri.rest-api.DynamicDataLayer.DynamicDataLayer"
8959
+ {
8960
+ "$ref": "#/definitions/esri.rest-api.DynamicDataLayer.DynamicDataLayer"
8961
+ }
8962
+ ],
8963
+ "description": "An object indicating the layerDefinition's layer source. {@link https://developers.arcgis.com/web-map-specification/objects/source/} {@link https://developers.arcgis.com/web-scene-specification/objects/source/}."
8964
+ },
8965
+ "spatialReference": {
8966
+ "$ref": "#/definitions/esri.rest-api.SpatialReference.SpatialReference",
8967
+ "description": "An object containing the WKID or WKT identifying the spatial reference of the layer's geometry."
8968
+ },
8969
+ "supportedQueryFormats": {
8970
+ "description": "String value indicating the output formats that are supported in a query.",
8971
+ "type": "string"
8972
+ },
8973
+ "supportsAdvancedQueries": {
8974
+ "description": "Boolean value indicating whether the layer supports orderByFields in a query operation.",
8975
+ "type": "boolean"
8976
+ },
8977
+ "supportsAttachmentsByUploadId": {
8978
+ "description": "Boolean value indicating whether the layer supports uploading attachments with the Uploads operation. This can be then used in the Add Attachment and Update Attachment operations.",
8979
+ "type": "boolean"
8980
+ },
8981
+ "supportsCalculate": {
8982
+ "description": "Boolean value indicating whether the layer supports the Calculate REST operation when updating features.",
8983
+ "type": "boolean"
8984
+ },
8985
+ "supportsRollbackOnFailureParameter": {
8986
+ "description": "Boolean value indicating whether the layer supports rolling back edits made on a feature layer if some of the edits fail.",
8987
+ "type": "boolean"
8988
+ },
8989
+ "supportsStatistics": {
8990
+ "description": "Boolean value indicating whether feature layer query operations support statistical functions.",
8991
+ "type": "boolean"
8992
+ },
8993
+ "supportsValidateSql": {
8994
+ "description": "Boolean value indicating whether the validateSQL operation is supported across a feature service layer.",
8995
+ "type": "boolean"
8996
+ },
8997
+ "templates": {
8998
+ "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.",
8999
+ "items": {
9000
+ "$ref": "#/definitions/esri.rest-api.Template.Template"
9001
+ },
9002
+ "type": "array"
9003
+ },
9004
+ "timeInfo": {
9005
+ "$ref": "#/definitions/esri.rest-api.LayerDefinition.LayerTimeInfo",
9006
+ "description": "The time info metadata of the layer. May be set for feature layers inside a feature collection item."
9007
+ },
9008
+ "type": {
9009
+ "description": "Indicates whether the layerDefinition applies to a \"Feature Layer\" or a \"Table\".",
9010
+ "type": "string"
9011
+ },
9012
+ "typeIdField": {
9013
+ "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.",
9014
+ "type": "string"
9015
+ },
9016
+ "types": {
9017
+ "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.",
9018
+ "items": {
9019
+ "$ref": "#/definitions/esri.rest-api.Type.Type"
9020
+ },
9021
+ "type": "array"
9022
+ },
9023
+ "visibilityField": {
9024
+ "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.",
9025
+ "type": "string"
9026
+ }
9027
+ },
9028
+ "type": "object"
9029
+ },
9030
+ "esri.rest-api.LayerDefinition.LayerTimeInfo": {
9031
+ "additionalProperties": false,
9032
+ "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/}.",
9033
+ "properties": {
9034
+ "endTimeField": {
9035
+ "description": "The name of the attribute field that contains the end time information.",
9036
+ "type": "string"
9037
+ },
9038
+ "exportOptions": {
9039
+ "$ref": "#/definitions/esri.rest-api.LayerDefinition.TimeInfoExportOptions",
9040
+ "description": "The default time-related export options for this layer."
9041
+ },
9042
+ "hasLiveData": {
9043
+ "description": "Indicates whether service has live data.",
9044
+ "type": "boolean"
9045
+ },
9046
+ "startTimeField": {
9047
+ "description": "The name of the attribute field that contains the start time information.",
9048
+ "type": "string"
9049
+ },
9050
+ "timeExtent": {
9051
+ "additionalItems": {
9052
+ "anyOf": [
9053
+ {
9054
+ "type": "number"
9055
+ },
9056
+ {
9057
+ "type": "number"
9058
+ }
9059
+ ]
9060
+ },
9061
+ "description": "The time extent for all the data in the layer.",
9062
+ "items": [
9063
+ {
9064
+ "type": "number"
9065
+ },
9066
+ {
9067
+ "type": "number"
9068
+ }
9069
+ ],
9070
+ "minItems": 2,
9071
+ "type": "array"
9072
+ },
9073
+ "timeInterval": {
9074
+ "description": "Time interval of the data in the layer. Typically used for the TimeSlider when animating the layer.",
9075
+ "type": "number"
9076
+ },
9077
+ "timeIntervalUnits": {
9078
+ "$ref": "#/definitions/esri.rest-api.LayerDefinition.TemporalUnit",
9079
+ "description": "Temporal unit in which the time interval is measured."
9080
+ },
9081
+ "timeReference": {
9082
+ "additionalProperties": false,
9083
+ "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/}.",
9084
+ "properties": {
9085
+ "respectsDaylightSaving": {
9086
+ "description": "Indicates whether the time reference takes into account daylight savings time.",
9087
+ "type": "boolean"
9088
+ },
9089
+ "timeZone": {
9090
+ "description": "The time zone in which the data was captured.",
9091
+ "type": "string"
8374
9092
  }
9093
+ },
9094
+ "required": [
9095
+ "respectsDaylightSaving"
8375
9096
  ],
8376
- "description": "An object indicating the layerDefinition's layer source. {@link https://developers.arcgis.com/web-map-specification/objects/source/} {@link https://developers.arcgis.com/web-scene-specification/objects/source/}."
8377
- },
8378
- "spatialReference": {
8379
- "$ref": "#/definitions/esri.rest-api.SpatialReference.SpatialReference",
8380
- "description": "An object containing the WKID or WKT identifying the spatial reference of the layer's geometry."
9097
+ "type": "object"
8381
9098
  },
8382
- "supportedQueryFormats": {
8383
- "description": "String value indicating the output formats that are supported in a query.",
9099
+ "trackIdField": {
9100
+ "description": "The field that contains the trackId.",
9101
+ "type": "string"
9102
+ }
9103
+ },
9104
+ "required": [
9105
+ "trackIdField"
9106
+ ],
9107
+ "type": "object"
9108
+ },
9109
+ "esri.rest-api.LayerDefinition.OrderByClause": {
9110
+ "additionalProperties": false,
9111
+ "description": "A clause in a layer definition's `orderBy` property.",
9112
+ "properties": {
9113
+ "field": {
9114
+ "description": "The number or date field whose values will be used to sort features.",
8384
9115
  "type": "string"
8385
9116
  },
8386
- "supportsAdvancedQueries": {
8387
- "description": "Boolean value indicating whether the layer supports orderByFields in a query operation.",
8388
- "type": "boolean"
8389
- },
8390
- "supportsAttachmentsByUploadId": {
8391
- "description": "Boolean value indicating whether the layer supports uploading attachments with the Uploads operation. This can be then used in the Add Attachment and Update Attachment operations.",
8392
- "type": "boolean"
9117
+ "order": {
9118
+ "description": "The sort order.",
9119
+ "enum": [
9120
+ "asc",
9121
+ "desc"
9122
+ ],
9123
+ "type": "string"
8393
9124
  },
8394
- "supportsCalculate": {
8395
- "description": "Boolean value indicating whether the layer supports the Calculate REST operation when updating features.",
9125
+ "valueExpression": {
9126
+ "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).",
9127
+ "type": "string"
9128
+ }
9129
+ },
9130
+ "type": "object"
9131
+ },
9132
+ "esri.rest-api.LayerDefinition.TemporalUnit": {
9133
+ "description": "Temporal units in which a time value can be measured.",
9134
+ "enum": [
9135
+ "esriTimeUnitsCenturies",
9136
+ "esriTimeUnitsDays",
9137
+ "esriTimeUnitsDecades",
9138
+ "esriTimeUnitsHours",
9139
+ "esriTimeUnitsMilliseconds",
9140
+ "esriTimeUnitsMinutes",
9141
+ "esriTimeUnitsMonths",
9142
+ "esriTimeUnitsSeconds",
9143
+ "esriTimeUnitsUnknown",
9144
+ "esriTimeUnitsWeeks",
9145
+ "esriTimeUnitsYears"
9146
+ ],
9147
+ "type": "string"
9148
+ },
9149
+ "esri.rest-api.LayerDefinition.TimeInfoExportOptions": {
9150
+ "additionalProperties": false,
9151
+ "description": "The default time-related export options for a layer. {@link: https://developers.arcgis.com/web-map-specification/objects/timeInfoExportOptions/}.",
9152
+ "properties": {
9153
+ "timeDataCumulative": {
9154
+ "description": "If true, draw all the features from the beginning of time for that data.",
8396
9155
  "type": "boolean"
8397
9156
  },
8398
- "supportsRollbackOnFailureParameter": {
8399
- "description": "Boolean value indicating whether the layer supports rolling back edits made on a feature layer if some of the edits fail.",
8400
- "type": "boolean"
9157
+ "timeOffset": {
9158
+ "description": "Time offset value for this layer so that it can be overlaid on the top of a previous or future time period.",
9159
+ "type": "number"
8401
9160
  },
8402
- "supportsStatistics": {
8403
- "description": "Boolean value indicating whether feature layer query operations support statistical functions.",
8404
- "type": "boolean"
9161
+ "timeOffsetUnits": {
9162
+ "$ref": "#/definitions/esri.rest-api.LayerDefinition.TemporalUnit",
9163
+ "description": "Temporal unit in which the time offset is measured."
8405
9164
  },
8406
- "supportsValidateSql": {
8407
- "description": "Boolean value indicating whether the validateSQL operation is supported across a feature service layer.",
9165
+ "useTime": {
9166
+ "description": "If true, use the time extent specified by the time parameter.",
8408
9167
  "type": "boolean"
8409
- },
8410
- "templates": {
8411
- "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.",
8412
- "items": {
8413
- "$ref": "#/definitions/esri.rest-api.Template.Template"
8414
- },
8415
- "type": "array"
8416
- },
8417
- "type": {
8418
- "description": "Indicates whether the layerDefinition applies to a \"Feature Layer\" or a \"Table\".",
8419
- "type": "string"
8420
- },
8421
- "typeIdField": {
8422
- "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.",
8423
- "type": "string"
8424
- },
8425
- "types": {
8426
- "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.",
8427
- "items": {
8428
- "$ref": "#/definitions/esri.rest-api.Type.Type"
8429
- },
8430
- "type": "array"
8431
- },
8432
- "visibilityField": {
8433
- "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.",
8434
- "type": "string"
8435
9168
  }
8436
9169
  },
8437
9170
  "type": "object"
@@ -8524,6 +9257,9 @@
8524
9257
  "$ref": "#/definitions/esri.rest-api._LayerBase.BlendMode",
8525
9258
  "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."
8526
9259
  },
9260
+ "customParameters": {
9261
+ "description": "A sequence of custom parameters appended to the URL of all requests related to supporting ArcGIS layer types."
9262
+ },
8527
9263
  "id": {
8528
9264
  "description": "A unique identifying string for the layer.",
8529
9265
  "type": "string"
@@ -10305,6 +11041,10 @@
10305
11041
  "$ref": "#/definitions/esri.rest-api.Renderer.ClassificationMethod",
10306
11042
  "description": "Used for classed color or size. The default value is esriClassifyManual. See {@link ClassificationMethod}."
10307
11043
  },
11044
+ "colorRamp": {
11045
+ "$ref": "#/definitions/esri.rest-api.Renderer.ColorRamp",
11046
+ "description": "A colorRamp object is used to specify a range of colors that are applied to a group of symbols."
11047
+ },
10308
11048
  "field": {
10309
11049
  "$ref": "#/definitions/esri.rest-api.Field.Field",
10310
11050
  "description": "Contains information about an attribute field."
@@ -10348,6 +11088,110 @@
10348
11088
  ],
10349
11089
  "type": "string"
10350
11090
  },
11091
+ "esri.rest-api.Renderer.ColorRamp": {
11092
+ "additionalProperties": false,
11093
+ "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/}.",
11094
+ "properties": {
11095
+ "algorithm": {
11096
+ "description": "Algorithm used for calculating the ramp.",
11097
+ "enum": [
11098
+ "esriCIELabAlgorithm",
11099
+ "esriHSVAlgorithm",
11100
+ "esriLabLChAlgorithm"
11101
+ ],
11102
+ "type": "string"
11103
+ },
11104
+ "colorRamps": {
11105
+ "description": "A multipart color ramp is defined by a list of constituent color ramps.",
11106
+ "items": {
11107
+ "$ref": "#/definitions/esri.rest-api.Renderer.ColorRamp"
11108
+ },
11109
+ "type": "array"
11110
+ },
11111
+ "fromColor": {
11112
+ "additionalItems": {
11113
+ "anyOf": [
11114
+ {
11115
+ "type": "number"
11116
+ },
11117
+ {
11118
+ "type": "number"
11119
+ },
11120
+ {
11121
+ "type": "number"
11122
+ },
11123
+ {
11124
+ "type": "number"
11125
+ }
11126
+ ]
11127
+ },
11128
+ "description": "Array representing the initial color to start the ramp from.",
11129
+ "items": [
11130
+ {
11131
+ "type": "number"
11132
+ },
11133
+ {
11134
+ "type": "number"
11135
+ },
11136
+ {
11137
+ "type": "number"
11138
+ },
11139
+ {
11140
+ "type": "number"
11141
+ }
11142
+ ],
11143
+ "minItems": 4,
11144
+ "type": "array"
11145
+ },
11146
+ "toColor": {
11147
+ "additionalItems": {
11148
+ "anyOf": [
11149
+ {
11150
+ "type": "number"
11151
+ },
11152
+ {
11153
+ "type": "number"
11154
+ },
11155
+ {
11156
+ "type": "number"
11157
+ },
11158
+ {
11159
+ "type": "number"
11160
+ }
11161
+ ]
11162
+ },
11163
+ "description": "Array representing the final color to end the ramp with.",
11164
+ "items": [
11165
+ {
11166
+ "type": "number"
11167
+ },
11168
+ {
11169
+ "type": "number"
11170
+ },
11171
+ {
11172
+ "type": "number"
11173
+ },
11174
+ {
11175
+ "type": "number"
11176
+ }
11177
+ ],
11178
+ "minItems": 4,
11179
+ "type": "array"
11180
+ },
11181
+ "type": {
11182
+ "description": "Value indicating the type of colorRamp.",
11183
+ "enum": [
11184
+ "algorithmic",
11185
+ "multipart"
11186
+ ],
11187
+ "type": "string"
11188
+ }
11189
+ },
11190
+ "required": [
11191
+ "type"
11192
+ ],
11193
+ "type": "object"
11194
+ },
10351
11195
  "esri.rest-api.Renderer.Renderer": {
10352
11196
  "anyOf": [
10353
11197
  {
@@ -10382,6 +11226,9 @@
10382
11226
  },
10383
11227
  {
10384
11228
  "$ref": "#/definitions/esri.rest-api.UniqueValueFromStyle.UniqueValueFromStyle"
11229
+ },
11230
+ {
11231
+ "$ref": "#/definitions/esri.rest-api.VectorFieldRenderer.VectorFieldRenderer"
10385
11232
  }
10386
11233
  ],
10387
11234
  "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)."
@@ -10815,6 +11662,9 @@
10815
11662
  "description": "A comma-separated string listing which editing operations are allowed on an editable feature service. Available operations include: Create | Delete | Query | Update | Editing.",
10816
11663
  "type": "string"
10817
11664
  },
11665
+ "customParameters": {
11666
+ "description": "A sequence of custom parameters appended to the URL of all requests related to supporting ArcGIS layer types."
11667
+ },
10818
11668
  "definitionEditor": {
10819
11669
  "$ref": "#/definitions/esri.rest-api.DefinitionEditor.DefinitionEditor",
10820
11670
  "description": "Stores interactive filters."
@@ -10831,6 +11681,10 @@
10831
11681
  "$ref": "#/definitions/esri.rest-api.FeatureLayer.FeatureCollectionType",
10832
11682
  "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."
10833
11683
  },
11684
+ "formInfo": {
11685
+ "$ref": "#/definitions/esri.rest-api.FormInfo.FormInfo",
11686
+ "description": "A formInfo object defining the content of the form when you are editing a feature."
11687
+ },
10834
11688
  "id": {
10835
11689
  "description": "A unique identifying string for the layer.",
10836
11690
  "type": "string"
@@ -10890,6 +11744,13 @@
10890
11744
  "description": "Indicates whether to allow map authors the ability to control what layers should be shown in a client's legend.",
10891
11745
  "type": "boolean"
10892
11746
  },
11747
+ "subtypeCode": {
11748
+ "description": "The feature subtype code identifying the layer. Used with SubtypeGroupLayers.",
11749
+ "type": [
11750
+ "string",
11751
+ "number"
11752
+ ]
11753
+ },
10893
11754
  "title": {
10894
11755
  "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.",
10895
11756
  "type": "string"
@@ -10982,12 +11843,6 @@
10982
11843
  "description": "The text weight. See {@link FontWeight}."
10983
11844
  }
10984
11845
  },
10985
- "required": [
10986
- "family",
10987
- "size",
10988
- "style",
10989
- "weight"
10990
- ],
10991
11846
  "type": "object"
10992
11847
  },
10993
11848
  "esri.rest-api.Symbol.FontStyle": {
@@ -11483,6 +12338,9 @@
11483
12338
  "$ref": "#/definitions/esri.rest-api._LayerBase.BlendMode",
11484
12339
  "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."
11485
12340
  },
12341
+ "customParameters": {
12342
+ "description": "A sequence of custom parameters appended to the URL of all requests related to supporting ArcGIS layer types."
12343
+ },
11486
12344
  "id": {
11487
12345
  "description": "A unique identifying string for the layer.",
11488
12346
  "type": "string"
@@ -11567,6 +12425,9 @@
11567
12425
  "$ref": "#/definitions/esri.rest-api._LayerBase.BlendMode",
11568
12426
  "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."
11569
12427
  },
12428
+ "customParameters": {
12429
+ "description": "A sequence of custom parameters appended to the URL of all requests related to supporting ArcGIS layer types."
12430
+ },
11570
12431
  "displayLevels": {
11571
12432
  "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.",
11572
12433
  "items": {
@@ -12016,6 +12877,113 @@
12016
12877
  },
12017
12878
  "type": "object"
12018
12879
  },
12880
+ "esri.rest-api.VectorFieldRenderer.MagnitudeUnit": {
12881
+ "description": "Units of magnitude.",
12882
+ "enum": [
12883
+ "esriFeetPerSecond",
12884
+ "esriKilometersPerHour",
12885
+ "esriKnots",
12886
+ "esriMetersPerSecond",
12887
+ "esriMilesPerHour"
12888
+ ],
12889
+ "type": "string"
12890
+ },
12891
+ "esri.rest-api.VectorFieldRenderer.VectorFieldRenderer": {
12892
+ "additionalProperties": false,
12893
+ "description": "A vector field renderer is a renderer that uses symbolizes a U-V or Magnitude-Direction data.",
12894
+ "properties": {
12895
+ "attributeField": {
12896
+ "description": "Name of the feature attribute field that contains the data value.",
12897
+ "enum": [
12898
+ "Magnitude"
12899
+ ],
12900
+ "type": "string"
12901
+ },
12902
+ "authoringInfo": {
12903
+ "$ref": "#/definitions/esri.rest-api.Renderer.AuthoringInfo",
12904
+ "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."
12905
+ },
12906
+ "flowRepresentation": {
12907
+ "description": "Sets the flow direction of the data.",
12908
+ "enum": [
12909
+ "flow_from",
12910
+ "flow_to"
12911
+ ],
12912
+ "type": "string"
12913
+ },
12914
+ "inputUnit": {
12915
+ "$ref": "#/definitions/esri.rest-api.VectorFieldRenderer.MagnitudeUnit",
12916
+ "description": "Input unit for Magnitude."
12917
+ },
12918
+ "outputUnit": {
12919
+ "$ref": "#/definitions/esri.rest-api.VectorFieldRenderer.MagnitudeUnit",
12920
+ "description": "Output unit for Magnitude."
12921
+ },
12922
+ "rotationExpression": {
12923
+ "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.",
12924
+ "type": "string"
12925
+ },
12926
+ "rotationType": {
12927
+ "$ref": "#/definitions/esri.rest-api.Renderer.RotationType",
12928
+ "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}."
12929
+ },
12930
+ "style": {
12931
+ "description": "A predefined style.",
12932
+ "enum": [
12933
+ "beaufort_ft",
12934
+ "beaufort_km",
12935
+ "beaufort_kn",
12936
+ "beaufort_m",
12937
+ "beaufort_mi",
12938
+ "classified_arrow",
12939
+ "ocean_current_kn",
12940
+ "ocean_current_m",
12941
+ "simple_scalar",
12942
+ "single_arrow",
12943
+ "wind_speed"
12944
+ ],
12945
+ "type": "string"
12946
+ },
12947
+ "symbolTileSize": {
12948
+ "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.",
12949
+ "type": "number"
12950
+ },
12951
+ "type": {
12952
+ "description": "The type of renderer. See {@link RendererType}.",
12953
+ "enum": [
12954
+ "vectorField"
12955
+ ],
12956
+ "type": "string"
12957
+ },
12958
+ "visualVariables": {
12959
+ "description": "An array of visualVariable objects used for continuous color or size, simple, and unique values with feature opacity.",
12960
+ "items": {
12961
+ "anyOf": [
12962
+ {
12963
+ "$ref": "#/definitions/esri.rest-api.VisualVariable.ColorInfo"
12964
+ },
12965
+ {
12966
+ "$ref": "#/definitions/esri.rest-api.VisualVariable.SizeInfo"
12967
+ },
12968
+ {
12969
+ "$ref": "#/definitions/esri.rest-api.VisualVariable.TransparencyInfo"
12970
+ },
12971
+ {
12972
+ "$ref": "#/definitions/esri.rest-api.VisualVariable.RotationInfo"
12973
+ }
12974
+ ]
12975
+ },
12976
+ "type": "array"
12977
+ }
12978
+ },
12979
+ "required": [
12980
+ "attributeField",
12981
+ "flowRepresentation",
12982
+ "style",
12983
+ "type"
12984
+ ],
12985
+ "type": "object"
12986
+ },
12019
12987
  "esri.rest-api.VectorTileLayer.VectorTileLayer": {
12020
12988
  "additionalProperties": false,
12021
12989
  "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/}.",
@@ -12024,6 +12992,9 @@
12024
12992
  "$ref": "#/definitions/esri.rest-api._LayerBase.BlendMode",
12025
12993
  "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."
12026
12994
  },
12995
+ "customParameters": {
12996
+ "description": "A sequence of custom parameters appended to the URL of all requests related to supporting ArcGIS layer types."
12997
+ },
12027
12998
  "id": {
12028
12999
  "description": "A unique identifying string for the layer.",
12029
13000
  "type": "string"