Schema flow_video_raw.json
Show original (referenced schemas with $ref)
{
"$schema": "http://json-schema.org/draft-04/schema#",
"allOf": [
{ },
{
"properties": {
"components": {
"description": "Array of objects describing the components",
"items": {
"properties": {
"bit_depth": {
"description": "Number of bits used to describe each sample",
"type": "integer"
},
"height": {
"description": "Height of this component in pixels",
"type": "integer"
},
"name": {
"description": "Name of this component",
"enum": [
"Y",
"Cb",
"Cr",
"I",
"Ct",
"Cp",
"A",
"R",
"G",
"B",
"DepthMap"
],
"type": "string"
},
"width": {
"description": "Width of this component in pixels",
"type": "integer"
}
},
"required": [
"name",
"width",