mirror of
https://github.com/m-labs/artiq.git
synced 2024-12-19 00:16:29 +08:00
jsonschema: mirny: accept string enums for validating clk_sel
This commit is contained in:
parent
75efb8985c
commit
5f32cb7196
@ -364,17 +364,26 @@
|
||||
"minItems": 1,
|
||||
"maxItems": 1
|
||||
},
|
||||
"refclk": {
|
||||
"type": "number",
|
||||
"exclusiveMinimum": 0,
|
||||
"refclk": {
|
||||
"type": "number",
|
||||
"exclusiveMinimum": 0,
|
||||
"default": 100e6
|
||||
},
|
||||
"clk_sel": {
|
||||
"type": "integer",
|
||||
"minimum": 0,
|
||||
"maximum": 3,
|
||||
"default": 0
|
||||
}
|
||||
},
|
||||
"clk_sel": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "integer",
|
||||
"minimum": 0,
|
||||
"maximum": 3,
|
||||
"default": 0
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"enum": ["xo", "mmcx", "sma"],
|
||||
"default": "xo"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": ["ports"]
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user