@vertigis/viewer-spec 46.4.1 → 47.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -449,7 +449,7 @@
449
449
  },
450
450
  "AddAttachmentArgs": {
451
451
  "additionalProperties": false,
452
- "description": "Arguments for the \"edit.add-attachment\" command.",
452
+ "description": "Arguments for the \"edit.add-attachment\" command. Supported by both Web and Mobile.",
453
453
  "properties": {
454
454
  "contentType": {
455
455
  "description": "The MIME content type of the attachment.",
@@ -633,6 +633,17 @@
633
633
  ],
634
634
  "type": "object"
635
635
  },
636
+ "BackgroundLocationUpdatesArgs": {
637
+ "additionalProperties": false,
638
+ "description": "Arguments for the system.disable-background-location-updates command.",
639
+ "properties": {
640
+ "taskId": {
641
+ "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. Cannot be set to null, but if this argument is not provided, a preset default value will be used.",
642
+ "type": "string"
643
+ }
644
+ },
645
+ "type": "object"
646
+ },
636
647
  "CalculatePointArgs": {
637
648
  "additionalProperties": false,
638
649
  "description": "Arguments for the geometry.calculate-point operation.",
@@ -888,6 +899,31 @@
888
899
  ],
889
900
  "type": "object"
890
901
  },
902
+ "DeleteAttachmentArgs": {
903
+ "additionalProperties": false,
904
+ "description": "Arguments for the \"edit.delete-attachment\" command.",
905
+ "properties": {
906
+ "attachments": {
907
+ "description": "The attachment(s) to remove from the feature(s). This property can be populated with the title(s) or ID(s) of the attachments(s). Any and all matching attachments found on the input features will be deleted. Web only.",
908
+ "items": {
909
+ "type": "string"
910
+ },
911
+ "type": "array"
912
+ },
913
+ "features": {
914
+ "$ref": "#/definitions/Features",
915
+ "description": "The feature(s) to remove the attachment(s) from."
916
+ },
917
+ "gcxAttachment": {
918
+ "$ref": "@vertigis.arcgis-extensions.data.Attachment.Attachment",
919
+ "description": "The attachment to remove from the feature(s). Mobile only."
920
+ }
921
+ },
922
+ "required": [
923
+ "features"
924
+ ],
925
+ "type": "object"
926
+ },
891
927
  "DeleteGeometryArgs": {
892
928
  "additionalProperties": false,
893
929
  "description": "Arguments for the \"sketching.delete\" command.",
@@ -1322,6 +1358,25 @@
1322
1358
  ],
1323
1359
  "type": "string"
1324
1360
  },
1361
+ "EnableBackgroundLocationUpdateArgs": {
1362
+ "additionalProperties": false,
1363
+ "description": "Arguments for the system.enable-background-location-updates command.",
1364
+ "properties": {
1365
+ "androidNotificationMessage": {
1366
+ "description": "The message used in the sticky notification on Android.",
1367
+ "type": "string"
1368
+ },
1369
+ "androidNotificationTitle": {
1370
+ "description": "The title used in the sticky notification on Android. If null or an empty string, a default title will be used.",
1371
+ "type": "string"
1372
+ },
1373
+ "taskId": {
1374
+ "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. Cannot be set to null, but if this argument is not provided, a preset default value will be used.",
1375
+ "type": "string"
1376
+ }
1377
+ },
1378
+ "type": "object"
1379
+ },
1325
1380
  "ExportMapImageArgs": {
1326
1381
  "additionalProperties": false,
1327
1382
  "description": "Arguments for the \"map.export-image\" operation.",
@@ -3047,6 +3102,35 @@
3047
3102
  ],
3048
3103
  "type": "object"
3049
3104
  },
3105
+ "WebAddAttachmentArgs": {
3106
+ "additionalProperties": false,
3107
+ "description": "VertiGIS Studio Web's arguments for the \"edit.add-attachment\" command. Not supported by Mobile.",
3108
+ "properties": {
3109
+ "blobs": {
3110
+ "anyOf": [
3111
+ {
3112
+ "$ref": "File"
3113
+ },
3114
+ {
3115
+ "items": {
3116
+ "$ref": "File"
3117
+ },
3118
+ "type": "array"
3119
+ }
3120
+ ],
3121
+ "description": "The blob(s) that contains the file attachment(s). If multiple attachments are specified, all attachment will be added to the feature(s)."
3122
+ },
3123
+ "features": {
3124
+ "$ref": "#/definitions/Features",
3125
+ "description": "The feature(s) to add the attachment(s) to. If multiple features are specified, the attachment(s) will be added to all features."
3126
+ }
3127
+ },
3128
+ "required": [
3129
+ "blobs",
3130
+ "features"
3131
+ ],
3132
+ "type": "object"
3133
+ },
3050
3134
  "WebOpenUrlArgs": {
3051
3135
  "additionalProperties": false,
3052
3136
  "description": "VertiGIS Studio Web's arguments for the system.open-url command.",
@@ -3226,18 +3310,12 @@
3226
3310
  "debug-console.close"
3227
3311
  ]
3228
3312
  },
3229
- "debug-console.close:output": {
3230
- "type": "undefined"
3231
- },
3232
3313
  "debug-console.display": {
3233
3314
  "description": "Displays the Debug Console. Deprecated; use log-viewer.display instead.",
3234
3315
  "enum": [
3235
3316
  "debug-console.display"
3236
3317
  ]
3237
3318
  },
3238
- "debug-console.display:output": {
3239
- "type": "undefined"
3240
- },
3241
3319
  "drawing.set-sync": {
3242
3320
  "description": "Sets a value that determines whether drawings will be synced automatically across maps.",
3243
3321
  "enum": [
@@ -3254,7 +3332,14 @@
3254
3332
  ]
3255
3333
  },
3256
3334
  "edit.add-attachment:input": {
3257
- "$ref": "#/definitions/AddAttachmentArgs"
3335
+ "anyOf": [
3336
+ {
3337
+ "$ref": "#/definitions/AddAttachmentArgs"
3338
+ },
3339
+ {
3340
+ "$ref": "#/definitions/WebAddAttachmentArgs"
3341
+ }
3342
+ ]
3258
3343
  },
3259
3344
  "edit.add-feature": {
3260
3345
  "description": "Adds a feature to a particular layer. `Feature[]` and `EditCommandArgs` are not supported on Mobile.",
@@ -3278,6 +3363,15 @@
3278
3363
  }
3279
3364
  ]
3280
3365
  },
3366
+ "edit.delete-attachment": {
3367
+ "description": "Deletes attachments from feature(s).",
3368
+ "enum": [
3369
+ "edit.delete-attachment"
3370
+ ]
3371
+ },
3372
+ "edit.delete-attachment:input": {
3373
+ "$ref": "#/definitions/DeleteAttachmentArgs"
3374
+ },
3281
3375
  "edit.delete-features": {
3282
3376
  "description": "Deletes the given feature or features from their feature sources. `EditCommandArgs` is not supported on Mobile.",
3283
3377
  "enum": [
@@ -11627,9 +11721,6 @@
11627
11721
  "geocode.count:input": {
11628
11722
  "$ref": "#/definitions/GeocodeArgs"
11629
11723
  },
11630
- "geocode.count:output": {
11631
- "type": "undefined"
11632
- },
11633
11724
  "geocode.geocode": {
11634
11725
  "description": "Finds one or more locations corresponding to an address.",
11635
11726
  "enum": [
@@ -11639,9 +11730,6 @@
11639
11730
  "geocode.geocode:input": {
11640
11731
  "$ref": "#/definitions/GeocodeArgs"
11641
11732
  },
11642
- "geocode.geocode:output": {
11643
- "type": "undefined"
11644
- },
11645
11733
  "geocode.reverse-geocode": {
11646
11734
  "description": "Finds the address at a particular location. The geocoder must have the supportsReverseGeocoding capability.",
11647
11735
  "enum": [
@@ -11651,9 +11739,6 @@
11651
11739
  "geocode.reverse-geocode:input": {
11652
11740
  "$ref": "#/definitions/ReverseGeocodeArgs"
11653
11741
  },
11654
- "geocode.reverse-geocode:output": {
11655
- "type": "undefined"
11656
- },
11657
11742
  "geocode.suggest": {
11658
11743
  "description": "Suggests matching addresses to search for based on some input text. The geocoder must have the supportsSuggest capability.",
11659
11744
  "enum": [
@@ -11663,9 +11748,6 @@
11663
11748
  "geocode.suggest:input": {
11664
11749
  "$ref": "#/definitions/SuggestArgs"
11665
11750
  },
11666
- "geocode.suggest:output": {
11667
- "type": "undefined"
11668
- },
11669
11751
  "geolocation.auto-recenter": {
11670
11752
  "description": "Centers the map on the user's current location and keeps the location centered as it moves around. The maps parameter is only supported in Geocortex Mobile Viewer. In Geocortex Web Viewer, all maps are affected.",
11671
11753
  "enum": [
@@ -11745,9 +11827,6 @@
11745
11827
  "geolocation.get-active-source:input": {
11746
11828
  "$ref": "#/definitions/GnssDeviceConnectionInfo"
11747
11829
  },
11748
- "geolocation.get-active-source:output": {
11749
- "type": "undefined"
11750
- },
11751
11830
  "geolocation.get-all-sources": {
11752
11831
  "description": "Gets the list of currently available geolocation sources. Includes integrated receivers, GNSS devices, and emulators.",
11753
11832
  "enum": [
@@ -11781,9 +11860,6 @@
11781
11860
  "geolocation.get-location-permissions-enabled:input": {
11782
11861
  "type": "boolean"
11783
11862
  },
11784
- "geolocation.get-location-permissions-enabled:output": {
11785
- "type": "undefined"
11786
- },
11787
11863
  "geolocation.get-position": {
11788
11864
  "description": "Returns the current user position. This Operation can block while the user is prompted for permission, as such it is considered best practice not to perform this during startup.",
11789
11865
  "enum": [
@@ -12043,18 +12119,12 @@
12043
12119
  "log-viewer.close"
12044
12120
  ]
12045
12121
  },
12046
- "log-viewer.close:output": {
12047
- "type": "undefined"
12048
- },
12049
12122
  "log-viewer.display": {
12050
12123
  "description": "Displays the Log Viewer.",
12051
12124
  "enum": [
12052
12125
  "log-viewer.display"
12053
12126
  ]
12054
12127
  },
12055
- "log-viewer.display:output": {
12056
- "type": "undefined"
12057
- },
12058
12128
  "map.disable-map-click": {
12059
12129
  "description": "Disables the click event handler on the map, so that if the user clicks on the map, the configured handler will not be invoked.",
12060
12130
  "enum": [
@@ -13185,6 +13255,24 @@
13185
13255
  "sketching.undo:input": {
13186
13256
  "$ref": "#/definitions/HasMaps"
13187
13257
  },
13258
+ "system.disable-background-location-updates": {
13259
+ "description": "Disables background location updates.",
13260
+ "enum": [
13261
+ "system.disable-background-location-updates"
13262
+ ]
13263
+ },
13264
+ "system.disable-background-location-updates:input": {
13265
+ "$ref": "#/definitions/BackgroundLocationUpdatesArgs"
13266
+ },
13267
+ "system.enable-background-location-updates": {
13268
+ "description": "Enables background location updates. While enabled, the application will continue to execute code while running in the background. Note for iOS: If the user has not accepted location permissions for the app, no code will be allowed to execute in the background.",
13269
+ "enum": [
13270
+ "system.enable-background-location-updates"
13271
+ ]
13272
+ },
13273
+ "system.enable-background-location-updates:input": {
13274
+ "$ref": "#/definitions/EnableBackgroundLocationUpdateArgs"
13275
+ },
13188
13276
  "system.keep-screen-on": {
13189
13277
  "description": "Allows to control if the screen should be kept on. Passing true as parameter will keep the screen on, ignoring possible system settings for screen timeouts. Passing false as parameter will make the app respect system settings again.",
13190
13278
  "enum": [
@@ -13480,6 +13568,22 @@
13480
13568
  ],
13481
13569
  "type": "object"
13482
13570
  },
13571
+ {
13572
+ "additionalProperties": false,
13573
+ "properties": {
13574
+ "arguments": {
13575
+ "$ref": "#/definitions/edit.delete-attachment:input"
13576
+ },
13577
+ "name": {
13578
+ "$ref": "#/definitions/edit.delete-attachment"
13579
+ }
13580
+ },
13581
+ "required": [
13582
+ "name",
13583
+ "arguments"
13584
+ ],
13585
+ "type": "object"
13586
+ },
13483
13587
  {
13484
13588
  "additionalProperties": false,
13485
13589
  "properties": {
@@ -13560,6 +13664,70 @@
13560
13664
  ],
13561
13665
  "type": "object"
13562
13666
  },
13667
+ {
13668
+ "additionalProperties": false,
13669
+ "properties": {
13670
+ "arguments": {
13671
+ "$ref": "#/definitions/geocode.count:input"
13672
+ },
13673
+ "name": {
13674
+ "$ref": "#/definitions/geocode.count"
13675
+ }
13676
+ },
13677
+ "required": [
13678
+ "name",
13679
+ "arguments"
13680
+ ],
13681
+ "type": "object"
13682
+ },
13683
+ {
13684
+ "additionalProperties": false,
13685
+ "properties": {
13686
+ "arguments": {
13687
+ "$ref": "#/definitions/geocode.geocode:input"
13688
+ },
13689
+ "name": {
13690
+ "$ref": "#/definitions/geocode.geocode"
13691
+ }
13692
+ },
13693
+ "required": [
13694
+ "name",
13695
+ "arguments"
13696
+ ],
13697
+ "type": "object"
13698
+ },
13699
+ {
13700
+ "additionalProperties": false,
13701
+ "properties": {
13702
+ "arguments": {
13703
+ "$ref": "#/definitions/geocode.reverse-geocode:input"
13704
+ },
13705
+ "name": {
13706
+ "$ref": "#/definitions/geocode.reverse-geocode"
13707
+ }
13708
+ },
13709
+ "required": [
13710
+ "name",
13711
+ "arguments"
13712
+ ],
13713
+ "type": "object"
13714
+ },
13715
+ {
13716
+ "additionalProperties": false,
13717
+ "properties": {
13718
+ "arguments": {
13719
+ "$ref": "#/definitions/geocode.suggest:input"
13720
+ },
13721
+ "name": {
13722
+ "$ref": "#/definitions/geocode.suggest"
13723
+ }
13724
+ },
13725
+ "required": [
13726
+ "name",
13727
+ "arguments"
13728
+ ],
13729
+ "type": "object"
13730
+ },
13563
13731
  {
13564
13732
  "additionalProperties": false,
13565
13733
  "properties": {
@@ -13624,6 +13792,38 @@
13624
13792
  ],
13625
13793
  "type": "object"
13626
13794
  },
13795
+ {
13796
+ "additionalProperties": false,
13797
+ "properties": {
13798
+ "arguments": {
13799
+ "$ref": "#/definitions/geolocation.get-active-source:input"
13800
+ },
13801
+ "name": {
13802
+ "$ref": "#/definitions/geolocation.get-active-source"
13803
+ }
13804
+ },
13805
+ "required": [
13806
+ "name",
13807
+ "arguments"
13808
+ ],
13809
+ "type": "object"
13810
+ },
13811
+ {
13812
+ "additionalProperties": false,
13813
+ "properties": {
13814
+ "arguments": {
13815
+ "$ref": "#/definitions/geolocation.get-location-permissions-enabled:input"
13816
+ },
13817
+ "name": {
13818
+ "$ref": "#/definitions/geolocation.get-location-permissions-enabled"
13819
+ }
13820
+ },
13821
+ "required": [
13822
+ "name",
13823
+ "arguments"
13824
+ ],
13825
+ "type": "object"
13826
+ },
13627
13827
  {
13628
13828
  "additionalProperties": false,
13629
13829
  "properties": {
@@ -14744,6 +14944,38 @@
14744
14944
  ],
14745
14945
  "type": "object"
14746
14946
  },
14947
+ {
14948
+ "additionalProperties": false,
14949
+ "properties": {
14950
+ "arguments": {
14951
+ "$ref": "#/definitions/system.disable-background-location-updates:input"
14952
+ },
14953
+ "name": {
14954
+ "$ref": "#/definitions/system.disable-background-location-updates"
14955
+ }
14956
+ },
14957
+ "required": [
14958
+ "name",
14959
+ "arguments"
14960
+ ],
14961
+ "type": "object"
14962
+ },
14963
+ {
14964
+ "additionalProperties": false,
14965
+ "properties": {
14966
+ "arguments": {
14967
+ "$ref": "#/definitions/system.enable-background-location-updates:input"
14968
+ },
14969
+ "name": {
14970
+ "$ref": "#/definitions/system.enable-background-location-updates"
14971
+ }
14972
+ },
14973
+ "required": [
14974
+ "name",
14975
+ "arguments"
14976
+ ],
14977
+ "type": "object"
14978
+ },
14747
14979
  {
14748
14980
  "additionalProperties": false,
14749
14981
  "properties": {
@@ -14973,6 +15205,12 @@
14973
15205
  {
14974
15206
  "$ref": "#/definitions/basemap.set"
14975
15207
  },
15208
+ {
15209
+ "$ref": "#/definitions/debug-console.close"
15210
+ },
15211
+ {
15212
+ "$ref": "#/definitions/debug-console.display"
15213
+ },
14976
15214
  {
14977
15215
  "$ref": "#/definitions/drawing.set-sync"
14978
15216
  },
@@ -14982,6 +15220,9 @@
14982
15220
  {
14983
15221
  "$ref": "#/definitions/edit.add-feature"
14984
15222
  },
15223
+ {
15224
+ "$ref": "#/definitions/edit.delete-attachment"
15225
+ },
14985
15226
  {
14986
15227
  "$ref": "#/definitions/edit.delete-features"
14987
15228
  },
@@ -14997,6 +15238,18 @@
14997
15238
  {
14998
15239
  "$ref": "#/definitions/file.open-file"
14999
15240
  },
15241
+ {
15242
+ "$ref": "#/definitions/geocode.count"
15243
+ },
15244
+ {
15245
+ "$ref": "#/definitions/geocode.geocode"
15246
+ },
15247
+ {
15248
+ "$ref": "#/definitions/geocode.reverse-geocode"
15249
+ },
15250
+ {
15251
+ "$ref": "#/definitions/geocode.suggest"
15252
+ },
15000
15253
  {
15001
15254
  "$ref": "#/definitions/geolocation.auto-recenter"
15002
15255
  },
@@ -15018,6 +15271,12 @@
15018
15271
  {
15019
15272
  "$ref": "#/definitions/geolocation.display-location"
15020
15273
  },
15274
+ {
15275
+ "$ref": "#/definitions/geolocation.get-active-source"
15276
+ },
15277
+ {
15278
+ "$ref": "#/definitions/geolocation.get-location-permissions-enabled"
15279
+ },
15021
15280
  {
15022
15281
  "$ref": "#/definitions/geolocation.turn-off-geolocation"
15023
15282
  },
@@ -15069,6 +15328,12 @@
15069
15328
  {
15070
15329
  "$ref": "#/definitions/layer-presets.apply"
15071
15330
  },
15331
+ {
15332
+ "$ref": "#/definitions/log-viewer.close"
15333
+ },
15334
+ {
15335
+ "$ref": "#/definitions/log-viewer.display"
15336
+ },
15072
15337
  {
15073
15338
  "$ref": "#/definitions/map.disable-map-click"
15074
15339
  },
@@ -15243,6 +15508,12 @@
15243
15508
  {
15244
15509
  "$ref": "#/definitions/sketching.undo"
15245
15510
  },
15511
+ {
15512
+ "$ref": "#/definitions/system.disable-background-location-updates"
15513
+ },
15514
+ {
15515
+ "$ref": "#/definitions/system.enable-background-location-updates"
15516
+ },
15246
15517
  {
15247
15518
  "$ref": "#/definitions/system.keep-screen-on"
15248
15519
  },
@@ -15362,86 +15633,6 @@
15362
15633
  ],
15363
15634
  "type": "object"
15364
15635
  },
15365
- {
15366
- "additionalProperties": false,
15367
- "properties": {
15368
- "arguments": {
15369
- "$ref": "#/definitions/geocode.count:input"
15370
- },
15371
- "name": {
15372
- "$ref": "#/definitions/geocode.count"
15373
- }
15374
- },
15375
- "required": [
15376
- "name",
15377
- "arguments"
15378
- ],
15379
- "type": "object"
15380
- },
15381
- {
15382
- "additionalProperties": false,
15383
- "properties": {
15384
- "arguments": {
15385
- "$ref": "#/definitions/geocode.geocode:input"
15386
- },
15387
- "name": {
15388
- "$ref": "#/definitions/geocode.geocode"
15389
- }
15390
- },
15391
- "required": [
15392
- "name",
15393
- "arguments"
15394
- ],
15395
- "type": "object"
15396
- },
15397
- {
15398
- "additionalProperties": false,
15399
- "properties": {
15400
- "arguments": {
15401
- "$ref": "#/definitions/geocode.reverse-geocode:input"
15402
- },
15403
- "name": {
15404
- "$ref": "#/definitions/geocode.reverse-geocode"
15405
- }
15406
- },
15407
- "required": [
15408
- "name",
15409
- "arguments"
15410
- ],
15411
- "type": "object"
15412
- },
15413
- {
15414
- "additionalProperties": false,
15415
- "properties": {
15416
- "arguments": {
15417
- "$ref": "#/definitions/geocode.suggest:input"
15418
- },
15419
- "name": {
15420
- "$ref": "#/definitions/geocode.suggest"
15421
- }
15422
- },
15423
- "required": [
15424
- "name",
15425
- "arguments"
15426
- ],
15427
- "type": "object"
15428
- },
15429
- {
15430
- "additionalProperties": false,
15431
- "properties": {
15432
- "arguments": {
15433
- "$ref": "#/definitions/geolocation.get-active-source:input"
15434
- },
15435
- "name": {
15436
- "$ref": "#/definitions/geolocation.get-active-source"
15437
- }
15438
- },
15439
- "required": [
15440
- "name",
15441
- "arguments"
15442
- ],
15443
- "type": "object"
15444
- },
15445
15636
  {
15446
15637
  "additionalProperties": false,
15447
15638
  "properties": {
@@ -15458,22 +15649,6 @@
15458
15649
  ],
15459
15650
  "type": "object"
15460
15651
  },
15461
- {
15462
- "additionalProperties": false,
15463
- "properties": {
15464
- "arguments": {
15465
- "$ref": "#/definitions/geolocation.get-location-permissions-enabled:input"
15466
- },
15467
- "name": {
15468
- "$ref": "#/definitions/geolocation.get-location-permissions-enabled"
15469
- }
15470
- },
15471
- "required": [
15472
- "name",
15473
- "arguments"
15474
- ],
15475
- "type": "object"
15476
- },
15477
15652
  {
15478
15653
  "additionalProperties": false,
15479
15654
  "properties": {
@@ -16046,39 +16221,15 @@
16046
16221
  {
16047
16222
  "$ref": "#/definitions/basemap.get-current"
16048
16223
  },
16049
- {
16050
- "$ref": "#/definitions/debug-console.close"
16051
- },
16052
- {
16053
- "$ref": "#/definitions/debug-console.display"
16054
- },
16055
16224
  {
16056
16225
  "$ref": "#/definitions/file.pick-file"
16057
16226
  },
16058
- {
16059
- "$ref": "#/definitions/geocode.count"
16060
- },
16061
- {
16062
- "$ref": "#/definitions/geocode.geocode"
16063
- },
16064
- {
16065
- "$ref": "#/definitions/geocode.reverse-geocode"
16066
- },
16067
- {
16068
- "$ref": "#/definitions/geocode.suggest"
16069
- },
16070
- {
16071
- "$ref": "#/definitions/geolocation.get-active-source"
16072
- },
16073
16227
  {
16074
16228
  "$ref": "#/definitions/geolocation.get-all-sources"
16075
16229
  },
16076
16230
  {
16077
16231
  "$ref": "#/definitions/geolocation.get-current-state"
16078
16232
  },
16079
- {
16080
- "$ref": "#/definitions/geolocation.get-location-permissions-enabled"
16081
- },
16082
16233
  {
16083
16234
  "$ref": "#/definitions/geolocation.get-position"
16084
16235
  },
@@ -16094,12 +16245,6 @@
16094
16245
  {
16095
16246
  "$ref": "#/definitions/geometry.remove-point"
16096
16247
  },
16097
- {
16098
- "$ref": "#/definitions/log-viewer.close"
16099
- },
16100
- {
16101
- "$ref": "#/definitions/log-viewer.display"
16102
- },
16103
16248
  {
16104
16249
  "$ref": "#/definitions/map.export-image"
16105
16250
  },