Skip to content

Commit db72e30

Browse files
committedMar 3, 2025
update schema
1 parent 16888ba commit db72e30

File tree

1 file changed

+65
-7
lines changed

1 file changed

+65
-7
lines changed
 

‎UDIGrammarSchema.json

+65-7
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,8 @@
6969
"y",
7070
"y2",
7171
"color",
72-
"stroke"
72+
"stroke",
73+
"opacity"
7374
],
7475
"type": "string"
7576
},
@@ -139,12 +140,6 @@
139140
"binby": {
140141
"additionalProperties": false,
141142
"properties": {
142-
"bin_end": {
143-
"type": "string"
144-
},
145-
"bin_start": {
146-
"type": "string"
147-
},
148143
"bins": {
149144
"type": "number"
150145
},
@@ -153,6 +148,18 @@
153148
},
154149
"nice": {
155150
"type": "boolean"
151+
},
152+
"output": {
153+
"additionalProperties": false,
154+
"properties": {
155+
"bin_end": {
156+
"type": "string"
157+
},
158+
"bin_start": {
159+
"type": "string"
160+
}
161+
},
162+
"type": "object"
156163
}
157164
},
158165
"required": [
@@ -215,6 +222,9 @@
215222
},
216223
{
217224
"$ref": "#/definitions/Filter"
225+
},
226+
{
227+
"$ref": "#/definitions/KDE"
218228
}
219229
],
220230
"description": "TODO: Description"
@@ -1040,6 +1050,54 @@
10401050
],
10411051
"type": "object"
10421052
},
1053+
"KDE": {
1054+
"additionalProperties": false,
1055+
"description": "TODO: Description",
1056+
"properties": {
1057+
"in": {
1058+
"description": "TODO: Description",
1059+
"type": "string"
1060+
},
1061+
"kde": {
1062+
"additionalProperties": false,
1063+
"properties": {
1064+
"bandwidth": {
1065+
"type": "number"
1066+
},
1067+
"field": {
1068+
"type": "string"
1069+
},
1070+
"output": {
1071+
"additionalProperties": false,
1072+
"properties": {
1073+
"density": {
1074+
"type": "string"
1075+
},
1076+
"sample": {
1077+
"type": "string"
1078+
}
1079+
},
1080+
"type": "object"
1081+
},
1082+
"samples": {
1083+
"type": "number"
1084+
}
1085+
},
1086+
"required": [
1087+
"field"
1088+
],
1089+
"type": "object"
1090+
},
1091+
"out": {
1092+
"description": "TODO: Description",
1093+
"type": "string"
1094+
}
1095+
},
1096+
"required": [
1097+
"kde"
1098+
],
1099+
"type": "object"
1100+
},
10431101
"LineEncodingOptions": {
10441102
"description": "TODO: Description",
10451103
"enum": [

0 commit comments

Comments
 (0)
Please sign in to comment.