Skip to content

Commit

Permalink
Fixed schema issue in HDMIPreviewOptions
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinshahfws committed Nov 9, 2023
1 parent 86a759c commit daee696
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions src/openrpc/hdmi-input.json
Original file line number Diff line number Diff line change
Expand Up @@ -191,8 +191,8 @@
"dimensions": {
"x": 40,
"y": 50,
"w": 100,
"h": 100
"width": 100,
"height": 100
},
"holePunch": true
}
Expand Down Expand Up @@ -221,7 +221,10 @@
}
}
],
"result": null
"result": {
"name": "ports",
"value": null
}
}
]
},
Expand Down Expand Up @@ -641,15 +644,16 @@
"if": {
"properties": {
"holePunch": {
"type": "boolean",
"const": true
}
}
},
"then": {
"properties": {
"required": [
"dimensions"
]
"dimensions" : {
"$ref": "#/components/schemas/HDMIVideoDimension"
}
}
}
},
Expand Down

0 comments on commit daee696

Please sign in to comment.