Width/height ratio of an image or video. Used by clients to reserve layout space before media loads and to choose appropriate display dimensions.
Properties
View raw schema
{
"type": "object",
"required": [
"width",
"height"
],
"properties": {
"width": {
"type": "integer",
"minimum": 1
},
"height": {
"type": "integer",
"minimum": 1
}
},
"description": "Width/height ratio of an image or video. Used by clients to reserve layout space before media loads and to choose appropriate display dimensions."
}