You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/json_schema.json
+13-4Lines changed: 13 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1290,10 +1290,19 @@
1290
1290
"description": "Set how frequency values should be displayed",
1291
1291
"properties": {
1292
1292
"ndigits": {
1293
-
"type": "integer",
1294
-
"description": "Set the number of digits to keep after the decimal point when formatting frequency values\nA positive value will show the frequency in GHz with decimal\n-1 will show the frequency in MHz",
1295
-
"minimum": -1,
1296
-
"maximum": 9,
1293
+
"description": "Set the number of decimal places to display when formatting frequency values",
1294
+
"oneOf": [
1295
+
{
1296
+
"type": "integer",
1297
+
"minimum": 0,
1298
+
"maximum": 9,
1299
+
"description": "Integer value displays the frequency in GHz with specified decimal places"
1300
+
},
1301
+
{
1302
+
"type": "null",
1303
+
"description": "Null value display the frequency as integer MHz"
0 commit comments