@vertigis/viewer-spec 56.34.0 → 56.34.2
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.
- package/app-config/common/AnalyticsModelProperties.d.ts +3 -2
- package/app-config/schema/common-app-config.schema.json +1 -1
- package/app-config/schema/mobile-app-config.schema.json +1 -1
- package/app-config/schema/web-app-config.schema.json +1 -1
- package/messaging/registry/arcade.d.ts +21 -6
- package/messaging/registry/drawing.d.ts +17 -0
- package/messaging/registry/edit.d.ts +57 -2
- package/messaging/registry/layers.d.ts +9 -0
- package/messaging/registry/location-marker.d.ts +19 -0
- package/messaging/registry/map.d.ts +82 -36
- package/messaging/registry/project.d.ts +56 -0
- package/messaging/registry/query-builder.d.ts +22 -0
- package/messaging/schema/common-action.schema.json +202 -183
- package/messaging/schema/common-event.schema.json +147 -147
- package/messaging/schema/mobile-action.schema.json +213 -194
- package/messaging/schema/mobile-event.schema.json +147 -147
- package/messaging/schema/web-action.schema.json +316 -243
- package/messaging/schema/web-event.schema.json +147 -147
- package/package.json +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -701,7 +701,7 @@
|
|
|
701
701
|
"description": "Arguments for the \"map.add-markup\" command.",
|
|
702
702
|
"properties": {
|
|
703
703
|
"collection": {
|
|
704
|
-
"description": "The named collection of markup to operate on. If not specified the default markup collection will be used. Some markup collection names are used internally by Web
|
|
704
|
+
"description": "The named collection of markup to operate on. If not specified the default markup collection will be used. Some markup collection names are used internally by Web:\n\n| Collection Name | Usage |\n| ---------------------------------- | --------------------------------------------------------------------------- |\n| \"default\" | The default markup layer. |\n| \"vgs-active-snapping-guides\" | The active snap point when snapping. |\n| \"vgs-buffer\" | Buffer graphics from out of the box buffer tools. |\n| \"vgs-context-marker\" | Right click context marker on map. |\n| \"vgs-dirty-indicator\" | Invalid geometry indicators used when editing. |\n| \"vgs-editing-control\" | Edit frame and vertices while editing geometries. |\n| \"vgs-location-accuracy\" | Location accuracy circle when geolocating. |\n| \"vgs-location-marker-\\*\" | Location markers have this prefix followed by the marker id. |\n| \"vgs-map-notes\" | Map Notes. |\n| \"vgs-measurement-labels\" | Labels on measured graphics. |\n| \"vgs-other-snapping-guides\" | Additional snapping point visualizations. |\n| \"vgs-query\" | Graphics representing the custom spatial filter for the query builder tool. |\n| \"vgs-self-snaps\" | Used internally by snapping. |\n| \"vgs-sketching\" | Temporary graphics used while drawing geometries. |\n| \"vgs-snapping-radius\" | Snapping radius when snapping is active. |\n| \"vgs-transient-measurement-labels\" | Measurement labels used while drawing. |\n\nWeb only.",
|
|
705
705
|
"type": "string"
|
|
706
706
|
},
|
|
707
707
|
"graphics": {
|
|
@@ -910,7 +910,7 @@
|
|
|
910
910
|
"description": "Arguments for the system.disable-background-location-updates command.",
|
|
911
911
|
"properties": {
|
|
912
912
|
"taskId": {
|
|
913
|
-
"description": "The task ID for enabling and disabling background location updates. Once enabled using a certain task ID, background location updates can only be stopped once they are disabled with that same task ID
|
|
913
|
+
"description": "The task ID for enabling and disabling background location updates. Once enabled using a certain task ID, background location updates can only be stopped once they are disabled with that same task ID.\n\nCannot be set to null, but if this argument is not provided, a preset default value will be used.",
|
|
914
914
|
"type": "string"
|
|
915
915
|
}
|
|
916
916
|
},
|
|
@@ -921,11 +921,11 @@
|
|
|
921
921
|
"description": "Arguments for the geometry.calculate-point operation.",
|
|
922
922
|
"properties": {
|
|
923
923
|
"angle": {
|
|
924
|
-
"description": "The angle, relative to the angle of the reference line, that will be used to calculate the new point. Positive angles are calculated clockwise from the angle of the reference line, negative angles are calculated counter-clockwise
|
|
924
|
+
"description": "The angle, relative to the angle of the reference line, that will be used to calculate the new point. Positive angles are calculated clockwise from the angle of the reference line, negative angles are calculated counter-clockwise.\n\nExactly one of 'offset' and 'angle' must be set.",
|
|
925
925
|
"type": "number"
|
|
926
926
|
},
|
|
927
927
|
"distance": {
|
|
928
|
-
"description": "The distance that will be used to calculate the new point
|
|
928
|
+
"description": "The distance that will be used to calculate the new point.\n\nIf using 'offset', this indicates the distance along the reference line.\n\nIf using 'angle', this indicates the distance directly from the new point to the start point of the reference line.\n\nCannot be negative.",
|
|
929
929
|
"type": "number"
|
|
930
930
|
},
|
|
931
931
|
"geodetic": {
|
|
@@ -937,7 +937,7 @@
|
|
|
937
937
|
"description": "The geodetic curve type used when calculating the new point. Only applies when 'geodetic' is true. Defaults to 'geodesic'."
|
|
938
938
|
},
|
|
939
939
|
"offset": {
|
|
940
|
-
"description": "The offset that will be used to calculate the new point. The 'offset' corresponds to the distance perpendicularly away from the reference line
|
|
940
|
+
"description": "The offset that will be used to calculate the new point. The 'offset' corresponds to the distance perpendicularly away from the reference line.\n\nPositive values will result in a point to the right of the reference line, negative values will be to the left.\n\nExactly one of 'offset' and 'angle' must be set.",
|
|
941
941
|
"type": "number"
|
|
942
942
|
},
|
|
943
943
|
"referenceLine": {
|
|
@@ -1104,7 +1104,7 @@
|
|
|
1104
1104
|
"description": "Arguments for the \"map.clear-markup\" command.",
|
|
1105
1105
|
"properties": {
|
|
1106
1106
|
"collection": {
|
|
1107
|
-
"description": "The named collection of markup to operate on. If not specified the default markup collection will be used. Some markup collection names are used internally by Web
|
|
1107
|
+
"description": "The named collection of markup to operate on. If not specified the default markup collection will be used. Some markup collection names are used internally by Web:\n\n| Collection Name | Usage |\n| ---------------------------------- | --------------------------------------------------------------------------- |\n| \"default\" | The default markup layer. |\n| \"vgs-active-snapping-guides\" | The active snap point when snapping. |\n| \"vgs-buffer\" | Buffer graphics from out of the box buffer tools. |\n| \"vgs-context-marker\" | Right click context marker on map. |\n| \"vgs-dirty-indicator\" | Invalid geometry indicators used when editing. |\n| \"vgs-editing-control\" | Edit frame and vertices while editing geometries. |\n| \"vgs-location-accuracy\" | Location accuracy circle when geolocating. |\n| \"vgs-location-marker-\\*\" | Location markers have this prefix followed by the marker id. |\n| \"vgs-map-notes\" | Map Notes. |\n| \"vgs-measurement-labels\" | Labels on measured graphics. |\n| \"vgs-other-snapping-guides\" | Additional snapping point visualizations. |\n| \"vgs-query\" | Graphics representing the custom spatial filter for the query builder tool. |\n| \"vgs-self-snaps\" | Used internally by snapping. |\n| \"vgs-sketching\" | Temporary graphics used while drawing geometries. |\n| \"vgs-snapping-radius\" | Snapping radius when snapping is active. |\n| \"vgs-transient-measurement-labels\" | Measurement labels used while drawing. |\n\nWeb only.",
|
|
1108
1108
|
"type": "string"
|
|
1109
1109
|
},
|
|
1110
1110
|
"graphics": {
|
|
@@ -2082,7 +2082,7 @@
|
|
|
2082
2082
|
"type": "string"
|
|
2083
2083
|
},
|
|
2084
2084
|
"taskId": {
|
|
2085
|
-
"description": "The task ID for enabling and disabling background location updates. Once enabled using a certain task ID, background location updates can only be stopped once they are disabled with that same task ID
|
|
2085
|
+
"description": "The task ID for enabling and disabling background location updates. Once enabled using a certain task ID, background location updates can only be stopped once they are disabled with that same task ID.\n\nCannot be set to null, but if this argument is not provided, a preset default value will be used.",
|
|
2086
2086
|
"type": "string"
|
|
2087
2087
|
}
|
|
2088
2088
|
},
|
|
@@ -2757,7 +2757,7 @@
|
|
|
2757
2757
|
"type": "number"
|
|
2758
2758
|
},
|
|
2759
2759
|
"polyTolerance": {
|
|
2760
|
-
"description": "A tolerance value to use for polyline and polygon identify operations. All features falling within a buffer of this many logical pixels around the geometry will be returned by the identify operation. The default is
|
|
2760
|
+
"description": "A tolerance value to use for polyline and polygon identify operations. All features falling within a buffer of this many logical pixels around the geometry will be returned by the identify operation. The default is\n2. Not supported in VertiGIS Studio Mobile.",
|
|
2761
2761
|
"type": "number"
|
|
2762
2762
|
},
|
|
2763
2763
|
"returnGeometry": {
|
|
@@ -3322,7 +3322,7 @@
|
|
|
3322
3322
|
"$ref": "#/definitions/esri.rest-api.DrawingInfoJson.PointCloudValueFilterJson"
|
|
3323
3323
|
}
|
|
3324
3324
|
],
|
|
3325
|
-
"description": "Filters applied to the pointCloud which will hide a point
|
|
3325
|
+
"description": "Filters applied to the pointCloud which will hide a point.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/pointCloudFilter/}."
|
|
3326
3326
|
},
|
|
3327
3327
|
"PublishEventArgs": {
|
|
3328
3328
|
"additionalProperties": false,
|
|
@@ -4133,7 +4133,7 @@
|
|
|
4133
4133
|
"description": "Arguments for the \"map.start-sketch\" operation.",
|
|
4134
4134
|
"properties": {
|
|
4135
4135
|
"bufferSize": {
|
|
4136
|
-
"description": "The size of the buffer to be created around the geometry. If null or a negative value, no buffer will be created
|
|
4136
|
+
"description": "The size of the buffer to be created around the geometry. If null or a negative value, no buffer will be created.\n\nThis is currently only supported for line geometry types.",
|
|
4137
4137
|
"type": "number"
|
|
4138
4138
|
},
|
|
4139
4139
|
"editorSettings": {
|
|
@@ -4658,6 +4658,7 @@
|
|
|
4658
4658
|
"app.get-persistent-data:input": {
|
|
4659
4659
|
"$ref": "#/definitions/StorageDataArgs"
|
|
4660
4660
|
},
|
|
4661
|
+
"app.get-persistent-data:output": {},
|
|
4661
4662
|
"app.go-to-app-selector": {
|
|
4662
4663
|
"description": "Returns to the app selector view where the user can select a different app. Only enabled if the current app was launched through VertiGIS Studio Go. Mobile only.",
|
|
4663
4664
|
"enum": [
|
|
@@ -4743,7 +4744,7 @@
|
|
|
4743
4744
|
]
|
|
4744
4745
|
},
|
|
4745
4746
|
"basemap.get-all": {
|
|
4746
|
-
"description": "Gets all configured basemaps
|
|
4747
|
+
"description": "Gets all configured basemaps.\r\n\r Having argument:\r\n\r\n- Multiple maps: the union of all basemap options from each\r\n- No maps: the union of all basemap options for every map in the application.",
|
|
4747
4748
|
"enum": [
|
|
4748
4749
|
"basemap.get-all"
|
|
4749
4750
|
]
|
|
@@ -4791,7 +4792,7 @@
|
|
|
4791
4792
|
]
|
|
4792
4793
|
},
|
|
4793
4794
|
"drawing.create-graphics": {
|
|
4794
|
-
"description": "Creates graphics
|
|
4795
|
+
"description": "Creates graphics.\r\n\r In Web, creates graphics out of GeometryLike or CreateGraphicsArgs, with the current symbols that are set on the DrawManager.\r\n\r In Mobile, creates graphics from the given CreateGraphicsArgs or CreateGraphicsArgs[] (or some GeometryLike args). Any provided symbol parameter is used, otherwise a default symbol is used.",
|
|
4795
4796
|
"enum": [
|
|
4796
4797
|
"drawing.create-graphics"
|
|
4797
4798
|
]
|
|
@@ -5040,7 +5041,7 @@
|
|
|
5040
5041
|
]
|
|
5041
5042
|
},
|
|
5042
5043
|
"edit.display-add-feature": {
|
|
5043
|
-
"description": "Begin an interactive feature editing session with a new feature. `DisplayAddFeatureArgs` is not supported on Mobile.",
|
|
5044
|
+
"description": "Begin an interactive feature editing session with a new feature. `DisplayAddFeatureArgs` is not supported on Mobile.\r\n\r **Example:** Create and allow the user to edit a new feature with an initial attributes collection. If no geometry is provided in context they will be asked to select one.\r\n\r _Note:_ $map1.map.extension is the output of a 'Get Map' activity run in Web by Workflow. When the map and/or layer are provided in the context of a command chain these parameters can be omitted.\r\n\r ```\r\n{\r\n \"editAttributes\": true,\r\n \"editGeometry\": true,\r\n \"featureAttributes\": {\r\n \"ASSET_ID\": \"WFH001234\"\r\n },\r\n \"layers\": \"Victoria_Fire_Hydrants_8780\",\r\n \"maps\": $map1.map.extension\r\n}\r\n```",
|
|
5044
5045
|
"enum": [
|
|
5045
5046
|
"edit.display-add-feature"
|
|
5046
5047
|
]
|
|
@@ -5056,7 +5057,7 @@
|
|
|
5056
5057
|
]
|
|
5057
5058
|
},
|
|
5058
5059
|
"edit.display-add-related-feature": {
|
|
5059
|
-
"description": "Begin an interactive feature editing session for a new related feature. The specified feature will be the original feature that the new related feature will be added to in the relationship.",
|
|
5060
|
+
"description": "Begin an interactive feature editing session for a new related feature. The specified feature will be the original feature that the new related feature will be added to in the relationship.\r\n\r **Example:** Create and edit a new record on a related table, with the option to add attachments. Make sure the 'COMMENTS' field is included in the editable attributes and make it required.\r\n\r _Notes:_.\r\n\r\n1. The feature used here must come from the running viewer, and cannot be an ad-hoc feature created from a JSON object. For example, you can use the output of `results.get-active-features`, or the feature provided in a command chain context.\r\n2. `editableExpression` and `requiredExpression` both take an arcade expression, and here the string \"true\" is just a simple arcade expression that always returns true. You can also use a more complex expression, or reference one from your webmap.\r\n\r ```\r\n{\r\n \"editAttributes\": true,\r\n \"editAttachments\": true,\r\n \"features\": $runOperation1.result,\r\n \"relationshipId\": \"1\",\r\n \"fieldElements\": [\r\n {\r\n \"fieldName\": \"COMMENTS\",\r\n \"editableExpression\": \"true\",\r\n \"requiredExpression\": \"true\"\r\n }\r\n ]\r\n}\r\n```",
|
|
5060
5061
|
"enum": [
|
|
5061
5062
|
"edit.display-add-related-feature"
|
|
5062
5063
|
]
|
|
@@ -5302,7 +5303,7 @@
|
|
|
5302
5303
|
"type": "number"
|
|
5303
5304
|
},
|
|
5304
5305
|
"opacity": {
|
|
5305
|
-
"description": "The degree of transparency applied to the layer on the client side, where
|
|
5306
|
+
"description": "The degree of transparency applied to the layer on the client side, where\n0 is full transparency and 1 is no transparency.",
|
|
5306
5307
|
"type": "number"
|
|
5307
5308
|
},
|
|
5308
5309
|
"popupInfo": {
|
|
@@ -5474,7 +5475,7 @@
|
|
|
5474
5475
|
"type": "number"
|
|
5475
5476
|
},
|
|
5476
5477
|
"opacity": {
|
|
5477
|
-
"description": "The degree of transparency applied to the layer on the client side, where
|
|
5478
|
+
"description": "The degree of transparency applied to the layer on the client side, where\n0 is full transparency and 1 is no transparency.",
|
|
5478
5479
|
"type": "number"
|
|
5479
5480
|
},
|
|
5480
5481
|
"refreshInterval": {
|
|
@@ -5684,7 +5685,7 @@
|
|
|
5684
5685
|
},
|
|
5685
5686
|
"esri.rest-api.CSVLayerJson.CSVLayerJson": {
|
|
5686
5687
|
"additionalProperties": false,
|
|
5687
|
-
"description": "The CSV layer type references a CSV or TXT file from a publicly-accessible web server. It then dynamically loads into the map at run time. The CSV layer will maintain a reference to the CSV resource
|
|
5688
|
+
"description": "The CSV layer type references a CSV or TXT file from a publicly-accessible web server. It then dynamically loads into the map at run time. The CSV layer will maintain a reference to the CSV resource.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/csvLayer/} {@link https://developers.arcgis.com/web-scene-specification/objects/csvLayer/}.",
|
|
5688
5689
|
"properties": {
|
|
5689
5690
|
"blendMode": {
|
|
5690
5691
|
"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.",
|
|
@@ -5769,7 +5770,7 @@
|
|
|
5769
5770
|
"type": "number"
|
|
5770
5771
|
},
|
|
5771
5772
|
"opacity": {
|
|
5772
|
-
"description": "The degree of transparency applied to the layer on the client side, where
|
|
5773
|
+
"description": "The degree of transparency applied to the layer on the client side, where\n0 is full transparency and 1 is no transparency.",
|
|
5773
5774
|
"type": "number"
|
|
5774
5775
|
},
|
|
5775
5776
|
"popupInfo": {
|
|
@@ -5826,7 +5827,7 @@
|
|
|
5826
5827
|
},
|
|
5827
5828
|
"esri.rest-api.CSVLayerJson.LocationInfoJson": {
|
|
5828
5829
|
"additionalProperties": false,
|
|
5829
|
-
"description": "Defines how location information will be retrieved from a CSV file referenced through the web
|
|
5830
|
+
"description": "Defines how location information will be retrieved from a CSV file referenced through the web.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/locationInfo/} {@link https://developers.arcgis.com/web-scene-specification/objects/locationInfo/}.",
|
|
5830
5831
|
"properties": {
|
|
5831
5832
|
"latitudeFieldName": {
|
|
5832
5833
|
"description": "A string defining the field name that holds the latitude (Y) coordinate.",
|
|
@@ -5845,7 +5846,7 @@
|
|
|
5845
5846
|
},
|
|
5846
5847
|
"esri.rest-api.DefinitionEditorJson.DefinitionEditorJson": {
|
|
5847
5848
|
"additionalProperties": false,
|
|
5848
|
-
"description": "The definitionEditor stores interactive filters at the same level as layerDefinition
|
|
5849
|
+
"description": "The definitionEditor stores interactive filters at the same level as layerDefinition.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/definitionEditor/} {@link https://developers.arcgis.com/web-scene-specification/objects/definitionEditor/}.",
|
|
5849
5850
|
"properties": {
|
|
5850
5851
|
"inputs": {
|
|
5851
5852
|
"description": "An array of input objects.",
|
|
@@ -5971,7 +5972,7 @@
|
|
|
5971
5972
|
"$ref": "#/definitions/esri.rest-api.DomainJson.RangeDomainJson"
|
|
5972
5973
|
}
|
|
5973
5974
|
],
|
|
5974
|
-
"description": "A domain specifies the set of valid values for a field
|
|
5975
|
+
"description": "A domain specifies the set of valid values for a field.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/domain/} {@link https://developers.arcgis.com/web-scene-specification/objects/domain/}."
|
|
5975
5976
|
},
|
|
5976
5977
|
"esri.rest-api.DomainJson.InheritedDomainJson": {
|
|
5977
5978
|
"additionalProperties": false,
|
|
@@ -6018,7 +6019,7 @@
|
|
|
6018
6019
|
},
|
|
6019
6020
|
"esri.rest-api.DrawingInfoJson.DrawingInfoJson": {
|
|
6020
6021
|
"additionalProperties": false,
|
|
6021
|
-
"description": "The drawingInfo object contains drawing information for a feature collection or a single layer in a map service. This object is used in LayerDefinition
|
|
6022
|
+
"description": "The drawingInfo object contains drawing information for a feature collection or a single layer in a map service. This object is used in LayerDefinition.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/drawingInfo/} {@link https://developers.arcgis.com/web-scene-specification/objects/drawingInfo/}.",
|
|
6022
6023
|
"properties": {
|
|
6023
6024
|
"filters": {
|
|
6024
6025
|
"description": "Filters for PointCloud layers.",
|
|
@@ -6059,7 +6060,7 @@
|
|
|
6059
6060
|
},
|
|
6060
6061
|
"esri.rest-api.DrawingInfoJson.LabelingInfoJson": {
|
|
6061
6062
|
"additionalProperties": false,
|
|
6062
|
-
"description": "The labelingInfo object specifies the label definition for a layer
|
|
6063
|
+
"description": "The labelingInfo object specifies the label definition for a layer.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/labelingInfo/} {@link https://developers.arcgis.com/web-scene-specification/objects/labelingInfo/}.",
|
|
6063
6064
|
"properties": {
|
|
6064
6065
|
"labelExpression": {
|
|
6065
6066
|
"description": "This read-only web map property allows formatting of labels. Use labelExpressionInfo instead.",
|
|
@@ -6144,14 +6145,14 @@
|
|
|
6144
6145
|
},
|
|
6145
6146
|
"esri.rest-api.DrawingInfoJson.PointCloudBitfieldFilterJson": {
|
|
6146
6147
|
"additionalProperties": false,
|
|
6147
|
-
"description": "Filters points based on the value of the specified bitfield attribute
|
|
6148
|
+
"description": "Filters points based on the value of the specified bitfield attribute.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/pointCloudBitfieldFilter/}.",
|
|
6148
6149
|
"properties": {
|
|
6149
6150
|
"field": {
|
|
6150
6151
|
"description": "The name of the field that is used for the filter.",
|
|
6151
6152
|
"type": "string"
|
|
6152
6153
|
},
|
|
6153
6154
|
"requiredClearBits": {
|
|
6154
|
-
"description": "List ALL bit numbers that must cleared (=0) for the point to be kept. Bit
|
|
6155
|
+
"description": "List ALL bit numbers that must cleared (=0) for the point to be kept. Bit\n0 is LSB.",
|
|
6155
6156
|
"items": {
|
|
6156
6157
|
"type": "number"
|
|
6157
6158
|
},
|
|
@@ -6177,7 +6178,7 @@
|
|
|
6177
6178
|
},
|
|
6178
6179
|
"esri.rest-api.DrawingInfoJson.PointCloudReturnFilterJson": {
|
|
6179
6180
|
"additionalProperties": false,
|
|
6180
|
-
"description": "Filters points based on the value of the return number/return count
|
|
6181
|
+
"description": "Filters points based on the value of the return number/return count.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/pointCloudReturnFilter/}.",
|
|
6181
6182
|
"properties": {
|
|
6182
6183
|
"field": {
|
|
6183
6184
|
"description": "The name of the field that is used for the filter.",
|
|
@@ -6203,7 +6204,7 @@
|
|
|
6203
6204
|
},
|
|
6204
6205
|
"esri.rest-api.DrawingInfoJson.PointCloudValueFilterJson": {
|
|
6205
6206
|
"additionalProperties": false,
|
|
6206
|
-
"description": "Filters points based on the value of an specified attribute
|
|
6207
|
+
"description": "Filters points based on the value of an specified attribute.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/pointCloudValueFilter/}.",
|
|
6207
6208
|
"properties": {
|
|
6208
6209
|
"field": {
|
|
6209
6210
|
"description": "The name of the field that is used for the filter.",
|
|
@@ -6233,7 +6234,7 @@
|
|
|
6233
6234
|
},
|
|
6234
6235
|
"esri.rest-api.FeatureCollectionJson.FeatureCollectionJson": {
|
|
6235
6236
|
"additionalProperties": false,
|
|
6236
|
-
"description": "Defines a layer of features whose geometry and attributes will be stored directly within the web map
|
|
6237
|
+
"description": "Defines a layer of features whose geometry and attributes will be stored directly within the web map.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/featureCollection/}.",
|
|
6237
6238
|
"properties": {
|
|
6238
6239
|
"layers": {
|
|
6239
6240
|
"description": "An array of Layer objects defining all the styling, geometry, and attribute information for the features.",
|
|
@@ -6254,10 +6255,10 @@
|
|
|
6254
6255
|
},
|
|
6255
6256
|
"esri.rest-api.FeatureJson.FeatureJson": {
|
|
6256
6257
|
"additionalProperties": false,
|
|
6257
|
-
"description": "Contains information about an attribute field and feature geometry
|
|
6258
|
+
"description": "Contains information about an attribute field and feature geometry.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/feature/} {@link https://developers.arcgis.com/web-scene-specification/objects/feature/}.",
|
|
6258
6259
|
"properties": {
|
|
6259
6260
|
"attributes": {
|
|
6260
|
-
"description": "The feature attributes. It is a JSON object that contains a dictionary of name-value pairs. The names are the feature field names. The values are the field values and they can be any of the standard JSON types - string, number and boolean. Note that date values are encoded as numbers. The number represents the number of milliseconds since epoch (January 1
|
|
6261
|
+
"description": "The feature attributes. It is a JSON object that contains a dictionary of name-value pairs. The names are the feature field names. The values are the field values and they can be any of the standard JSON types - string, number and boolean. Note that date values are encoded as numbers. The number represents the number of milliseconds since epoch (January 1,\n1970) in UTC."
|
|
6261
6262
|
},
|
|
6262
6263
|
"geometry": {
|
|
6263
6264
|
"$ref": "#/definitions/esri.rest-api.GeometryJson.GeometryJson",
|
|
@@ -6276,7 +6277,7 @@
|
|
|
6276
6277
|
},
|
|
6277
6278
|
"esri.rest-api.FeatureLayerJson.FeatureLayerJson": {
|
|
6278
6279
|
"additionalProperties": false,
|
|
6279
|
-
"description": "Feature layers can be created by referencing a layer from either a map service or a feature service or by specifying a feature collection object. Use a map service if you just want to retrieve geometries and attributes from the server and symbolize them yourself. Use a feature service if you want to take advantage of symbols from the service's source map document. Also, use a feature service if you plan on doing editing with the feature layer. Feature layers honor any feature templates configured in the source map document. Feature collection objects are used to create a feature layer based on the supplied definition
|
|
6280
|
+
"description": "Feature layers can be created by referencing a layer from either a map service or a feature service or by specifying a feature collection object. Use a map service if you just want to retrieve geometries and attributes from the server and symbolize them yourself. Use a feature service if you want to take advantage of symbols from the service's source map document. Also, use a feature service if you plan on doing editing with the feature layer. Feature layers honor any feature templates configured in the source map document. Feature collection objects are used to create a feature layer based on the supplied definition.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/featureLayer/} {@link https://developers.arcgis.com/web-scene-specification/objects/featureLayer/}.",
|
|
6280
6281
|
"properties": {
|
|
6281
6282
|
"blendMode": {
|
|
6282
6283
|
"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.",
|
|
@@ -6381,7 +6382,7 @@
|
|
|
6381
6382
|
"type": "number"
|
|
6382
6383
|
},
|
|
6383
6384
|
"mode": {
|
|
6384
|
-
"description": "Used with ArcGIS feature services and individual layers in ArcGIS map services, this property determines how the features are retrieved from the server. This property is represented as 0, 1, or 2
|
|
6385
|
+
"description": "Used with ArcGIS feature services and individual layers in ArcGIS map services, this property determines how the features are retrieved from the server. This property is represented as 0, 1, or 2.\n\n- 0: Snapshot mode. Immediately retrieves all features when the map is loaded.\n- 1: On-demand mode. Features within the current view extent are retrieved as the user navigates the map. This is the default and the most common way to use feature services in web maps.\n- 2: Selection-only mode. No features are initially retrieved. This mode is used when you have a map service and a feature service from the same parent URL that are working together in the same map, with the map service being used for display and the feature service used for editing.",
|
|
6385
6386
|
"enum": [
|
|
6386
6387
|
0,
|
|
6387
6388
|
1,
|
|
@@ -6391,7 +6392,7 @@
|
|
|
6391
6392
|
"type": "number"
|
|
6392
6393
|
},
|
|
6393
6394
|
"opacity": {
|
|
6394
|
-
"description": "The degree of transparency applied to the layer on the client side, where
|
|
6395
|
+
"description": "The degree of transparency applied to the layer on the client side, where\n0 is full transparency and 1 is no transparency.",
|
|
6395
6396
|
"type": "number"
|
|
6396
6397
|
},
|
|
6397
6398
|
"popupInfo": {
|
|
@@ -6462,7 +6463,7 @@
|
|
|
6462
6463
|
},
|
|
6463
6464
|
"esri.rest-api.FeatureSetJson.FeatureSetJson": {
|
|
6464
6465
|
"additionalProperties": false,
|
|
6465
|
-
"description": "Contains the geometry and attributes of features in a layer. This object is used with feature collections only. For more information, see Layer
|
|
6466
|
+
"description": "Contains the geometry and attributes of features in a layer. This object is used with feature collections only. For more information, see Layer.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/featureSet/} {@link https://developers.arcgis.com/web-scene-specification/objects/featureSet/}.",
|
|
6466
6467
|
"properties": {
|
|
6467
6468
|
"features": {
|
|
6468
6469
|
"description": "An array of Feature objects, each one containing geometry and a set of attributes.",
|
|
@@ -6484,7 +6485,7 @@
|
|
|
6484
6485
|
},
|
|
6485
6486
|
"esri.rest-api.FieldJson.FieldJson": {
|
|
6486
6487
|
"additionalProperties": false,
|
|
6487
|
-
"description": "Contains information about an attribute field. This field could come from a feature collection or a single layer in a map service. Used in layerDefinition
|
|
6488
|
+
"description": "Contains information about an attribute field. This field could come from a feature collection or a single layer in a map service. Used in layerDefinition.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/field/} {@link https://developers.arcgis.com/web-scene-specification/objects/field/}.",
|
|
6488
6489
|
"properties": {
|
|
6489
6490
|
"alias": {
|
|
6490
6491
|
"description": "The field alias (human-readable name).",
|
|
@@ -6982,7 +6983,7 @@
|
|
|
6982
6983
|
},
|
|
6983
6984
|
"esri.rest-api.GeoJSONLayerJson.GeoJSONLayerJson": {
|
|
6984
6985
|
"additionalProperties": false,
|
|
6985
|
-
"description": "The GeoJSON layer type references a GeoJSON or TXT file from a publicly-accessible web server. It then dynamically loads into the map at run time. The GeoJSON layer will maintain a reference to the GeoJSON resource
|
|
6986
|
+
"description": "The GeoJSON layer type references a GeoJSON or TXT file from a publicly-accessible web server. It then dynamically loads into the map at run time. The GeoJSON layer will maintain a reference to the GeoJSON resource.\n\nWeb map spec: {@link https://developers.arcgis.com/web-map-specification/objects/geoJsonLayer/}. Web scene spec: {@link https://developers.arcgis.com/web-scene-specification/objects/geoJsonLayer/}.",
|
|
6986
6987
|
"properties": {
|
|
6987
6988
|
"blendMode": {
|
|
6988
6989
|
"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.",
|
|
@@ -7055,7 +7056,7 @@
|
|
|
7055
7056
|
"type": "number"
|
|
7056
7057
|
},
|
|
7057
7058
|
"opacity": {
|
|
7058
|
-
"description": "The degree of transparency applied to the layer on the client side, where
|
|
7059
|
+
"description": "The degree of transparency applied to the layer on the client side, where\n0 is full transparency and 1 is no transparency.",
|
|
7059
7060
|
"type": "number"
|
|
7060
7061
|
},
|
|
7061
7062
|
"popupInfo": {
|
|
@@ -7112,7 +7113,7 @@
|
|
|
7112
7113
|
},
|
|
7113
7114
|
"esri.rest-api.GeoRSSLayerJson.GeoRSSLayerJson": {
|
|
7114
7115
|
"additionalProperties": false,
|
|
7115
|
-
"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
|
|
7116
|
+
"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.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/geoRSSLayer/}.",
|
|
7116
7117
|
"properties": {
|
|
7117
7118
|
"blendMode": {
|
|
7118
7119
|
"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.",
|
|
@@ -7181,7 +7182,7 @@
|
|
|
7181
7182
|
"type": "number"
|
|
7182
7183
|
},
|
|
7183
7184
|
"opacity": {
|
|
7184
|
-
"description": "The degree of transparency applied to the layer on the client side, where
|
|
7185
|
+
"description": "The degree of transparency applied to the layer on the client side, where\n0 is full transparency and 1 is no transparency.",
|
|
7185
7186
|
"type": "number"
|
|
7186
7187
|
},
|
|
7187
7188
|
"pointSymbol": {
|
|
@@ -7277,7 +7278,7 @@
|
|
|
7277
7278
|
"$ref": "#/definitions/esri.rest-api.GeometryJson.ExtentJson"
|
|
7278
7279
|
}
|
|
7279
7280
|
],
|
|
7280
|
-
"description": "A geometry as defined in the ArcGIS REST and web map specifications
|
|
7281
|
+
"description": "A geometry as defined in the ArcGIS REST and web map specifications.\n\nSee {@link http://resources.arcgis.com/en/help/rest/apiref/geometry.html}. See {@link https://developers.arcgis.com/web-map-specification/objects/geometry/} {@link https://developers.arcgis.com/web-map-specification/objects/geometryType/}."
|
|
7281
7282
|
},
|
|
7282
7283
|
"esri.rest-api.GeometryJson.GeometryJsonType": {
|
|
7283
7284
|
"description": "Types of geometry. Geometry JSON objects don't reference these types, but they appear within services to describe the type of geometries in layers.",
|
|
@@ -7434,7 +7435,7 @@
|
|
|
7434
7435
|
},
|
|
7435
7436
|
"esri.rest-api.GroupLayerJson.GroupLayerJson": {
|
|
7436
7437
|
"additionalProperties": false,
|
|
7437
|
-
"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
|
|
7438
|
+
"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.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/groupLayer/}.",
|
|
7438
7439
|
"properties": {
|
|
7439
7440
|
"blendMode": {
|
|
7440
7441
|
"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.",
|
|
@@ -7506,7 +7507,7 @@
|
|
|
7506
7507
|
"type": "number"
|
|
7507
7508
|
},
|
|
7508
7509
|
"opacity": {
|
|
7509
|
-
"description": "The degree of transparency applied to the layer on the client side, where
|
|
7510
|
+
"description": "The degree of transparency applied to the layer on the client side, where\n0 is full transparency and 1 is no transparency.",
|
|
7510
7511
|
"type": "number"
|
|
7511
7512
|
},
|
|
7512
7513
|
"refreshInterval": {
|
|
@@ -7556,7 +7557,7 @@
|
|
|
7556
7557
|
},
|
|
7557
7558
|
"esri.rest-api.ImageServiceLayerJson.ImageServiceLayerJson": {
|
|
7558
7559
|
"additionalProperties": false,
|
|
7559
|
-
"description": "An image service provides access to raster data through a web service. Multiple rasters can be served as one image service through mosaic dataset technology, dynamically processed and mosaiced on the fly. An image service supports accessing both the mosaicked image and its catalog, as well as individual rasters in the catalog. Also, image services can be cached (tiled) or uncached (dynamic). This object specifically details properties within uncached image services
|
|
7560
|
+
"description": "An image service provides access to raster data through a web service. Multiple rasters can be served as one image service through mosaic dataset technology, dynamically processed and mosaiced on the fly. An image service supports accessing both the mosaicked image and its catalog, as well as individual rasters in the catalog. Also, image services can be cached (tiled) or uncached (dynamic). This object specifically details properties within uncached image services.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/imageServiceLayer/} {@link https://developers.arcgis.com/web-scene-specification/objects/imageServiceLayer/}.",
|
|
7560
7561
|
"properties": {
|
|
7561
7562
|
"bandIds": {
|
|
7562
7563
|
"description": "An array of bandIds that are visible, can specify bands to export or rearrange band order(from image service).",
|
|
@@ -7691,7 +7692,7 @@
|
|
|
7691
7692
|
"type": "string"
|
|
7692
7693
|
},
|
|
7693
7694
|
"opacity": {
|
|
7694
|
-
"description": "The degree of transparency applied to the layer on the client side, where
|
|
7695
|
+
"description": "The degree of transparency applied to the layer on the client side, where\n0 is full transparency and 1 is no transparency.",
|
|
7695
7696
|
"type": "number"
|
|
7696
7697
|
},
|
|
7697
7698
|
"pixelType": {
|
|
@@ -7752,7 +7753,7 @@
|
|
|
7752
7753
|
},
|
|
7753
7754
|
"esri.rest-api.ImageServiceLayerJson.RenderingRuleJson": {
|
|
7754
7755
|
"additionalProperties": false,
|
|
7755
|
-
"description": "Specifies the rendering rule for how the requested image should be rendered
|
|
7756
|
+
"description": "Specifies the rendering rule for how the requested image should be rendered.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/renderingRule/} {@link https://developers.arcgis.com/web-scene-specification/objects/renderingRule/}.",
|
|
7756
7757
|
"properties": {
|
|
7757
7758
|
"outputPixelType": {
|
|
7758
7759
|
"description": "Defines the pixel type of the output image.",
|
|
@@ -7790,7 +7791,7 @@
|
|
|
7790
7791
|
},
|
|
7791
7792
|
"esri.rest-api.ImageServiceVectorLayerJson.ImageServiceVectorLayerJson": {
|
|
7792
7793
|
"additionalProperties": false,
|
|
7793
|
-
"description": "The imageServiceVectorLayer displays pixel values as vectors. To do this, the image service layer must be a two-band raster in which one band holds magnitude values and one band holds direction values. The imageServiceVectorLayer also supports time-enabled data
|
|
7794
|
+
"description": "The imageServiceVectorLayer displays pixel values as vectors. To do this, the image service layer must be a two-band raster in which one band holds magnitude values and one band holds direction values. The imageServiceVectorLayer also supports time-enabled data.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/imageServiceVectorLayer/}.",
|
|
7794
7795
|
"properties": {
|
|
7795
7796
|
"blendMode": {
|
|
7796
7797
|
"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.",
|
|
@@ -7882,7 +7883,7 @@
|
|
|
7882
7883
|
"description": "Specifies the mosaic rule when defining how individual images should be mosaiced."
|
|
7883
7884
|
},
|
|
7884
7885
|
"opacity": {
|
|
7885
|
-
"description": "The degree of transparency applied to the layer on the client side, where
|
|
7886
|
+
"description": "The degree of transparency applied to the layer on the client side, where\n0 is full transparency and 1 is no transparency.",
|
|
7886
7887
|
"type": "number"
|
|
7887
7888
|
},
|
|
7888
7889
|
"refreshInterval": {
|
|
@@ -7933,7 +7934,7 @@
|
|
|
7933
7934
|
},
|
|
7934
7935
|
"esri.rest-api.IntegratedMeshLayerJson.IntegratedMeshLayerJson": {
|
|
7935
7936
|
"additionalProperties": false,
|
|
7936
|
-
"description": "An integrated mesh can represent built and natural 3D features, such as building walls, trees, valleys, and cliffs, with realistic textures and includes elevation information
|
|
7937
|
+
"description": "An integrated mesh can represent built and natural 3D features, such as building walls, trees, valleys, and cliffs, with realistic textures and includes elevation information.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/integratedMeshLayer/}.",
|
|
7937
7938
|
"properties": {
|
|
7938
7939
|
"blendMode": {
|
|
7939
7940
|
"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.",
|
|
@@ -8002,7 +8003,7 @@
|
|
|
8002
8003
|
"type": "number"
|
|
8003
8004
|
},
|
|
8004
8005
|
"opacity": {
|
|
8005
|
-
"description": "The degree of transparency applied to the layer on the client side, where
|
|
8006
|
+
"description": "The degree of transparency applied to the layer on the client side, where\n0 is full transparency and 1 is no transparency.",
|
|
8006
8007
|
"type": "number"
|
|
8007
8008
|
},
|
|
8008
8009
|
"refreshInterval": {
|
|
@@ -8047,7 +8048,7 @@
|
|
|
8047
8048
|
},
|
|
8048
8049
|
"esri.rest-api.ItemJson.ItemJson": {
|
|
8049
8050
|
"additionalProperties": false,
|
|
8050
|
-
"description": "An item (a unit of content) in the portal. Each item has a unique identifier and a well known URL that is independent of the user owning the item. An item can have associated binary or textual data that's available via the item data resource. For example, an item of type Map Package returns the actual bits corresponding to the map package via the item data resource. The numViews is incremented when an item is opened
|
|
8051
|
+
"description": "An item (a unit of content) in the portal. Each item has a unique identifier and a well known URL that is independent of the user owning the item. An item can have associated binary or textual data that's available via the item data resource. For example, an item of type Map Package returns the actual bits corresponding to the map package via the item data resource. The numViews is incremented when an item is opened.\n\nSee {@link http://resources.arcgis.com/en/help/arcgis-rest-api/index.html#/Item/02r30000007w000000/}.",
|
|
8051
8052
|
"properties": {
|
|
8052
8053
|
"access": {
|
|
8053
8054
|
"description": "Indicates the level of access to this item: private, shared, org, or public.",
|
|
@@ -8138,7 +8139,7 @@
|
|
|
8138
8139
|
"type": "boolean"
|
|
8139
8140
|
},
|
|
8140
8141
|
"itemControl": {
|
|
8141
|
-
"description": "Indicates user's control to the item
|
|
8142
|
+
"description": "Indicates user's control to the item.\n\nValues: admin (for item owner and org admin) | update (for members of groups with item update capability that the item is shared with).",
|
|
8142
8143
|
"enum": [
|
|
8143
8144
|
"admin",
|
|
8144
8145
|
"update"
|
|
@@ -8272,7 +8273,7 @@
|
|
|
8272
8273
|
},
|
|
8273
8274
|
"esri.rest-api.KMLLayerJson.KMLLayerJson": {
|
|
8274
8275
|
"additionalProperties": false,
|
|
8275
|
-
"description": "Keyhole Markup Language (KML) is an XML-based format for storing geographic data and associated content and is an official Open Geospatial Consortium (OGC) standard. KML is a common format for sharing geographic data with non-GIS users as it can be easily delivered on the Internet
|
|
8276
|
+
"description": "Keyhole Markup Language (KML) is an XML-based format for storing geographic data and associated content and is an official Open Geospatial Consortium (OGC) standard. KML is a common format for sharing geographic data with non-GIS users as it can be easily delivered on the Internet.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/kmlLayer/}.",
|
|
8276
8277
|
"properties": {
|
|
8277
8278
|
"blendMode": {
|
|
8278
8279
|
"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.",
|
|
@@ -8341,7 +8342,7 @@
|
|
|
8341
8342
|
"type": "number"
|
|
8342
8343
|
},
|
|
8343
8344
|
"opacity": {
|
|
8344
|
-
"description": "The degree of transparency applied to the layer on the client side, where
|
|
8345
|
+
"description": "The degree of transparency applied to the layer on the client side, where\n0 is full transparency and 1 is no transparency.",
|
|
8345
8346
|
"type": "number"
|
|
8346
8347
|
},
|
|
8347
8348
|
"refreshInterval": {
|
|
@@ -8659,7 +8660,7 @@
|
|
|
8659
8660
|
},
|
|
8660
8661
|
"esri.rest-api.LayerDefinitionJson.LayerDefinitionJson": {
|
|
8661
8662
|
"additionalProperties": false,
|
|
8662
|
-
"description": "The LayerDefinition object defines the attribute schema and drawing information for a layer drawn using client-side graphics. This could include a feature collection, a CSV file referenced through the web, or a single layer in an ArcGIS map service. Also used for dynamic layers
|
|
8663
|
+
"description": "The LayerDefinition object defines the attribute schema and drawing information for a layer drawn using client-side graphics. This could include a feature collection, a CSV file referenced through the web, or a single layer in an ArcGIS map service. Also used for dynamic layers.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/layerDefinition/} {@link https://developers.arcgis.com/web-scene-specification/objects/layerDefinition/}.",
|
|
8663
8664
|
"properties": {
|
|
8664
8665
|
"allowGeometryUpdates": {
|
|
8665
8666
|
"description": "Boolean value indicating whether the geometry of the features in the layer can be edited.",
|
|
@@ -8777,11 +8778,11 @@
|
|
|
8777
8778
|
"type": "number"
|
|
8778
8779
|
},
|
|
8779
8780
|
"maxScale": {
|
|
8780
|
-
"description": "A number representing the maximum scale at which the layer definition will be applied. The number is the scale's denominator; thus, a value of
|
|
8781
|
+
"description": "A number representing the maximum scale at which the layer definition will be applied. The number is the scale's denominator; thus, a value of\n2400 represents a scale of 1/2,400. A value of 0 indicates that the layer definition will be applied no matter how far you zoom in.",
|
|
8781
8782
|
"type": "number"
|
|
8782
8783
|
},
|
|
8783
8784
|
"minScale": {
|
|
8784
|
-
"description": "A number representing the minimum scale at which the layer definition will be applied. The number is the scale's denominator; thus, a value of
|
|
8785
|
+
"description": "A number representing the minimum scale at which the layer definition will be applied. The number is the scale's denominator; thus, a value of\n2400 represents a scale of 1/2,400.",
|
|
8785
8786
|
"type": "number"
|
|
8786
8787
|
},
|
|
8787
8788
|
"name": {
|
|
@@ -8854,7 +8855,7 @@
|
|
|
8854
8855
|
"type": "boolean"
|
|
8855
8856
|
},
|
|
8856
8857
|
"templates": {
|
|
8857
|
-
"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
|
|
8858
|
+
"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.\n\nTemplates are defined as a property of the layer definition when there are no types defined; otherwise, templates are defined as properties of the types.",
|
|
8858
8859
|
"items": {
|
|
8859
8860
|
"$ref": "#/definitions/esri.rest-api.TemplateJson.TemplateJson"
|
|
8860
8861
|
},
|
|
@@ -8873,7 +8874,7 @@
|
|
|
8873
8874
|
"type": "string"
|
|
8874
8875
|
},
|
|
8875
8876
|
"types": {
|
|
8876
|
-
"description": "An array of Type objects available for the dataset. This is used when the typeIdField is populated
|
|
8877
|
+
"description": "An array of Type objects available for the dataset. This is used when the typeIdField is populated.\n\nTypes 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.",
|
|
8877
8878
|
"items": {
|
|
8878
8879
|
"$ref": "#/definitions/esri.rest-api.TypeJson.TypeJson"
|
|
8879
8880
|
},
|
|
@@ -8959,7 +8960,7 @@
|
|
|
8959
8960
|
"type": "string"
|
|
8960
8961
|
},
|
|
8961
8962
|
"valueExpression": {
|
|
8962
|
-
"description": "The [Arcade expression](https://developers.arcgis.com/javascript/latest/arcade/) whose return value will be used to sort features. (Currently undocumented by ESRI's Webmap Spec)
|
|
8963
|
+
"description": "The [Arcade expression](https://developers.arcgis.com/javascript/latest/arcade/) whose return value will be used to sort features. (Currently undocumented by ESRI's Webmap Spec).\n\n[Read more...](https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-mixins-OrderedLayer.html#orderBy).",
|
|
8963
8964
|
"type": "string"
|
|
8964
8965
|
}
|
|
8965
8966
|
},
|
|
@@ -9008,7 +9009,7 @@
|
|
|
9008
9009
|
},
|
|
9009
9010
|
"esri.rest-api.LayerDefinitionJson.RangeInfoJson": {
|
|
9010
9011
|
"additionalProperties": false,
|
|
9011
|
-
"description": "Range Information
|
|
9012
|
+
"description": "Range Information.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/rangeInfo/}.",
|
|
9012
9013
|
"properties": {
|
|
9013
9014
|
"currentRangeExtent": {
|
|
9014
9015
|
"description": "Contains the min and max values within which the features are visible.",
|
|
@@ -9417,7 +9418,7 @@
|
|
|
9417
9418
|
},
|
|
9418
9419
|
"esri.rest-api.MapServiceLayerJson.MapServiceLayerJson": {
|
|
9419
9420
|
"additionalProperties": false,
|
|
9420
|
-
"description": "ArcGIS web maps are designed to work with web services hosted on ArcGIS Server and ArcGIS Online, in addition to other types of servers. Map services can be cached (tiled) or uncached (dynamic). This object specifically details properties within uncached map services
|
|
9421
|
+
"description": "ArcGIS web maps are designed to work with web services hosted on ArcGIS Server and ArcGIS Online, in addition to other types of servers. Map services can be cached (tiled) or uncached (dynamic). This object specifically details properties within uncached map services.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/mapServiceLayer/} {@link https://developers.arcgis.com/web-scene-specification/objects/mapServiceLayer/}.",
|
|
9421
9422
|
"properties": {
|
|
9422
9423
|
"blendMode": {
|
|
9423
9424
|
"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.",
|
|
@@ -9500,7 +9501,7 @@
|
|
|
9500
9501
|
"type": "number"
|
|
9501
9502
|
},
|
|
9502
9503
|
"opacity": {
|
|
9503
|
-
"description": "The degree of transparency applied to the layer on the client side, where
|
|
9504
|
+
"description": "The degree of transparency applied to the layer on the client side, where\n0 is full transparency and 1 is no transparency.",
|
|
9504
9505
|
"type": "number"
|
|
9505
9506
|
},
|
|
9506
9507
|
"refreshInterval": {
|
|
@@ -9556,7 +9557,7 @@
|
|
|
9556
9557
|
},
|
|
9557
9558
|
"esri.rest-api.MosaicRuleJson.MosaicRuleJson": {
|
|
9558
9559
|
"additionalProperties": false,
|
|
9559
|
-
"description": "Specifies the mosaic rule when defining how individual images should be mosaiced. It specifies selection, mosaic method, sort order, overlapping pixel resolution, etc. Mosaic rules are for mosaicing rasters in the mosaic dataset
|
|
9560
|
+
"description": "Specifies the mosaic rule when defining how individual images should be mosaiced. It specifies selection, mosaic method, sort order, overlapping pixel resolution, etc. Mosaic rules are for mosaicing rasters in the mosaic dataset.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/mosaicRule/} {@link https://developers.arcgis.com/web-scene-specification/objects/mosaicRule/}.",
|
|
9560
9561
|
"properties": {
|
|
9561
9562
|
"ascending": {
|
|
9562
9563
|
"description": "Indicates whether the sort should be ascending.",
|
|
@@ -9608,7 +9609,7 @@
|
|
|
9608
9609
|
"type": "string"
|
|
9609
9610
|
},
|
|
9610
9611
|
"multidimensionalDefinition": {
|
|
9611
|
-
"description": "Definition of multidimensional variables
|
|
9612
|
+
"description": "Definition of multidimensional variables.\n\nSee https://developers.arcgis.com/web-map-specification/objects/multidimensionalDefinition/ and https://developers.arcgis.com/web-scene-specification/objects/multidimensionalDefinition/.",
|
|
9612
9613
|
"items": {
|
|
9613
9614
|
"$ref": "__type"
|
|
9614
9615
|
},
|
|
@@ -9638,7 +9639,7 @@
|
|
|
9638
9639
|
},
|
|
9639
9640
|
"esri.rest-api.PointCloudLayerJson.PointCloudLayerJson": {
|
|
9640
9641
|
"additionalProperties": false,
|
|
9641
|
-
"description": "Point cloud data is post-processed spatially organized lidar data that consists of large collections of 3D points. Elevations for the ground, buildings, forest canopy, highway overpasses, and anything else encountered during the lidar survey make up the point cloud data. Point cloud layers allow for fast visualization of point cloud data in the browser
|
|
9642
|
+
"description": "Point cloud data is post-processed spatially organized lidar data that consists of large collections of 3D points. Elevations for the ground, buildings, forest canopy, highway overpasses, and anything else encountered during the lidar survey make up the point cloud data. Point cloud layers allow for fast visualization of point cloud data in the browser.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/pointCloudLayer/}.",
|
|
9642
9643
|
"properties": {
|
|
9643
9644
|
"blendMode": {
|
|
9644
9645
|
"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.",
|
|
@@ -9711,7 +9712,7 @@
|
|
|
9711
9712
|
"type": "number"
|
|
9712
9713
|
},
|
|
9713
9714
|
"opacity": {
|
|
9714
|
-
"description": "The degree of transparency applied to the layer on the client side, where
|
|
9715
|
+
"description": "The degree of transparency applied to the layer on the client side, where\n0 is full transparency and 1 is no transparency.",
|
|
9715
9716
|
"type": "number"
|
|
9716
9717
|
},
|
|
9717
9718
|
"popupInfo": {
|
|
@@ -9782,7 +9783,7 @@
|
|
|
9782
9783
|
},
|
|
9783
9784
|
"esri.rest-api.PopupInfoJson.FieldInfoJson": {
|
|
9784
9785
|
"additionalProperties": false,
|
|
9785
|
-
"description": "Defines how a field in the dataset participates (or does not participate) in a pop-up window
|
|
9786
|
+
"description": "Defines how a field in the dataset participates (or does not participate) in a pop-up window.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/fieldInfo/} {@link https://developers.arcgis.com/web-scene-specification/objects/fieldInfo/}.",
|
|
9786
9787
|
"properties": {
|
|
9787
9788
|
"fieldName": {
|
|
9788
9789
|
"description": "The field name as defined by the service.",
|
|
@@ -9825,7 +9826,7 @@
|
|
|
9825
9826
|
},
|
|
9826
9827
|
"esri.rest-api.PopupInfoJson.FormatJson": {
|
|
9827
9828
|
"additionalProperties": false,
|
|
9828
|
-
"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
|
|
9829
|
+
"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.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/format/} {@link https://developers.arcgis.com/web-scene-specification/objects/format/}.",
|
|
9829
9830
|
"properties": {
|
|
9830
9831
|
"dateFormat": {
|
|
9831
9832
|
"$ref": "#/definitions/esri.rest-api.PopupInfoJson.DateFormatJsonType",
|
|
@@ -9875,7 +9876,7 @@
|
|
|
9875
9876
|
},
|
|
9876
9877
|
"esri.rest-api.PopupInfoJson.OrderByFieldsJson": {
|
|
9877
9878
|
"additionalProperties": false,
|
|
9878
|
-
"description": "Object indicating the field display order for the related records and whether they should be sorted in ascending or descending order
|
|
9879
|
+
"description": "Object indicating the field display order for the related records and whether they should be sorted in ascending or descending order.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/orderByFields/} {@link https://developers.arcgis.com/web-scene-specification/objects/orderByFields/}.",
|
|
9879
9880
|
"properties": {
|
|
9880
9881
|
"field": {
|
|
9881
9882
|
"description": "The attribute value of the field selected that will drive the sorting of related records.",
|
|
@@ -9890,7 +9891,7 @@
|
|
|
9890
9891
|
},
|
|
9891
9892
|
"esri.rest-api.PopupInfoJson.PopupElementJson": {
|
|
9892
9893
|
"additionalProperties": false,
|
|
9893
|
-
"description": "Popup elements allow users to author popups, using multiple elements such as tabular views, string description, media (charts and images), and attachments of the attributes and control the order in which they appear. Specifically, popupElements do the following: 1) provide the ability to explicitly add a field/ value table in addition to a description, 2) allow adding multiple description elements, and 3) allow a user to author and consume elements of a popup in the order of their choosing
|
|
9894
|
+
"description": "Popup elements allow users to author popups, using multiple elements such as tabular views, string description, media (charts and images), and attachments of the attributes and control the order in which they appear. Specifically, popupElements do the following: 1) provide the ability to explicitly add a field/ value table in addition to a description, 2) allow adding multiple description elements, and 3) allow a user to author and consume elements of a popup in the order of their choosing.\n\nEach popupElement has a type property. This string value indicates the type of popupElement used.\n\nSee https://developers.arcgis.com/web-map-specification/objects/popupElement/ and https://developers.arcgis.com/web-scene-specification/objects/popupElement/.",
|
|
9894
9895
|
"properties": {
|
|
9895
9896
|
"attributes": {
|
|
9896
9897
|
"description": "A dictionary of key value pairs representing attributes to be used instead of fields and their values. This property is only used when the element is of type expression and should be returned as part of the arcade expression itself. This property allows passing arcade derived attribute values into fields or media elements."
|
|
@@ -9961,7 +9962,7 @@
|
|
|
9961
9962
|
},
|
|
9962
9963
|
"esri.rest-api.PopupInfoJson.PopupExpressionInfoJson": {
|
|
9963
9964
|
"additionalProperties": false,
|
|
9964
|
-
"description": "Arcade expression added to the pop-up
|
|
9965
|
+
"description": "Arcade expression added to the pop-up.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/popupExpressionInfo/}.",
|
|
9965
9966
|
"properties": {
|
|
9966
9967
|
"expression": {
|
|
9967
9968
|
"description": "The Arcade expression.",
|
|
@@ -9988,7 +9989,7 @@
|
|
|
9988
9989
|
},
|
|
9989
9990
|
"esri.rest-api.PopupInfoJson.PopupInfoJson": {
|
|
9990
9991
|
"additionalProperties": false,
|
|
9991
|
-
"description": "Defines the look and feel of pop-up windows when users click or query a feature
|
|
9992
|
+
"description": "Defines the look and feel of pop-up windows when users click or query a feature.\n\nSee https://developers.arcgis.com/web-map-specification/objects/popupInfo/ and https://developers.arcgis.com/web-scene-specification/objects/popupInfo/.",
|
|
9992
9993
|
"properties": {
|
|
9993
9994
|
"description": {
|
|
9994
9995
|
"description": "A string that appears in the body of the pop-up window as a description. This can contain a field name enclosed in `{}`, such as `{DETAILS}`.",
|
|
@@ -10039,7 +10040,7 @@
|
|
|
10039
10040
|
},
|
|
10040
10041
|
"esri.rest-api.PopupInfoJson.RelatedRecordsInfoJson": {
|
|
10041
10042
|
"additionalProperties": false,
|
|
10042
|
-
"description": "The sort in the popupInfo for the parent feature. This impacts the sorting order for the returned child records
|
|
10043
|
+
"description": "The sort in the popupInfo for the parent feature. This impacts the sorting order for the returned child records.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/relatedRecordsInfo/} {@link https://developers.arcgis.com/web-scene-specification/objects/relatedRecordsInfo/}.",
|
|
10043
10044
|
"properties": {
|
|
10044
10045
|
"orderByFields": {
|
|
10045
10046
|
"description": "Array of orderByFields objects indicating the field display order for the related records and whether they should be sorted in ascending 'asc' or descending 'desc' order.",
|
|
@@ -10060,7 +10061,7 @@
|
|
|
10060
10061
|
},
|
|
10061
10062
|
"esri.rest-api.PopupInfoJson.ValueJson": {
|
|
10062
10063
|
"additionalProperties": false,
|
|
10063
|
-
"description": "The value object contains information for pop-up windows about how images should be retrieved or charts constructed
|
|
10064
|
+
"description": "The value object contains information for pop-up windows about how images should be retrieved or charts constructed.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/value/} {@link https://developers.arcgis.com/web-scene-specification/objects/value/}.",
|
|
10064
10065
|
"properties": {
|
|
10065
10066
|
"fields": {
|
|
10066
10067
|
"description": "Used with charts. An array of field names to display in the chart.",
|
|
@@ -10090,7 +10091,7 @@
|
|
|
10090
10091
|
},
|
|
10091
10092
|
"esri.rest-api.RendererJson.AuthoringInfoJson": {
|
|
10092
10093
|
"additionalProperties": false,
|
|
10093
|
-
"description": "The authoringInfo is 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. In order to support the slider with color/size/transparency information, the selection of the various themes, classification, and additional properties are saved within this object
|
|
10094
|
+
"description": "The authoringInfo is 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. In order to support the slider with color/size/transparency information, the selection of the various themes, classification, and additional properties are saved within this object.\n\nNote: The authoringInfo object is not required with a renderer. It is only used if rendering was generated using Map Viewer rendering tools.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/authoringInfo/} {@link https://developers.arcgis.com/web-scene-specification/objects/authoringInfo/}.",
|
|
10094
10095
|
"properties": {
|
|
10095
10096
|
"classificationMethod": {
|
|
10096
10097
|
"$ref": "#/definitions/esri.rest-api.RendererJson.ClassificationMethodJsonType",
|
|
@@ -10134,7 +10135,7 @@
|
|
|
10134
10135
|
},
|
|
10135
10136
|
"esri.rest-api.RendererJson.ClassBreakInfoJson": {
|
|
10136
10137
|
"additionalProperties": false,
|
|
10137
|
-
"description": "The classBreaksInfo object provides information about the class breaks associated with the renderer
|
|
10138
|
+
"description": "The classBreaksInfo object provides information about the class breaks associated with the renderer.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/classBreakInfo/} {@link https://developers.arcgis.com/web-scene-specification/objects/classBreakInfo/}.",
|
|
10138
10139
|
"properties": {
|
|
10139
10140
|
"classMaxValue": {
|
|
10140
10141
|
"description": "A numeric value used to specify the maximum value for a break.",
|
|
@@ -10165,7 +10166,7 @@
|
|
|
10165
10166
|
},
|
|
10166
10167
|
"esri.rest-api.RendererJson.ClassBreaksRendererJson": {
|
|
10167
10168
|
"additionalProperties": false,
|
|
10168
|
-
"description": "A class breaks renderer symbolizes based on the value of some numeric attribute. The classBreakInfo define the values at which the symbology changes
|
|
10169
|
+
"description": "A class breaks renderer symbolizes based on the value of some numeric attribute. The classBreakInfo define the values at which the symbology changes.\n\nIf the Normalization Type property is defined than the class breaks contain a normalized min/max value instead of the actual value. The data value, obtained from the field property, is normalized using one of the following functions before it is compared with the class breaks.\n\n1. Field - Divide the data value using the attribute value of the field specified by the normalizationField property.\n2. Log - Compute the base 10 logarithm of the data value. This can be a useful approach for some data distributions because it reduced the influence of very large data values.\n3. Percent-of-total - Divide the data value by the sum of all data values then multiply by 100. Use the normalizationTotal property to determine the total value.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/classBreaks_renderer/} {@link https://developers.arcgis.com/web-scene-specification/objects/classBreaksRenderer/}.",
|
|
10169
10170
|
"properties": {
|
|
10170
10171
|
"authoringInfo": {
|
|
10171
10172
|
"$ref": "#/definitions/esri.rest-api.RendererJson.AuthoringInfoJson",
|
|
@@ -10269,7 +10270,7 @@
|
|
|
10269
10270
|
},
|
|
10270
10271
|
"esri.rest-api.RendererJson.ColorClassBreakInfoJson": {
|
|
10271
10272
|
"additionalProperties": false,
|
|
10272
|
-
"description": "The classBreaksInfo object provides information about the class breaks associated with the renderer
|
|
10273
|
+
"description": "The classBreaksInfo object provides information about the class breaks associated with the renderer.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/colorClassBreakInfo/}.",
|
|
10273
10274
|
"properties": {
|
|
10274
10275
|
"classMaxValue": {
|
|
10275
10276
|
"description": "A numeric value used to specify the maximum value for a break.",
|
|
@@ -10296,7 +10297,7 @@
|
|
|
10296
10297
|
},
|
|
10297
10298
|
"esri.rest-api.RendererJson.ColorInfoJson": {
|
|
10298
10299
|
"additionalProperties": false,
|
|
10299
|
-
"description": "The colorInfo visual variable defines how a continuous color ramp is applied to features based on the values of a numeric field attribute. The minimum and maximum values of the data should be indicated along with their respective color values. You must specify either colors or stops to construct the color ramp
|
|
10300
|
+
"description": "The colorInfo visual variable defines how a continuous color ramp is applied to features based on the values of a numeric field attribute. The minimum and maximum values of the data should be indicated along with their respective color values. You must specify either colors or stops to construct the color ramp.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/colorInfo_visualVariable/} {@link https://developers.arcgis.com/web-scene-specification/objects/colorInfo_visualVariable/}.",
|
|
10300
10301
|
"properties": {
|
|
10301
10302
|
"colors": {
|
|
10302
10303
|
"description": "An array of colors that define the color ramp. Either colors or stops must be specified to construct the color ramp.",
|
|
@@ -10448,7 +10449,7 @@
|
|
|
10448
10449
|
},
|
|
10449
10450
|
"esri.rest-api.RendererJson.ColorUniqueValueInfosJson": {
|
|
10450
10451
|
"additionalProperties": false,
|
|
10451
|
-
"description": "The classBreaksInfo object provides information about the class breaks associated with the renderer
|
|
10452
|
+
"description": "The classBreaksInfo object provides information about the class breaks associated with the renderer.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/colorUniqueValueInfo/}.",
|
|
10452
10453
|
"properties": {
|
|
10453
10454
|
"color": {
|
|
10454
10455
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.ColorJson",
|
|
@@ -10474,7 +10475,7 @@
|
|
|
10474
10475
|
},
|
|
10475
10476
|
"esri.rest-api.RendererJson.HeatmapRendererJson": {
|
|
10476
10477
|
"additionalProperties": false,
|
|
10477
|
-
"description": "The HeatmapRenderer renders point data into a raster visualization that emphasizes areas of higher density or weighted values
|
|
10478
|
+
"description": "The HeatmapRenderer renders point data into a raster visualization that emphasizes areas of higher density or weighted values.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/heatmapRenderer/}.",
|
|
10478
10479
|
"properties": {
|
|
10479
10480
|
"authoringInfo": {
|
|
10480
10481
|
"$ref": "#/definitions/esri.rest-api.RendererJson.AuthoringInfoJson",
|
|
@@ -10542,7 +10543,7 @@
|
|
|
10542
10543
|
},
|
|
10543
10544
|
"esri.rest-api.RendererJson.PointCloudClassBreaksRendererJson": {
|
|
10544
10545
|
"additionalProperties": false,
|
|
10545
|
-
"description": "PointCloudClassBreaksRenderer defines the color of each point in a PointCloudLayer based on the value of a numeric attribute. Colors are assigned based on classes or ranges of data. Each point is assigned a symbol based on the class break in which the value of the attribute falls
|
|
10546
|
+
"description": "PointCloudClassBreaksRenderer defines the color of each point in a PointCloudLayer based on the value of a numeric attribute. Colors are assigned based on classes or ranges of data. Each point is assigned a symbol based on the class break in which the value of the attribute falls.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/pointCloudClassBreaksRenderer/}.",
|
|
10546
10547
|
"properties": {
|
|
10547
10548
|
"authoringInfo": {
|
|
10548
10549
|
"$ref": "#/definitions/esri.rest-api.RendererJson.AuthoringInfoJson",
|
|
@@ -10557,7 +10558,7 @@
|
|
|
10557
10558
|
},
|
|
10558
10559
|
"colorModulation": {
|
|
10559
10560
|
"$ref": "__type",
|
|
10560
|
-
"description": "Indicates whether modulation should be used to render the point
|
|
10561
|
+
"description": "Indicates whether modulation should be used to render the point.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/colorModulationInfo/}."
|
|
10561
10562
|
},
|
|
10562
10563
|
"field": {
|
|
10563
10564
|
"description": "The name of the field that is used for the renderer.",
|
|
@@ -10617,7 +10618,7 @@
|
|
|
10617
10618
|
},
|
|
10618
10619
|
"esri.rest-api.RendererJson.PointCloudFixedSizeAlgorithmJson": {
|
|
10619
10620
|
"additionalProperties": false,
|
|
10620
|
-
"description": "Render points with fixed real world or screen space size
|
|
10621
|
+
"description": "Render points with fixed real world or screen space size.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/pointCloudFixedSizeAlgorithm/}.",
|
|
10621
10622
|
"properties": {
|
|
10622
10623
|
"size": {
|
|
10623
10624
|
"description": "Symbol size in real world units or display unit.",
|
|
@@ -10640,7 +10641,7 @@
|
|
|
10640
10641
|
},
|
|
10641
10642
|
"esri.rest-api.RendererJson.PointCloudRGBRendererJson": {
|
|
10642
10643
|
"additionalProperties": false,
|
|
10643
|
-
"description": "PointCloudRGBRenderer defines the color of each point in a PointCloudLayer based on the value of a color attribute
|
|
10644
|
+
"description": "PointCloudRGBRenderer defines the color of each point in a PointCloudLayer based on the value of a color attribute.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/pointCloudRGBRenderer/}.",
|
|
10644
10645
|
"properties": {
|
|
10645
10646
|
"authoringInfo": {
|
|
10646
10647
|
"$ref": "#/definitions/esri.rest-api.RendererJson.AuthoringInfoJson",
|
|
@@ -10648,7 +10649,7 @@
|
|
|
10648
10649
|
},
|
|
10649
10650
|
"colorModulation": {
|
|
10650
10651
|
"$ref": "__type",
|
|
10651
|
-
"description": "Indicates whether modulation should be used to render the point
|
|
10652
|
+
"description": "Indicates whether modulation should be used to render the point.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/colorModulationInfo/}."
|
|
10652
10653
|
},
|
|
10653
10654
|
"field": {
|
|
10654
10655
|
"description": "The name of the field that is used for the renderer.",
|
|
@@ -10708,7 +10709,7 @@
|
|
|
10708
10709
|
},
|
|
10709
10710
|
"esri.rest-api.RendererJson.PointCloudSplatAlgorithmJson": {
|
|
10710
10711
|
"additionalProperties": false,
|
|
10711
|
-
"description": "Render points using sizes depending on point density
|
|
10712
|
+
"description": "Render points using sizes depending on point density.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/pointCloudSplatAlgorithm/}.",
|
|
10712
10713
|
"properties": {
|
|
10713
10714
|
"minSize": {
|
|
10714
10715
|
"description": "Minimum display space point size in points.",
|
|
@@ -10731,7 +10732,7 @@
|
|
|
10731
10732
|
},
|
|
10732
10733
|
"esri.rest-api.RendererJson.PointCloudStretchRendererJson": {
|
|
10733
10734
|
"additionalProperties": false,
|
|
10734
|
-
"description": "PointCloudStretchRenderer defines the color of each point in a PointCloudLayer based on the value of a numeric attribute. They allow you to easily map continuous color ramps to minimum and maximum data values of one of the layer's numeric attribute fields
|
|
10735
|
+
"description": "PointCloudStretchRenderer defines the color of each point in a PointCloudLayer based on the value of a numeric attribute. They allow you to easily map continuous color ramps to minimum and maximum data values of one of the layer's numeric attribute fields.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/pointCloudStretchRenderer/}.",
|
|
10735
10736
|
"properties": {
|
|
10736
10737
|
"authoringInfo": {
|
|
10737
10738
|
"$ref": "#/definitions/esri.rest-api.RendererJson.AuthoringInfoJson",
|
|
@@ -10739,7 +10740,7 @@
|
|
|
10739
10740
|
},
|
|
10740
10741
|
"colorModulation": {
|
|
10741
10742
|
"$ref": "__type",
|
|
10742
|
-
"description": "Indicates whether modulation should be used to render the point
|
|
10743
|
+
"description": "Indicates whether modulation should be used to render the point.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/colorModulationInfo/}."
|
|
10743
10744
|
},
|
|
10744
10745
|
"field": {
|
|
10745
10746
|
"description": "The name of the field that is used for the renderer.",
|
|
@@ -10799,7 +10800,7 @@
|
|
|
10799
10800
|
},
|
|
10800
10801
|
"esri.rest-api.RendererJson.PointCloudUniqueValueRendererJson": {
|
|
10801
10802
|
"additionalProperties": false,
|
|
10802
|
-
"description": "PointCloudUniqueValueRenderer allows you to colorize points in a PointCloudLayer based on an attribute. This is done by using unique colors to represent points with equal attribute values
|
|
10803
|
+
"description": "PointCloudUniqueValueRenderer allows you to colorize points in a PointCloudLayer based on an attribute. This is done by using unique colors to represent points with equal attribute values.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/pointCloudUniqueValueRenderer/}.",
|
|
10803
10804
|
"properties": {
|
|
10804
10805
|
"authoringInfo": {
|
|
10805
10806
|
"$ref": "#/definitions/esri.rest-api.RendererJson.AuthoringInfoJson",
|
|
@@ -10807,7 +10808,7 @@
|
|
|
10807
10808
|
},
|
|
10808
10809
|
"colorModulation": {
|
|
10809
10810
|
"$ref": "__type",
|
|
10810
|
-
"description": "Indicates whether modulation should be used to render the point
|
|
10811
|
+
"description": "Indicates whether modulation should be used to render the point.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/colorModulationInfo/}."
|
|
10811
10812
|
},
|
|
10812
10813
|
"colorUniqueValueInfos": {
|
|
10813
10814
|
"description": "Unique value infos.",
|
|
@@ -10874,7 +10875,7 @@
|
|
|
10874
10875
|
},
|
|
10875
10876
|
"esri.rest-api.RendererJson.PredominanceRendererJson": {
|
|
10876
10877
|
"additionalProperties": false,
|
|
10877
|
-
"description": "This renderer is a type of UniqueValue renderer which is based off the valueExpression property rather than field. Optionally, size and/or transparency visual variables may be included with valueExpression. Note that this renderer is supported for ArcGIS Online hosted feature services and feature collections
|
|
10878
|
+
"description": "This renderer is a type of UniqueValue renderer which is based off the valueExpression property rather than field. Optionally, size and/or transparency visual variables may be included with valueExpression. Note that this renderer is supported for ArcGIS Online hosted feature services and feature collections.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/predominance_renderer/}.",
|
|
10878
10879
|
"properties": {
|
|
10879
10880
|
"authoringInfo": {
|
|
10880
10881
|
"$ref": "#/definitions/esri.rest-api.RendererJson.AuthoringInfoJson",
|
|
@@ -10966,11 +10967,11 @@
|
|
|
10966
10967
|
"$ref": "#/definitions/esri.rest-api.RendererJson.VectorFieldRendererJson"
|
|
10967
10968
|
}
|
|
10968
10969
|
],
|
|
10969
|
-
"description": "A renderer
|
|
10970
|
+
"description": "A renderer.\n\nPart of the ArcGIS REST API (see http://resources.arcgis.com/en/help/rest/apiref/renderer.html)."
|
|
10970
10971
|
},
|
|
10971
10972
|
"esri.rest-api.RendererJson.RotationInfoJson": {
|
|
10972
10973
|
"additionalProperties": false,
|
|
10973
|
-
"description": "The rotation visual variable defines how features rendered with marker symbols are rotated. The rotation value is determined by mapping the values to data in a field, or by other arithmetic means with a function
|
|
10974
|
+
"description": "The rotation visual variable defines how features rendered with marker symbols are rotated. The rotation value is determined by mapping the values to data in a field, or by other arithmetic means with a function.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/rotationInfo_visualVariable/} {@link https://developers.arcgis.com/web-map-specification/objects/rotationInfo_visualVariable/}.",
|
|
10974
10975
|
"properties": {
|
|
10975
10976
|
"field": {
|
|
10976
10977
|
"description": "A string value indicating the name of the feature attribute field that contains the data value to render.",
|
|
@@ -10986,7 +10987,7 @@
|
|
|
10986
10987
|
},
|
|
10987
10988
|
"rotationType": {
|
|
10988
10989
|
"$ref": "#/definitions/esri.rest-api.RendererJson.RotationJsonType",
|
|
10989
|
-
"description": "Defines the origin and direction of rotation depending on how the angle of rotation was measured. Possible values are geographic which rotates the symbol from the north in a clockwise direction and arithmetic which rotates the symbol from the east in a counter-clockwise direction
|
|
10990
|
+
"description": "Defines the origin and direction of rotation depending on how the angle of rotation was measured. Possible values are geographic which rotates the symbol from the north in a clockwise direction and arithmetic which rotates the symbol from the east in a counter-clockwise direction.\n\nMust be one of the following values: geographic, arithmetic."
|
|
10990
10991
|
},
|
|
10991
10992
|
"type": {
|
|
10992
10993
|
"const": "rotationInfo",
|
|
@@ -11014,7 +11015,7 @@
|
|
|
11014
11015
|
},
|
|
11015
11016
|
"esri.rest-api.RendererJson.SimpleRendererJson": {
|
|
11016
11017
|
"additionalProperties": false,
|
|
11017
|
-
"description": "A simple renderer is a renderer that uses one symbol only
|
|
11018
|
+
"description": "A simple renderer is a renderer that uses one symbol only.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/simple_renderer/} {@link https://developers.arcgis.com/web-scene-specification/objects/simpleRenderer/}.",
|
|
11018
11019
|
"properties": {
|
|
11019
11020
|
"authoringInfo": {
|
|
11020
11021
|
"$ref": "#/definitions/esri.rest-api.RendererJson.AuthoringInfoJson",
|
|
@@ -11061,7 +11062,7 @@
|
|
|
11061
11062
|
},
|
|
11062
11063
|
"esri.rest-api.RendererJson.SizeInfoJson": {
|
|
11063
11064
|
"additionalProperties": false,
|
|
11064
|
-
"description": "The sizeInfo visual variable defines how a continuous color ramp is applied to features based on the values of a numeric field attribute. The minimum and maximum values of the data should be indicated along with their respective color values. You must specify either colors or stops to construct the color ramp
|
|
11065
|
+
"description": "The sizeInfo visual variable defines how a continuous color ramp is applied to features based on the values of a numeric field attribute. The minimum and maximum values of the data should be indicated along with their respective color values. You must specify either colors or stops to construct the color ramp.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/sizeInfo_visualVariable/} {@link https://developers.arcgis.com/web-scene-specification/objects/sizeInfo_visualVariable/}.",
|
|
11065
11066
|
"properties": {
|
|
11066
11067
|
"axis": {
|
|
11067
11068
|
"description": "Defines the axis the size visual variable should be applied to when rendering features with an ObjectSymbol3DLayer.",
|
|
@@ -11161,7 +11162,7 @@
|
|
|
11161
11162
|
},
|
|
11162
11163
|
"esri.rest-api.RendererJson.SizeJson": {
|
|
11163
11164
|
"additionalProperties": false,
|
|
11164
|
-
"description": "Specifies the largest marker size to use at any given map scale. This is required if valueUnit is set to unknown
|
|
11165
|
+
"description": "Specifies the largest marker size to use at any given map scale. This is required if valueUnit is set to unknown.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/maxSize/} {@link https://developers.arcgis.com/web-map-specification/objects/minSize/} {@link https://developers.arcgis.com/web-scene-specification/objects/maxSize/} {@link https://developers.arcgis.com/web-scene-specification/objects/minSize/}.",
|
|
11165
11166
|
"properties": {
|
|
11166
11167
|
"expression": {
|
|
11167
11168
|
"description": "The value which allows a size to be defined based on the map scale. Currently, the only supported expression is, view.scale.",
|
|
@@ -11206,7 +11207,7 @@
|
|
|
11206
11207
|
},
|
|
11207
11208
|
"esri.rest-api.RendererJson.TemporalRendererJson": {
|
|
11208
11209
|
"additionalProperties": false,
|
|
11209
|
-
"description": "A temporal renderer is used to perform time-based rendering of features in a feature layer
|
|
11210
|
+
"description": "A temporal renderer is used to perform time-based rendering of features in a feature layer.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/temporalRenderer/}.",
|
|
11210
11211
|
"properties": {
|
|
11211
11212
|
"authoringInfo": {
|
|
11212
11213
|
"$ref": "#/definitions/esri.rest-api.RendererJson.AuthoringInfoJson",
|
|
@@ -11252,7 +11253,7 @@
|
|
|
11252
11253
|
},
|
|
11253
11254
|
"esri.rest-api.RendererJson.TransparencyInfoJson": {
|
|
11254
11255
|
"additionalProperties": false,
|
|
11255
|
-
"description": "TransparencyInfo is supported by opacityInfo in the JavaScript API. Except type and axis, all properties follow the syntax of the JavaScript API's opacityInfo property. It applies transparency to each feature based on the attribute values in a field. The exception is that the webmap JSON uses transparency (range 0 - 100, with 100 as completely transparent) instead of opacity (range 0 - 1, with 0 as completely transparent)
|
|
11256
|
+
"description": "TransparencyInfo is supported by opacityInfo in the JavaScript API. Except type and axis, all properties follow the syntax of the JavaScript API's opacityInfo property. It applies transparency to each feature based on the attribute values in a field. The exception is that the webmap JSON uses transparency (range 0 - 100, with 100 as completely transparent) instead of opacity (range 0 - 1, with 0 as completely transparent).\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/transparencyInfo_visualVariable/} {@link https://developers.arcgis.com/web-scene-specification/objects/transparencyInfo_visualVariable/}.",
|
|
11256
11257
|
"properties": {
|
|
11257
11258
|
"field": {
|
|
11258
11259
|
"description": "A string value indicating the name of the feature attribute field that contains the data value to render.",
|
|
@@ -11311,7 +11312,7 @@
|
|
|
11311
11312
|
},
|
|
11312
11313
|
"esri.rest-api.RendererJson.UniqueValueClassJson": {
|
|
11313
11314
|
"additionalProperties": false,
|
|
11314
|
-
"description": "The uniqueValueClass object contains the symbology for grouped unique values in the renderer
|
|
11315
|
+
"description": "The uniqueValueClass object contains the symbology for grouped unique values in the renderer.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/uniqueValueClass/} {@link https://developers.arcgis.com/web-scene-specification/objects/uniqueValueClass/}.",
|
|
11315
11316
|
"properties": {
|
|
11316
11317
|
"description": {
|
|
11317
11318
|
"description": "String value used to describe the drawn symbol.",
|
|
@@ -11344,7 +11345,7 @@
|
|
|
11344
11345
|
},
|
|
11345
11346
|
"esri.rest-api.RendererJson.UniqueValueFromStyleRendererJson": {
|
|
11346
11347
|
"additionalProperties": false,
|
|
11347
|
-
"description": "This is a special version of UniqueValue Renderer, which loads uniqueValue infos from a portal style
|
|
11348
|
+
"description": "This is a special version of UniqueValue Renderer, which loads uniqueValue infos from a portal style.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/uniqueValueFromStyleRenderer/}.",
|
|
11348
11349
|
"properties": {
|
|
11349
11350
|
"authoringInfo": {
|
|
11350
11351
|
"$ref": "#/definitions/esri.rest-api.RendererJson.AuthoringInfoJson",
|
|
@@ -11399,7 +11400,7 @@
|
|
|
11399
11400
|
},
|
|
11400
11401
|
"esri.rest-api.RendererJson.UniqueValueGroupJson": {
|
|
11401
11402
|
"additionalProperties": false,
|
|
11402
|
-
"description": "Represents a group of unique value classes (i.e. symbols). This is used to group symbols under a common heading and/or when representing multiple unique values with a single symbol
|
|
11403
|
+
"description": "Represents a group of unique value classes (i.e. symbols). This is used to group symbols under a common heading and/or when representing multiple unique values with a single symbol.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/uniqueValueGroup/} {@link https://developers.arcgis.com/web-scene-specification/objects/uniqueValueGroup/}.",
|
|
11403
11404
|
"properties": {
|
|
11404
11405
|
"classes": {
|
|
11405
11406
|
"description": "Specifies the classes (i.e. symbols) to group under a common heading. Classes may be included here without a heading when representing multiple values with a single symbol.",
|
|
@@ -11417,7 +11418,7 @@
|
|
|
11417
11418
|
},
|
|
11418
11419
|
"esri.rest-api.RendererJson.UniqueValueInfoJson": {
|
|
11419
11420
|
"additionalProperties": false,
|
|
11420
|
-
"description": "The following is a list of properties found on the uniqueValueInfo object, which is one of the properties on the renderer object. The uniqueValueInfo object contains the symbology for each uniquely drawn value in the renderer
|
|
11421
|
+
"description": "The following is a list of properties found on the uniqueValueInfo object, which is one of the properties on the renderer object. The uniqueValueInfo object contains the symbology for each uniquely drawn value in the renderer.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/uniqueValueInfo/} {@link https://developers.arcgis.com/web-scene-specification/objects/uniqueValueInfo/}.",
|
|
11421
11422
|
"properties": {
|
|
11422
11423
|
"description": {
|
|
11423
11424
|
"description": "String value used to describe the drawn symbol.",
|
|
@@ -11444,7 +11445,7 @@
|
|
|
11444
11445
|
},
|
|
11445
11446
|
"esri.rest-api.RendererJson.UniqueValueRendererJson": {
|
|
11446
11447
|
"additionalProperties": false,
|
|
11447
|
-
"description": "A unique value renderer symbolizes groups of features that have matching field values
|
|
11448
|
+
"description": "A unique value renderer symbolizes groups of features that have matching field values.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/uniqueValue_renderer/} {@link https://developers.arcgis.com/web-scene-specification/objects/uniqueValueRenderer/}.",
|
|
11448
11449
|
"properties": {
|
|
11449
11450
|
"authoringInfo": {
|
|
11450
11451
|
"$ref": "#/definitions/esri.rest-api.RendererJson.AuthoringInfoJson",
|
|
@@ -11613,11 +11614,11 @@
|
|
|
11613
11614
|
"$ref": "#/definitions/esri.rest-api.RendererJson.RotationInfoJson"
|
|
11614
11615
|
}
|
|
11615
11616
|
],
|
|
11616
|
-
"description": "A visualVariable is an object containing the type of drawing property, the axis the variable is applied to, and additional properties for the variable. There are three types of visual variables, 'colorInfo', 'sizeInfo', and 'transparencyInfo'
|
|
11617
|
+
"description": "A visualVariable is an object containing the type of drawing property, the axis the variable is applied to, and additional properties for the variable. There are three types of visual variables, 'colorInfo', 'sizeInfo', and 'transparencyInfo'.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/visualVariable/} {@link https://developers.arcgis.com/web-scene-specification/objects/visualVariable/}."
|
|
11617
11618
|
},
|
|
11618
11619
|
"esri.rest-api.SceneLayerJson.SceneLayerJson": {
|
|
11619
11620
|
"additionalProperties": false,
|
|
11620
|
-
"description": "The SceneLayer is a layer type designed for on-demand streaming and displaying large amounts of data in a SceneView. SceneLayers support two geometry types: Point and 3D Objects (e.g. Buildings)
|
|
11621
|
+
"description": "The SceneLayer is a layer type designed for on-demand streaming and displaying large amounts of data in a SceneView. SceneLayers support two geometry types: Point and 3D Objects (e.g. Buildings).\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/sceneLayer/}.",
|
|
11621
11622
|
"properties": {
|
|
11622
11623
|
"blendMode": {
|
|
11623
11624
|
"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.",
|
|
@@ -11694,7 +11695,7 @@
|
|
|
11694
11695
|
"type": "number"
|
|
11695
11696
|
},
|
|
11696
11697
|
"opacity": {
|
|
11697
|
-
"description": "The degree of transparency applied to the layer on the client side, where
|
|
11698
|
+
"description": "The degree of transparency applied to the layer on the client side, where\n0 is full transparency and 1 is no transparency.",
|
|
11698
11699
|
"type": "number"
|
|
11699
11700
|
},
|
|
11700
11701
|
"popupInfo": {
|
|
@@ -11751,7 +11752,7 @@
|
|
|
11751
11752
|
},
|
|
11752
11753
|
"esri.rest-api.SpatialReferenceJson.SpatialReferenceJson": {
|
|
11753
11754
|
"additionalProperties": false,
|
|
11754
|
-
"description": "The spatialReference object is located at the top level of the web map JSON hierarchy. In addition to this, it is also available within the operationalLayer and basemap objects
|
|
11755
|
+
"description": "The spatialReference object is located at the top level of the web map JSON hierarchy. In addition to this, it is also available within the operationalLayer and basemap objects.\n\nMany predefined spatial references have already been defined and are available for use. A spatial reference can be defined using a well-known ID (WKID) or well-known text (WKT). The default tolerance and resolution values for the associated coordinate system are used.\n\nAll operational layers in the map are drawn or requested in the spatial reference of the basemap layers.\n\nThe basemap defines the map spatial reference and tiling scheme.\n\nEach basemapLayer must be in the same spatial reference and tiling scheme.\n\nFor additional information on working with spatial references, and their associated WKIDs, please refer to the ArcGIS REST API documentation which discusses this.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/spatialReference/} {@link https://developers.arcgis.com/web-scene-specification/objects/spatialReference/}.",
|
|
11755
11756
|
"properties": {
|
|
11756
11757
|
"latestVcsWkid": {
|
|
11757
11758
|
"description": "(Optional) The current wkid value of the vertical coordinate system.",
|
|
@@ -11883,7 +11884,7 @@
|
|
|
11883
11884
|
"type": "number"
|
|
11884
11885
|
},
|
|
11885
11886
|
"mode": {
|
|
11886
|
-
"description": "Used with ArcGIS feature services and individual layers in ArcGIS map services, this property determines how the features are retrieved from the server. This property is represented as 0, 1, or 2
|
|
11887
|
+
"description": "Used with ArcGIS feature services and individual layers in ArcGIS map services, this property determines how the features are retrieved from the server. This property is represented as 0, 1, or 2.\n\n- 0: Snapshot mode. Immediately retrieves all features when the map is loaded.\n- 1: On-demand mode. Features within the current view extent are retrieved as the user navigates the map. This is the default and the most common way to use feature services in web maps.\n- 2: Selection-only mode. No features are initially retrieved. This mode is used when you have a map service and a feature service from the same parent URL that are working together in the same map, with the map service being used for display and the feature service used for editing.",
|
|
11887
11888
|
"enum": [
|
|
11888
11889
|
0,
|
|
11889
11890
|
1,
|
|
@@ -11893,7 +11894,7 @@
|
|
|
11893
11894
|
"type": "number"
|
|
11894
11895
|
},
|
|
11895
11896
|
"opacity": {
|
|
11896
|
-
"description": "The degree of transparency applied to the layer on the client side, where
|
|
11897
|
+
"description": "The degree of transparency applied to the layer on the client side, where\n0 is full transparency and 1 is no transparency.",
|
|
11897
11898
|
"type": "number"
|
|
11898
11899
|
},
|
|
11899
11900
|
"popupInfo": {
|
|
@@ -11964,7 +11965,7 @@
|
|
|
11964
11965
|
},
|
|
11965
11966
|
"esri.rest-api.SublayerJson.SublayerJson": {
|
|
11966
11967
|
"additionalProperties": false,
|
|
11967
|
-
"description": "This object allows overrides on pop-up content and drawing behavior for individual layers of a web service. When used with a feature collection, this object also contains geographic features and their attributes
|
|
11968
|
+
"description": "This object allows overrides on pop-up content and drawing behavior for individual layers of a web service. When used with a feature collection, this object also contains geographic features and their attributes.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/layer/} {@link https://developers.arcgis.com/web-scene-specification/objects/layer/}.",
|
|
11968
11969
|
"properties": {
|
|
11969
11970
|
"defaultVisibility": {
|
|
11970
11971
|
"description": "Default visibility of the layers in the map service.",
|
|
@@ -11984,7 +11985,7 @@
|
|
|
11984
11985
|
},
|
|
11985
11986
|
"field": {
|
|
11986
11987
|
"$ref": "#/definitions/esri.rest-api.FieldJson.FieldJson",
|
|
11987
|
-
"description": "Information about each field in a layer
|
|
11988
|
+
"description": "Information about each field in a layer.\n\nNOTE: This is how it's typed and documented in the web map spec, but is almost certainly total nonsense."
|
|
11988
11989
|
},
|
|
11989
11990
|
"id": {
|
|
11990
11991
|
"description": "A number indicating the index position of the layer in the WMS or map service.",
|
|
@@ -12045,7 +12046,7 @@
|
|
|
12045
12046
|
},
|
|
12046
12047
|
"esri.rest-api.SubtypeGroupLayerJson.SubtypeGroupLayerJson": {
|
|
12047
12048
|
"additionalProperties": false,
|
|
12048
|
-
"description": "SubtypeGroupLayer provides the ability to organize several sublayers into one common layer. Suppose there are several FeatureLayers that all represent water features in different dimensions. For example, wells (points), streams (lines), and lakes (polygons). The SubtypeGroupLayer provides the functionality to treat them as one layer called Water Features even though they are stored as separate feature layers
|
|
12049
|
+
"description": "SubtypeGroupLayer provides the ability to organize several sublayers into one common layer. Suppose there are several FeatureLayers that all represent water features in different dimensions. For example, wells (points), streams (lines), and lakes (polygons). The SubtypeGroupLayer provides the functionality to treat them as one layer called Water Features even though they are stored as separate feature layers.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/subtypeGroupLayer/}.",
|
|
12049
12050
|
"properties": {
|
|
12050
12051
|
"blendMode": {
|
|
12051
12052
|
"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.",
|
|
@@ -12124,7 +12125,7 @@
|
|
|
12124
12125
|
"type": "number"
|
|
12125
12126
|
},
|
|
12126
12127
|
"opacity": {
|
|
12127
|
-
"description": "The degree of transparency applied to the layer on the client side, where
|
|
12128
|
+
"description": "The degree of transparency applied to the layer on the client side, where\n0 is full transparency and 1 is no transparency.",
|
|
12128
12129
|
"type": "number"
|
|
12129
12130
|
},
|
|
12130
12131
|
"refreshInterval": {
|
|
@@ -12169,7 +12170,7 @@
|
|
|
12169
12170
|
},
|
|
12170
12171
|
"esri.rest-api.SubtypeSublayerJson.SubtypeSublayerJson": {
|
|
12171
12172
|
"additionalProperties": false,
|
|
12172
|
-
"description": "Feature layers can be created by referencing a sublayer from either a map service or a feature service or by specifying a feature collection object. Use a map service if you just want to retrieve geometries and attributes from the server and symbolize them yourself. Use a feature service if you want to take advantage of symbols from the service's source map document. Also, use a feature service if you plan on doing editing with the feature sublayer. Feature layers honor any feature templates configured in the source map document. Feature collection objects are used to create a feature sublayer based on the supplied definition
|
|
12173
|
+
"description": "Feature layers can be created by referencing a sublayer from either a map service or a feature service or by specifying a feature collection object. Use a map service if you just want to retrieve geometries and attributes from the server and symbolize them yourself. Use a feature service if you want to take advantage of symbols from the service's source map document. Also, use a feature service if you plan on doing editing with the feature sublayer. Feature layers honor any feature templates configured in the source map document. Feature collection objects are used to create a feature sublayer based on the supplied definition.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/subtypeSublayer/} {@link https://developers.arcgis.com/web-scene-specification/objects/subtypeSublayer/}.",
|
|
12173
12174
|
"properties": {
|
|
12174
12175
|
"blendMode": {
|
|
12175
12176
|
"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.",
|
|
@@ -12245,7 +12246,7 @@
|
|
|
12245
12246
|
"type": "number"
|
|
12246
12247
|
},
|
|
12247
12248
|
"opacity": {
|
|
12248
|
-
"description": "The degree of transparency applied to the layer on the client side, where
|
|
12249
|
+
"description": "The degree of transparency applied to the layer on the client side, where\n0 is full transparency and 1 is no transparency.",
|
|
12249
12250
|
"type": "number"
|
|
12250
12251
|
},
|
|
12251
12252
|
"popupInfo": {
|
|
@@ -12316,7 +12317,7 @@
|
|
|
12316
12317
|
},
|
|
12317
12318
|
"esri.rest-api.SymbolJson.CIMSymbolJson": {
|
|
12318
12319
|
"additionalProperties": false,
|
|
12319
|
-
"description": "Represents a symbol reference that contains a CIM symbol. In addition to type listed below, a symbol reference will contain additional properties. More details on CIM symbol reference and CIM symbols are available on github: https://github.com/Esri/cim-spec/blob/master/docs/v2/Overview-Symbols.md
|
|
12320
|
+
"description": "Represents a symbol reference that contains a CIM symbol. In addition to type listed below, a symbol reference will contain additional properties. More details on CIM symbol reference and CIM symbols are available on github: https://github.com/Esri/cim-spec/blob/master/docs/v2/Overview-Symbols.md.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/polygonSymbol3D/}.",
|
|
12320
12321
|
"properties": {
|
|
12321
12322
|
"type": {
|
|
12322
12323
|
"const": "CIMSymbolReference",
|
|
@@ -12380,7 +12381,7 @@
|
|
|
12380
12381
|
},
|
|
12381
12382
|
"esri.rest-api.SymbolJson.ExtrudeSymbol3DLayerJson": {
|
|
12382
12383
|
"additionalProperties": false,
|
|
12383
|
-
"description": "ExtrudeSymbol3DLayer is used to render Polygon geometries by extruding them upward from the ground, creating a 3D volumetric object
|
|
12384
|
+
"description": "ExtrudeSymbol3DLayer is used to render Polygon geometries by extruding them upward from the ground, creating a 3D volumetric object.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/extrudeSymbol3DLayer/}.",
|
|
12384
12385
|
"properties": {
|
|
12385
12386
|
"enable": {
|
|
12386
12387
|
"description": "Type: Boolean.",
|
|
@@ -12407,7 +12408,7 @@
|
|
|
12407
12408
|
},
|
|
12408
12409
|
"esri.rest-api.SymbolJson.FillSymbol3DLayerJson": {
|
|
12409
12410
|
"additionalProperties": false,
|
|
12410
|
-
"description": "FillSymbol3DLayer is used to render the surfaces of flat 2D Polygon geometries and 3D volumetric meshes in a SceneView
|
|
12411
|
+
"description": "FillSymbol3DLayer is used to render the surfaces of flat 2D Polygon geometries and 3D volumetric meshes in a SceneView.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/fillSymbol3DLayer/}.",
|
|
12411
12412
|
"properties": {
|
|
12412
12413
|
"castShadows": {
|
|
12413
12414
|
"description": "Boolean to control the shadow casting behavior of the rendered geometries.",
|
|
@@ -12442,7 +12443,7 @@
|
|
|
12442
12443
|
},
|
|
12443
12444
|
"esri.rest-api.SymbolJson.FontJson": {
|
|
12444
12445
|
"additionalProperties": false,
|
|
12445
|
-
"description": "Font used for text symbols
|
|
12446
|
+
"description": "Font used for text symbols.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/font/} {@link https://developers.arcgis.com/web-scene-specification/objects/font/}.",
|
|
12446
12447
|
"properties": {
|
|
12447
12448
|
"decoration": {
|
|
12448
12449
|
"description": "The text decoration.",
|
|
@@ -12485,7 +12486,7 @@
|
|
|
12485
12486
|
},
|
|
12486
12487
|
"esri.rest-api.SymbolJson.IconSymbol3DLayerJson": {
|
|
12487
12488
|
"additionalProperties": false,
|
|
12488
|
-
"description": "IconSymbol3DLayer is used to render Point geometries using a flat 2D icon (e.g. a circle) with a PointSymbol3D in a SceneView
|
|
12489
|
+
"description": "IconSymbol3DLayer is used to render Point geometries using a flat 2D icon (e.g. a circle) with a PointSymbol3D in a SceneView.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/iconSymbol3DLayer/}.",
|
|
12489
12490
|
"properties": {
|
|
12490
12491
|
"anchor": {
|
|
12491
12492
|
"description": "Must be one of the following values: center, left, right, top, bottom, topLeft, topRight, bottomLeft, bottomRight.",
|
|
@@ -12535,7 +12536,7 @@
|
|
|
12535
12536
|
},
|
|
12536
12537
|
"esri.rest-api.SymbolJson.LabelSymbol3DJson": {
|
|
12537
12538
|
"additionalProperties": false,
|
|
12538
|
-
"description": "LabelSymbol3D is used to render labels for features from a FeatureLayer in a
|
|
12539
|
+
"description": "LabelSymbol3D is used to render labels for features from a FeatureLayer in a\n3D SceneView.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/labelSymbol3D/}.",
|
|
12539
12540
|
"properties": {
|
|
12540
12541
|
"callout": {
|
|
12541
12542
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.CalloutJson",
|
|
@@ -12566,7 +12567,7 @@
|
|
|
12566
12567
|
},
|
|
12567
12568
|
"esri.rest-api.SymbolJson.LineSymbol3DJson": {
|
|
12568
12569
|
"additionalProperties": false,
|
|
12569
|
-
"description": "LineSymbol3D is used to render features with Polyline geometry in a 3D SceneView
|
|
12570
|
+
"description": "LineSymbol3D is used to render features with Polyline geometry in a 3D SceneView.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/lineSymbol3D/}.",
|
|
12570
12571
|
"properties": {
|
|
12571
12572
|
"symbolLayers": {
|
|
12572
12573
|
"description": "A Collection of Symbol3DLayer objects used to visualize the graphic or feature.",
|
|
@@ -12596,7 +12597,7 @@
|
|
|
12596
12597
|
},
|
|
12597
12598
|
"esri.rest-api.SymbolJson.LineSymbol3DLayerJson": {
|
|
12598
12599
|
"additionalProperties": false,
|
|
12599
|
-
"description": "LineSymbol3DLayer renders Polyline geometries using a flat 2D line with a LineSymbol3D in a 3D SceneView
|
|
12600
|
+
"description": "LineSymbol3DLayer renders Polyline geometries using a flat 2D line with a LineSymbol3D in a 3D SceneView.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/lineSymbol3DLayer/}.",
|
|
12600
12601
|
"properties": {
|
|
12601
12602
|
"enable": {
|
|
12602
12603
|
"description": "Type: Boolean.",
|
|
@@ -12623,14 +12624,14 @@
|
|
|
12623
12624
|
},
|
|
12624
12625
|
"esri.rest-api.SymbolJson.MaterialJson": {
|
|
12625
12626
|
"additionalProperties": false,
|
|
12626
|
-
"description": "The material used to shade the geometry
|
|
12627
|
+
"description": "The material used to shade the geometry.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/material/}.",
|
|
12627
12628
|
"properties": {
|
|
12628
12629
|
"color": {
|
|
12629
12630
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.ColorJson",
|
|
12630
12631
|
"description": "Color is represented as a three or four-element array."
|
|
12631
12632
|
},
|
|
12632
12633
|
"colorMixMode": {
|
|
12633
|
-
"description": "Controls how symbolLayer or visualVariable color is applied onto the underlying geometry color/texture. This property only applies to FillSymbol3DLayer within MeshSymbol3D
|
|
12634
|
+
"description": "Controls how symbolLayer or visualVariable color is applied onto the underlying geometry color/texture. This property only applies to FillSymbol3DLayer within MeshSymbol3D.\n\n- Tint: the feature's appearance (in terms of color) should be altered to match the symbol / visual variable color.\n- Replace: the feature's color is replaced with the symbol / visual variable color.\n- Multiply: the feature's color is multiplied with the symbol color.",
|
|
12634
12635
|
"enum": [
|
|
12635
12636
|
"multiply",
|
|
12636
12637
|
"replace",
|
|
@@ -12647,7 +12648,7 @@
|
|
|
12647
12648
|
},
|
|
12648
12649
|
"esri.rest-api.SymbolJson.MeshSymbol3DJson": {
|
|
12649
12650
|
"additionalProperties": false,
|
|
12650
|
-
"description": "MeshSymbol3D is used to render 3D mesh features in a SceneLayer in a 3D SceneView
|
|
12651
|
+
"description": "MeshSymbol3D is used to render 3D mesh features in a SceneLayer in a 3D SceneView.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/meshSymbol3D/}.",
|
|
12651
12652
|
"properties": {
|
|
12652
12653
|
"symbolLayers": {
|
|
12653
12654
|
"description": "A Collection of Symbol3DLayer objects used to visualize the graphic or feature.",
|
|
@@ -12670,7 +12671,7 @@
|
|
|
12670
12671
|
},
|
|
12671
12672
|
"esri.rest-api.SymbolJson.ObjectSymbol3DLayerJson": {
|
|
12672
12673
|
"additionalProperties": false,
|
|
12673
|
-
"description": "ObjectSymbol3DLayer is used to render Point geometries using a volumetric 3D shape (e.g., a sphere or cylinder) with a PointSymbol3D in a SceneView
|
|
12674
|
+
"description": "ObjectSymbol3DLayer is used to render Point geometries using a volumetric 3D shape (e.g., a sphere or cylinder) with a PointSymbol3D in a SceneView.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/objectSymbol3DLayer/}.",
|
|
12674
12675
|
"properties": {
|
|
12675
12676
|
"anchor": {
|
|
12676
12677
|
"description": "The positioning of the object relative to the geometry. Must be one of the following values: center, bottom, origin.",
|
|
@@ -12739,7 +12740,7 @@
|
|
|
12739
12740
|
},
|
|
12740
12741
|
"esri.rest-api.SymbolJson.OutlineJson": {
|
|
12741
12742
|
"additionalProperties": false,
|
|
12742
|
-
"description": "The outline of the point, line or polygon
|
|
12743
|
+
"description": "The outline of the point, line or polygon.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/outline/}.",
|
|
12743
12744
|
"properties": {
|
|
12744
12745
|
"color": {
|
|
12745
12746
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.ColorJson",
|
|
@@ -12758,7 +12759,7 @@
|
|
|
12758
12759
|
},
|
|
12759
12760
|
"esri.rest-api.SymbolJson.PathSymbol3DLayerJson": {
|
|
12760
12761
|
"additionalProperties": false,
|
|
12761
|
-
"description": "PathSymbol3DLayer renders Polyline geometries using a volumetric 3D tube with a LineSymbol3D in a SceneView
|
|
12762
|
+
"description": "PathSymbol3DLayer renders Polyline geometries using a volumetric 3D tube with a LineSymbol3D in a SceneView.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/pathSymbol3DLayer/}.",
|
|
12762
12763
|
"properties": {
|
|
12763
12764
|
"material": {
|
|
12764
12765
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.MaterialJson",
|
|
@@ -12785,7 +12786,7 @@
|
|
|
12785
12786
|
},
|
|
12786
12787
|
"esri.rest-api.SymbolJson.PictureFillSymbolJson": {
|
|
12787
12788
|
"additionalProperties": false,
|
|
12788
|
-
"description": "Picture fill symbols can be used to symbolize polygon geometries
|
|
12789
|
+
"description": "Picture fill symbols can be used to symbolize polygon geometries.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/esriPFS_symbol/}.",
|
|
12789
12790
|
"properties": {
|
|
12790
12791
|
"angle": {
|
|
12791
12792
|
"description": "Numeric value that defines the number of degrees ranging from 0-360, that a marker symbol is rotated. The rotation is from East in a counter-clockwise direction where East is the 0° axis.",
|
|
@@ -12844,7 +12845,7 @@
|
|
|
12844
12845
|
},
|
|
12845
12846
|
"esri.rest-api.SymbolJson.PictureMarkerSymbolJson": {
|
|
12846
12847
|
"additionalProperties": false,
|
|
12847
|
-
"description": "Picture marker symbols can be used to symbolize point geometries
|
|
12848
|
+
"description": "Picture marker symbols can be used to symbolize point geometries.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/esriPMS_symbol/}.",
|
|
12848
12849
|
"properties": {
|
|
12849
12850
|
"angle": {
|
|
12850
12851
|
"description": "Numeric value that defines the number of degrees ranging from 0-360, that a marker symbol is rotated. The rotation is from East in a counter-clockwise direction where East is the 0° axis.",
|
|
@@ -12891,7 +12892,7 @@
|
|
|
12891
12892
|
},
|
|
12892
12893
|
"esri.rest-api.SymbolJson.PointSymbol3DJson": {
|
|
12893
12894
|
"additionalProperties": false,
|
|
12894
|
-
"description": "PointSymbol3D is used to render features with Point geometry in a 3D SceneView
|
|
12895
|
+
"description": "PointSymbol3D is used to render features with Point geometry in a 3D SceneView.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/pointSymbol3D/}.",
|
|
12895
12896
|
"properties": {
|
|
12896
12897
|
"callout": {
|
|
12897
12898
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.CalloutJson",
|
|
@@ -12933,7 +12934,7 @@
|
|
|
12933
12934
|
},
|
|
12934
12935
|
"esri.rest-api.SymbolJson.PolygonSymbol3DJson": {
|
|
12935
12936
|
"additionalProperties": false,
|
|
12936
|
-
"description": "PolygonSymbol3D is used to render features with Polygon geometry in a 3D SceneView. Polygon features may also be rendered as points with icons or objects at the centroid of each polygon
|
|
12937
|
+
"description": "PolygonSymbol3D is used to render features with Polygon geometry in a 3D SceneView. Polygon features may also be rendered as points with icons or objects at the centroid of each polygon.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/polygonSymbol3D/}.",
|
|
12937
12938
|
"properties": {
|
|
12938
12939
|
"symbolLayers": {
|
|
12939
12940
|
"description": "A Collection of Symbol3DLayer objects used to visualize the graphic or feature.",
|
|
@@ -12966,7 +12967,7 @@
|
|
|
12966
12967
|
},
|
|
12967
12968
|
"esri.rest-api.SymbolJson.ResourceIconSymbolJson": {
|
|
12968
12969
|
"additionalProperties": false,
|
|
12969
|
-
"description": "The shape (primitive) or image URL (href) used to visualize the features
|
|
12970
|
+
"description": "The shape (primitive) or image URL (href) used to visualize the features.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/iconSymbol3DLayer_resource/}.",
|
|
12970
12971
|
"properties": {
|
|
12971
12972
|
"dataURI": {
|
|
12972
12973
|
"description": "An image encoded as base64 string, starting with data:image.",
|
|
@@ -12985,7 +12986,7 @@
|
|
|
12985
12986
|
},
|
|
12986
12987
|
"esri.rest-api.SymbolJson.ResourceObjectSymbolJson": {
|
|
12987
12988
|
"additionalProperties": false,
|
|
12988
|
-
"description": "The primitive shape (primitive) or external 3D model (href) used to visualize the points
|
|
12989
|
+
"description": "The primitive shape (primitive) or external 3D model (href) used to visualize the points.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/objectSymbol3DLayer_resource/}.",
|
|
12989
12990
|
"properties": {
|
|
12990
12991
|
"href": {
|
|
12991
12992
|
"description": "Must be an absolute URL or a relative path starting with \"./\".",
|
|
@@ -13000,7 +13001,7 @@
|
|
|
13000
13001
|
},
|
|
13001
13002
|
"esri.rest-api.SymbolJson.SimpleFillSymbolJson": {
|
|
13002
13003
|
"additionalProperties": false,
|
|
13003
|
-
"description": "Simple fill symbols can be used to symbolize polygon geometries
|
|
13004
|
+
"description": "Simple fill symbols can be used to symbolize polygon geometries.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/esriSFS_symbol/}.",
|
|
13004
13005
|
"properties": {
|
|
13005
13006
|
"color": {
|
|
13006
13007
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.ColorJson",
|
|
@@ -13037,7 +13038,7 @@
|
|
|
13037
13038
|
},
|
|
13038
13039
|
"esri.rest-api.SymbolJson.SimpleLineSymbolJson": {
|
|
13039
13040
|
"additionalProperties": false,
|
|
13040
|
-
"description": "Simple line symbols can be used to symbolize polyline geometries or outlines for polygon fills
|
|
13041
|
+
"description": "Simple line symbols can be used to symbolize polyline geometries or outlines for polygon fills.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/esriSLS_symbol/}.",
|
|
13041
13042
|
"properties": {
|
|
13042
13043
|
"color": {
|
|
13043
13044
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.ColorJson",
|
|
@@ -13072,7 +13073,7 @@
|
|
|
13072
13073
|
},
|
|
13073
13074
|
"esri.rest-api.SymbolJson.SimpleMarkerSymbolJson": {
|
|
13074
13075
|
"additionalProperties": false,
|
|
13075
|
-
"description": "Simple marker symbols can be used to symbolize point geometries
|
|
13076
|
+
"description": "Simple marker symbols can be used to symbolize point geometries.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/esriSMS_symbol/}.",
|
|
13076
13077
|
"properties": {
|
|
13077
13078
|
"angle": {
|
|
13078
13079
|
"description": "Numeric value used to rotate the symbol. The symbol is rotated counter-clockwise. For example, The following, angle=-30, in will create a symbol rotated -30 degrees counter-clockwise; that is, 30 degrees clockwise.",
|
|
@@ -13192,7 +13193,7 @@
|
|
|
13192
13193
|
},
|
|
13193
13194
|
"esri.rest-api.SymbolJson.StyleSymbolReferenceJson": {
|
|
13194
13195
|
"additionalProperties": false,
|
|
13195
|
-
"description": "The StyleSymbolReference is used to reference a symbol from a portal styleItem
|
|
13196
|
+
"description": "The StyleSymbolReference is used to reference a symbol from a portal styleItem.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/styleSymbolReference/}.",
|
|
13196
13197
|
"properties": {
|
|
13197
13198
|
"name": {
|
|
13198
13199
|
"description": "Identifies a symbol in the style by name.",
|
|
@@ -13310,11 +13311,11 @@
|
|
|
13310
13311
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.StyleSymbolReferenceJson"
|
|
13311
13312
|
}
|
|
13312
13313
|
],
|
|
13313
|
-
"description": "A symbol representing a feature on the map
|
|
13314
|
+
"description": "A symbol representing a feature on the map.\n\nPart of the Esri ArcGIS REST API (see http://resources.arcgis.com/en/help/rest/apiref/symbol.html). See {@link https://developers.arcgis.com/web-map-specification/objects/symbol/}."
|
|
13314
13315
|
},
|
|
13315
13316
|
"esri.rest-api.SymbolJson.TextSymbol3DLayerJson": {
|
|
13316
13317
|
"additionalProperties": false,
|
|
13317
|
-
"description": "TextSymbol3DLayer is used to draw text labels for features of any geometry type
|
|
13318
|
+
"description": "TextSymbol3DLayer is used to draw text labels for features of any geometry type.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/textSymbol3DLayer/}.",
|
|
13318
13319
|
"properties": {
|
|
13319
13320
|
"font": {
|
|
13320
13321
|
"$ref": "#/definitions/esri.rest-api.SymbolJson.FontJson",
|
|
@@ -13345,7 +13346,7 @@
|
|
|
13345
13346
|
},
|
|
13346
13347
|
"esri.rest-api.SymbolJson.TextSymbolJson": {
|
|
13347
13348
|
"additionalProperties": false,
|
|
13348
|
-
"description": "Text symbols are used to add text to a feature (labeling)
|
|
13349
|
+
"description": "Text symbols are used to add text to a feature (labeling).\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/esriTS_symbol/}.",
|
|
13349
13350
|
"properties": {
|
|
13350
13351
|
"angle": {
|
|
13351
13352
|
"description": "A numeric value that defines the number of degrees (0 to 360) that a text symbol is rotated. The rotation is from East in a counter-clockwise direction where East is the 0° axis.",
|
|
@@ -13458,7 +13459,7 @@
|
|
|
13458
13459
|
},
|
|
13459
13460
|
"esri.rest-api.TemplateJson.TemplateJson": {
|
|
13460
13461
|
"additionalProperties": false,
|
|
13461
|
-
"description": "Templates describe features that can be created in a 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
|
|
13462
|
+
"description": "Templates describe features that can be created in a 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.\n\nTemplates are defined as a property of the layer definition when there are no types defined; otherwise, templates are defined as properties of the types.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/template/} {@link https://developers.arcgis.com/web-scene-specification/objects/template/}.",
|
|
13462
13463
|
"properties": {
|
|
13463
13464
|
"description": {
|
|
13464
13465
|
"description": "A detailed description of the template.",
|
|
@@ -13496,7 +13497,7 @@
|
|
|
13496
13497
|
},
|
|
13497
13498
|
"esri.rest-api.TiledImageServiceLayerJson.TiledImageServiceLayerJson": {
|
|
13498
13499
|
"additionalProperties": false,
|
|
13499
|
-
"description": "An ArcGIS Tiled Image Service layer displays map content from an ArcGIS Server Image service that has been cached (tiled)
|
|
13500
|
+
"description": "An ArcGIS Tiled Image Service layer displays map content from an ArcGIS Server Image service that has been cached (tiled).\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/tiledImageServiceLayer/} {@link https://developers.arcgis.com/web-scene-specification/objects/tiledImageServiceLayer/}.",
|
|
13500
13501
|
"properties": {
|
|
13501
13502
|
"blendMode": {
|
|
13502
13503
|
"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.",
|
|
@@ -13572,7 +13573,7 @@
|
|
|
13572
13573
|
"type": "number"
|
|
13573
13574
|
},
|
|
13574
13575
|
"opacity": {
|
|
13575
|
-
"description": "The degree of transparency applied to the layer on the client side, where
|
|
13576
|
+
"description": "The degree of transparency applied to the layer on the client side, where\n0 is full transparency and 1 is no transparency.",
|
|
13576
13577
|
"type": "number"
|
|
13577
13578
|
},
|
|
13578
13579
|
"refreshInterval": {
|
|
@@ -13617,7 +13618,7 @@
|
|
|
13617
13618
|
},
|
|
13618
13619
|
"esri.rest-api.TiledMapServiceLayerJson.TiledMapServiceLayerJson": {
|
|
13619
13620
|
"additionalProperties": false,
|
|
13620
|
-
"description": "An ArcGIS Tiled Map Service layer displays map content from an ArcGIS Server Map service that has been cached (tiled)
|
|
13621
|
+
"description": "An ArcGIS Tiled Map Service layer displays map content from an ArcGIS Server Map service that has been cached (tiled).\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/tiledMapServiceLayer/} {@link https://developers.arcgis.com/web-scene-specification/objects/tiledMapServiceLayer/}.",
|
|
13621
13622
|
"properties": {
|
|
13622
13623
|
"blendMode": {
|
|
13623
13624
|
"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.",
|
|
@@ -13711,7 +13712,7 @@
|
|
|
13711
13712
|
"type": "number"
|
|
13712
13713
|
},
|
|
13713
13714
|
"opacity": {
|
|
13714
|
-
"description": "The degree of transparency applied to the layer on the client side, where
|
|
13715
|
+
"description": "The degree of transparency applied to the layer on the client side, where\n0 is full transparency and 1 is no transparency.",
|
|
13715
13716
|
"type": "number"
|
|
13716
13717
|
},
|
|
13717
13718
|
"path": {
|
|
@@ -13760,7 +13761,7 @@
|
|
|
13760
13761
|
},
|
|
13761
13762
|
"esri.rest-api.TypeJson.TypeJson": {
|
|
13762
13763
|
"additionalProperties": false,
|
|
13763
|
-
"description": "Types contain information about the combinations of attributes allowed for features in the dataset. Each feature in the dataset can have a type, indicated in its typeIdField, which is used in LayerDefinition
|
|
13764
|
+
"description": "Types contain information about the combinations of attributes allowed for features in the dataset. Each feature in the dataset can have a type, indicated in its typeIdField, which is used in LayerDefinition.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/type/} {@link https://developers.arcgis.com/web-scene-specification/objects/type/}.",
|
|
13764
13765
|
"properties": {
|
|
13765
13766
|
"domains": {
|
|
13766
13767
|
"description": "A set of domain objects for each domain in the type."
|
|
@@ -13777,7 +13778,7 @@
|
|
|
13777
13778
|
"type": "string"
|
|
13778
13779
|
},
|
|
13779
13780
|
"templates": {
|
|
13780
|
-
"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
|
|
13781
|
+
"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.\n\nTemplates are defined as a property of the layer definition when there are no types defined; otherwise, templates are defined as properties of the types.\n\nYou might have more than one template per type if the attributes of available features vary slightly. For example, you might have a type named Copper pipe containing two templates: one whose DIAMETER property is 12 and another whose DIAMETER property is 10.",
|
|
13781
13782
|
"items": {
|
|
13782
13783
|
"$ref": "#/definitions/esri.rest-api.TemplateJson.TemplateJson"
|
|
13783
13784
|
},
|
|
@@ -13788,7 +13789,7 @@
|
|
|
13788
13789
|
},
|
|
13789
13790
|
"esri.rest-api.VectorTileLayerJson.VectorTileLayerJson": {
|
|
13790
13791
|
"additionalProperties": false,
|
|
13791
|
-
"description": "A vector tile layer references a set of web-accessible vector tiles and the corresponding style for how those tiles should be drawn
|
|
13792
|
+
"description": "A vector tile layer references a set of web-accessible vector tiles and the corresponding style for how those tiles should be drawn.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/vectorTileLayer/} {@link https://developers.arcgis.com/web-scene-specification/objects/vectorTileLayer/}.",
|
|
13792
13793
|
"properties": {
|
|
13793
13794
|
"blendMode": {
|
|
13794
13795
|
"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.",
|
|
@@ -13864,7 +13865,7 @@
|
|
|
13864
13865
|
"type": "number"
|
|
13865
13866
|
},
|
|
13866
13867
|
"opacity": {
|
|
13867
|
-
"description": "The degree of transparency applied to the layer on the client side, where
|
|
13868
|
+
"description": "The degree of transparency applied to the layer on the client side, where\n0 is full transparency and 1 is no transparency.",
|
|
13868
13869
|
"type": "number"
|
|
13869
13870
|
},
|
|
13870
13871
|
"path": {
|
|
@@ -13913,7 +13914,7 @@
|
|
|
13913
13914
|
},
|
|
13914
13915
|
"esri.rest-api.ViewpointJson.CameraJson": {
|
|
13915
13916
|
"additionalProperties": false,
|
|
13916
|
-
"description": "The camera defines the position, tilt, and heading of the point from which the SceneView's visible extent is observed
|
|
13917
|
+
"description": "The camera defines the position, tilt, and heading of the point from which the SceneView's visible extent is observed.\n\nSee {@link https://developers.arcgis.com/web-scene-specification/objects/camera/}.",
|
|
13917
13918
|
"properties": {
|
|
13918
13919
|
"heading": {
|
|
13919
13920
|
"description": "The heading of the camera in degrees. Heading is zero when north is the top of the screen. It increases as the view rotates clockwise. The angles are always normalized between 0 and 360 degrees.",
|
|
@@ -13935,7 +13936,7 @@
|
|
|
13935
13936
|
},
|
|
13936
13937
|
"esri.rest-api.ViewpointJson.ViewpointJson": {
|
|
13937
13938
|
"additionalProperties": false,
|
|
13938
|
-
"description": "Describes a point of view for a 2D or 3D view. In a 2D view, the viewpoint is determined using a center point and scale value. In a 3D view, it is determined using a camera position. The Viewpoint can be bookmarked for later use, or used for navigation purposes
|
|
13939
|
+
"description": "Describes a point of view for a 2D or 3D view. In a 2D view, the viewpoint is determined using a center point and scale value. In a 3D view, it is determined using a camera position. The Viewpoint can be bookmarked for later use, or used for navigation purposes.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/viewpoint/} {@link https://developers.arcgis.com/web-scene-specification/objects/viewpoint/}.",
|
|
13939
13940
|
"properties": {
|
|
13940
13941
|
"camera": {
|
|
13941
13942
|
"$ref": "#/definitions/esri.rest-api.ViewpointJson.CameraJson",
|
|
@@ -13958,7 +13959,7 @@
|
|
|
13958
13959
|
},
|
|
13959
13960
|
"esri.rest-api.WFSLayerJson.WFSInfoJson": {
|
|
13960
13961
|
"additionalProperties": false,
|
|
13961
|
-
"description": "Object that defines and provides information about layers in a WFS service
|
|
13962
|
+
"description": "Object that defines and provides information about layers in a WFS service.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/wfsInfo/}.",
|
|
13962
13963
|
"properties": {
|
|
13963
13964
|
"customParameters": {
|
|
13964
13965
|
"description": "A sequence of parameters used to append custom parameters to all WFS requests. These parameters are applied to GetCapabilities, DescribeFeatureType, and GetFeatures."
|
|
@@ -13999,7 +14000,7 @@
|
|
|
13999
14000
|
},
|
|
14000
14001
|
"esri.rest-api.WFSLayerJson.WFSLayerJson": {
|
|
14001
14002
|
"additionalProperties": false,
|
|
14002
|
-
"description": "OGC Web Feature Service (WFS) is a dynamic feature service that follows the specifications of OGC
|
|
14003
|
+
"description": "OGC Web Feature Service (WFS) is a dynamic feature service that follows the specifications of OGC.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/wfsLayer/} and {@link https://developers.arcgis.com/web-scene-specification/objects/wfsLayer/}.",
|
|
14003
14004
|
"properties": {
|
|
14004
14005
|
"blendMode": {
|
|
14005
14006
|
"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.",
|
|
@@ -14084,7 +14085,7 @@
|
|
|
14084
14085
|
"type": "number"
|
|
14085
14086
|
},
|
|
14086
14087
|
"opacity": {
|
|
14087
|
-
"description": "The degree of transparency applied to the layer on the client side, where
|
|
14088
|
+
"description": "The degree of transparency applied to the layer on the client side, where\n0 is full transparency and 1 is no transparency.",
|
|
14088
14089
|
"type": "number"
|
|
14089
14090
|
},
|
|
14090
14091
|
"popupInfo": {
|
|
@@ -14141,7 +14142,7 @@
|
|
|
14141
14142
|
},
|
|
14142
14143
|
"esri.rest-api.WMSLayerJson.WMSLayerJson": {
|
|
14143
14144
|
"additionalProperties": false,
|
|
14144
|
-
"description": "A layer consuming a Web Map Service (WMS). The WMS specification is an international specification for serving and consuming dynamic maps on the web. For additional information on publishing WMS services, please see the ArcGIS Server help
|
|
14145
|
+
"description": "A layer consuming a Web Map Service (WMS). The WMS specification is an international specification for serving and consuming dynamic maps on the web. For additional information on publishing WMS services, please see the ArcGIS Server help.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/wmsLayer/}.",
|
|
14145
14146
|
"properties": {
|
|
14146
14147
|
"blendMode": {
|
|
14147
14148
|
"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.",
|
|
@@ -14273,7 +14274,7 @@
|
|
|
14273
14274
|
"type": "number"
|
|
14274
14275
|
},
|
|
14275
14276
|
"opacity": {
|
|
14276
|
-
"description": "The degree of transparency applied to the layer on the client side, where
|
|
14277
|
+
"description": "The degree of transparency applied to the layer on the client side, where\n0 is full transparency and 1 is no transparency.",
|
|
14277
14278
|
"type": "number"
|
|
14278
14279
|
},
|
|
14279
14280
|
"refreshInterval": {
|
|
@@ -14336,7 +14337,7 @@
|
|
|
14336
14337
|
},
|
|
14337
14338
|
"esri.rest-api.WMSSublayerJson.WMSSublayerJson": {
|
|
14338
14339
|
"additionalProperties": false,
|
|
14339
|
-
"description": "A layer object may allow overrides on popup content and drawing behavior for individual layers of a web service
|
|
14340
|
+
"description": "A layer object may allow overrides on popup content and drawing behavior for individual layers of a web service.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/wmsLayer_layer/}.",
|
|
14340
14341
|
"properties": {
|
|
14341
14342
|
"legendUrl": {
|
|
14342
14343
|
"description": "A string URL to a legend graphic for the layer.",
|
|
@@ -14363,7 +14364,7 @@
|
|
|
14363
14364
|
},
|
|
14364
14365
|
"esri.rest-api.WebTileLayerJson.TileInfoJson": {
|
|
14365
14366
|
"additionalProperties": false,
|
|
14366
|
-
"description": "Tile information, returned from the WMTS OGC Web Service. The tileInfo will contain the spatial reference of the layer. TileInfo is the same json representation as the ArcGIS Map/Image service tileInfo except that it may contain a levelValue on the lod objects that should be used instead of the level in the templateUrl
|
|
14367
|
+
"description": "Tile information, returned from the WMTS OGC Web Service. The tileInfo will contain the spatial reference of the layer. TileInfo is the same json representation as the ArcGIS Map/Image service tileInfo except that it may contain a levelValue on the lod objects that should be used instead of the level in the templateUrl.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/tileInfo/} {@link https://developers.arcgis.com/web-scene-specification/objects/tileInfo/}.",
|
|
14367
14368
|
"properties": {
|
|
14368
14369
|
"cols": {
|
|
14369
14370
|
"description": "Requested tile's column.",
|
|
@@ -14430,7 +14431,7 @@
|
|
|
14430
14431
|
},
|
|
14431
14432
|
"esri.rest-api.WebTileLayerJson.WebTileLayerJson": {
|
|
14432
14433
|
"additionalProperties": false,
|
|
14433
|
-
"description": "A tile layer is a derived from a set of web-accessible tiles which reside on a server. The tiles are accessed by a direct URL request from the web browser. Because the tiles in a tile layer are not available as a service, they must be in a specific format for a web app such as the ArcGIS.com map viewer to display the layer on a map
|
|
14434
|
+
"description": "A tile layer is a derived from a set of web-accessible tiles which reside on a server. The tiles are accessed by a direct URL request from the web browser. Because the tiles in a tile layer are not available as a service, they must be in a specific format for a web app such as the ArcGIS.com map viewer to display the layer on a map.\n\nSee {@link https://developers.arcgis.com/web-map-specification/objects/tiledLayer/} {@link https://developers.arcgis.com/web-scene-specification/objects/tiledLayer/}.",
|
|
14434
14435
|
"properties": {
|
|
14435
14436
|
"blendMode": {
|
|
14436
14437
|
"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.",
|
|
@@ -14511,7 +14512,7 @@
|
|
|
14511
14512
|
"type": "number"
|
|
14512
14513
|
},
|
|
14513
14514
|
"opacity": {
|
|
14514
|
-
"description": "The degree of transparency applied to the layer on the client side, where
|
|
14515
|
+
"description": "The degree of transparency applied to the layer on the client side, where\n0 is full transparency and 1 is no transparency.",
|
|
14515
14516
|
"type": "number"
|
|
14516
14517
|
},
|
|
14517
14518
|
"refreshInterval": {
|
|
@@ -15075,7 +15076,7 @@
|
|
|
15075
15076
|
]
|
|
15076
15077
|
},
|
|
15077
15078
|
"map.add-markup": {
|
|
15078
|
-
"description": "Adds markup to the map(s).",
|
|
15079
|
+
"description": "Adds markup to the map(s).\r\n\r **Example:** Adding markup to a custom collection using `AddMarkupArgs`.\r\n\r ```\r\n{\r\n \"collection\": \"my-custom-markup\",\r\n \"graphics\": [\r\n {\r\n \"geometry\": {\r\n \"x\": -13733416.69,\r\n \"y\": 6177670.86,\r\n \"spatialReference\": {\r\n \"wkid\": 3857\r\n },\r\n \"type\": \"point\"\r\n },\r\n \"symbol\": {\r\n \"color\": [76, 115, 0, 255],\r\n \"size\": 16,\r\n \"style\": \"esriSMSCircle\",\r\n \"type\": \"simple-marker\"\r\n }\r\n }\r\n ]\r\n}\r\n```",
|
|
15079
15080
|
"enum": [
|
|
15080
15081
|
"map.add-markup"
|
|
15081
15082
|
]
|
|
@@ -16302,7 +16303,7 @@
|
|
|
16302
16303
|
"$ref": "#/definitions/BackgroundLocationUpdatesArgs"
|
|
16303
16304
|
},
|
|
16304
16305
|
"system.enable-background-location-updates": {
|
|
16305
|
-
"description": "Enables background location updates. While enabled, the application will continue to execute code while running in the background
|
|
16306
|
+
"description": "Enables background location updates. While enabled, the application will continue to execute code while running in the background.\r\n\r Note for iOS: If the user has not accepted location permissions for the app, no code will be allowed to execute in the background. Mobile only.",
|
|
16306
16307
|
"enum": [
|
|
16307
16308
|
"system.enable-background-location-updates"
|
|
16308
16309
|
]
|
|
@@ -16556,22 +16557,6 @@
|
|
|
16556
16557
|
},
|
|
16557
16558
|
"viewer-spec.SingleCommand": {
|
|
16558
16559
|
"anyOf": [
|
|
16559
|
-
{
|
|
16560
|
-
"additionalProperties": false,
|
|
16561
|
-
"properties": {
|
|
16562
|
-
"arguments": {
|
|
16563
|
-
"$ref": "#/definitions/app.get-persistent-data:input"
|
|
16564
|
-
},
|
|
16565
|
-
"name": {
|
|
16566
|
-
"$ref": "#/definitions/app.get-persistent-data"
|
|
16567
|
-
}
|
|
16568
|
-
},
|
|
16569
|
-
"required": [
|
|
16570
|
-
"name",
|
|
16571
|
-
"arguments"
|
|
16572
|
-
],
|
|
16573
|
-
"type": "object"
|
|
16574
|
-
},
|
|
16575
16560
|
{
|
|
16576
16561
|
"additionalProperties": false,
|
|
16577
16562
|
"properties": {
|
|
@@ -18384,10 +18369,10 @@
|
|
|
18384
18369
|
"additionalProperties": false,
|
|
18385
18370
|
"properties": {
|
|
18386
18371
|
"arguments": {
|
|
18387
|
-
"$ref": "#/definitions/viewer.
|
|
18372
|
+
"$ref": "#/definitions/viewer.log-debug:input"
|
|
18388
18373
|
},
|
|
18389
18374
|
"name": {
|
|
18390
|
-
"$ref": "#/definitions/viewer.
|
|
18375
|
+
"$ref": "#/definitions/viewer.log-debug"
|
|
18391
18376
|
}
|
|
18392
18377
|
},
|
|
18393
18378
|
"required": [
|
|
@@ -18400,10 +18385,10 @@
|
|
|
18400
18385
|
"additionalProperties": false,
|
|
18401
18386
|
"properties": {
|
|
18402
18387
|
"arguments": {
|
|
18403
|
-
"$ref": "#/definitions/
|
|
18388
|
+
"$ref": "#/definitions/viewer.publish-event:input"
|
|
18404
18389
|
},
|
|
18405
18390
|
"name": {
|
|
18406
|
-
"$ref": "#/definitions/
|
|
18391
|
+
"$ref": "#/definitions/viewer.publish-event"
|
|
18407
18392
|
}
|
|
18408
18393
|
},
|
|
18409
18394
|
"required": [
|
|
@@ -18416,10 +18401,10 @@
|
|
|
18416
18401
|
"additionalProperties": false,
|
|
18417
18402
|
"properties": {
|
|
18418
18403
|
"arguments": {
|
|
18419
|
-
"$ref": "#/definitions/workflow.
|
|
18404
|
+
"$ref": "#/definitions/workflow.cancel:input"
|
|
18420
18405
|
},
|
|
18421
18406
|
"name": {
|
|
18422
|
-
"$ref": "#/definitions/workflow.
|
|
18407
|
+
"$ref": "#/definitions/workflow.cancel"
|
|
18423
18408
|
}
|
|
18424
18409
|
},
|
|
18425
18410
|
"required": [
|
|
@@ -18463,9 +18448,6 @@
|
|
|
18463
18448
|
{
|
|
18464
18449
|
"$ref": "#/definitions/app.favorite"
|
|
18465
18450
|
},
|
|
18466
|
-
{
|
|
18467
|
-
"$ref": "#/definitions/app.get-persistent-data"
|
|
18468
|
-
},
|
|
18469
18451
|
{
|
|
18470
18452
|
"$ref": "#/definitions/app.go-to-app-selector"
|
|
18471
18453
|
},
|
|
@@ -18871,9 +18853,6 @@
|
|
|
18871
18853
|
{
|
|
18872
18854
|
"$ref": "#/definitions/workflow.cancel-all"
|
|
18873
18855
|
},
|
|
18874
|
-
{
|
|
18875
|
-
"$ref": "#/definitions/workflow.evaluate"
|
|
18876
|
-
},
|
|
18877
18856
|
{
|
|
18878
18857
|
"$ref": "#/definitions/workflow.refresh"
|
|
18879
18858
|
},
|
|
@@ -18884,6 +18863,22 @@
|
|
|
18884
18863
|
},
|
|
18885
18864
|
"viewer-spec.SingleOperation": {
|
|
18886
18865
|
"anyOf": [
|
|
18866
|
+
{
|
|
18867
|
+
"additionalProperties": false,
|
|
18868
|
+
"properties": {
|
|
18869
|
+
"arguments": {
|
|
18870
|
+
"$ref": "#/definitions/app.get-persistent-data:input"
|
|
18871
|
+
},
|
|
18872
|
+
"name": {
|
|
18873
|
+
"$ref": "#/definitions/app.get-persistent-data"
|
|
18874
|
+
}
|
|
18875
|
+
},
|
|
18876
|
+
"required": [
|
|
18877
|
+
"name",
|
|
18878
|
+
"arguments"
|
|
18879
|
+
],
|
|
18880
|
+
"type": "object"
|
|
18881
|
+
},
|
|
18887
18882
|
{
|
|
18888
18883
|
"additionalProperties": false,
|
|
18889
18884
|
"properties": {
|
|
@@ -19668,6 +19663,25 @@
|
|
|
19668
19663
|
],
|
|
19669
19664
|
"type": "object"
|
|
19670
19665
|
},
|
|
19666
|
+
{
|
|
19667
|
+
"additionalProperties": false,
|
|
19668
|
+
"properties": {
|
|
19669
|
+
"arguments": {
|
|
19670
|
+
"$ref": "#/definitions/workflow.evaluate:input"
|
|
19671
|
+
},
|
|
19672
|
+
"name": {
|
|
19673
|
+
"$ref": "#/definitions/workflow.evaluate"
|
|
19674
|
+
}
|
|
19675
|
+
},
|
|
19676
|
+
"required": [
|
|
19677
|
+
"name",
|
|
19678
|
+
"arguments"
|
|
19679
|
+
],
|
|
19680
|
+
"type": "object"
|
|
19681
|
+
},
|
|
19682
|
+
{
|
|
19683
|
+
"$ref": "#/definitions/app.get-persistent-data"
|
|
19684
|
+
},
|
|
19671
19685
|
{
|
|
19672
19686
|
"$ref": "#/definitions/app.remove-persistent-data"
|
|
19673
19687
|
},
|
|
@@ -19832,6 +19846,9 @@
|
|
|
19832
19846
|
},
|
|
19833
19847
|
{
|
|
19834
19848
|
"$ref": "#/definitions/ui.confirm"
|
|
19849
|
+
},
|
|
19850
|
+
{
|
|
19851
|
+
"$ref": "#/definitions/workflow.evaluate"
|
|
19835
19852
|
}
|
|
19836
19853
|
]
|
|
19837
19854
|
},
|
|
@@ -19841,6 +19858,7 @@
|
|
|
19841
19858
|
"viewer.log-debug"
|
|
19842
19859
|
]
|
|
19843
19860
|
},
|
|
19861
|
+
"viewer.log-debug:input": {},
|
|
19844
19862
|
"viewer.publish-event": {
|
|
19845
19863
|
"description": "Publish an event with specified parameters \"name\" and \"arguments\". This command supports sending custom events (i.e. you use your own namespaced eventname) as well as built-in events. Mobile only.",
|
|
19846
19864
|
"enum": [
|
|
@@ -19874,6 +19892,7 @@
|
|
|
19874
19892
|
"workflow.evaluate:input": {
|
|
19875
19893
|
"$ref": "#/definitions/EvaluateWorkflowArgs"
|
|
19876
19894
|
},
|
|
19895
|
+
"workflow.evaluate:output": {},
|
|
19877
19896
|
"workflow.refresh": {
|
|
19878
19897
|
"description": "Refreshes (i.e. cancels and reruns) a workflow with the specified ID (corresponding to the workflow ID as configured in app.json, not the workflow's portal item ID). Mobile only.",
|
|
19879
19898
|
"enum": [
|