mirror of
https://github.com/jwetzell/showbridge-go.git
synced 2026-04-27 05:15:47 +00:00
fix missing properties on parse processors
This commit is contained in:
@@ -93,6 +93,17 @@
|
|||||||
"type": {
|
"type": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"const": "float.parse"
|
"const": "float.parse"
|
||||||
|
},
|
||||||
|
"params": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"bitSize": {
|
||||||
|
"type": "integer",
|
||||||
|
"enum": [32, 64],
|
||||||
|
"default": 64
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"additionalProperties": false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": ["type"],
|
"required": ["type"],
|
||||||
@@ -262,6 +273,22 @@
|
|||||||
"type": {
|
"type": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"const": "int.parse"
|
"const": "int.parse"
|
||||||
|
},
|
||||||
|
"params": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"base": {
|
||||||
|
"type": "integer",
|
||||||
|
"enum": [0,2, 8, 10, 16],
|
||||||
|
"default": 10
|
||||||
|
},
|
||||||
|
"bitSize": {
|
||||||
|
"type": "integer",
|
||||||
|
"enum": [0, 8, 16, 32, 64],
|
||||||
|
"default": 64
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"additionalProperties": false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": ["type"],
|
"required": ["type"],
|
||||||
|
|||||||
Reference in New Issue
Block a user