-- 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/image-list", "description":"Structure definition of the image acquisition list, which are objects that combine images with associated, motor vehicles, non-motor vehicles, etc.", "type":"array", "items":{ "$ref":"#/$defs/image" }, "$defs":{ "image":{ "type":"object", "description":"Image content definition", "properties" : { "ImageInfo":{ "$ref":"./image-info-list.json#/$defs/imageInfo" }, "MotorVehicleListObject":{ "$ref":"./motor-vehicle-list.json" }, "NonMotorVehicleListObject": { "$ref": "./nonmotor-vehicle-list.json" } }, "required":["ImageInfo"] } } }