Skip to content

Commit

Permalink
update-expand-size
Browse files Browse the repository at this point in the history
  • Loading branch information
nimithajalal committed Jun 14, 2024
1 parent ac579d6 commit 28be50d
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion static/cliov3-spec-all.json
Original file line number Diff line number Diff line change
Expand Up @@ -1460,7 +1460,7 @@
"size": {
"allOf": [
{
"$ref": "#/components/schemas/Size"
"$ref": "#/components/schemas/expandSize"
}
],
"description": "Specifies the desired width and height for the final, expanded image. The dimensions of the desired image should be less than 4000px by 4000px.",
Expand Down Expand Up @@ -2189,6 +2189,28 @@
"required": ["width", "height"],
"title": "Size"
},
"expandSize": {
"properties": {
"width": {
"type": "integer",
"maximum": 4000,
"minimum": 1,
"title": "The width of the output image"
},
"height": {
"type": "integer",
"maximum": 4000,
"minimum": 1,
"title": "The height of the output image"
}
},
"type": "object",
"required": [
"width",
"height"
],
"title": "Size"
},
"StructureImageReference": {
"properties": {
"source": {
Expand Down

0 comments on commit 28be50d

Please sign in to comment.