-- JSON module extracted from ITU-T H.627.3 (12/2022)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "http://www.itu.int/schema/video-slice-list",
"description": "Structure definition of video slice acquisition list, video slice acquisition refers to the object that combines video slices and associated motor vehicles, non-motor vehicles, etc.",
"type": "array",
"items": {
"$ref": "#/$defs/videoSlice"
},
"$defs": {
"videoSlice": {
"type": "object",
"description": "Video slice content definition",
"properties": {
"VideoSliceInfo": {
"$ref": "/schema/video-slice-info-list#/$defs/videoSliceInfo"
},
"MotorVehicleListObject": {
"$ref": "/schema/motor-vehicle-list"
},
"NonMotorVehicleListObject": {
"$ref": "/schema/nonmotor-vehicle-list"
}
},
"required": [ "VideoSliceInfo" ]
}
}
}