-- 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/lane-list", "description":"Structure definition of lane list", "type":"array", "items":{ "$ref":"#/$defs/lane" }, "$defs":{ "lane":{ "type":"object", "description":"Tollgate, equipped with points for video image information acquisition and identification device for moving vehicles, pedestrians, etc.", "properties" : { "TollgateID": { "$ref": "/schema/tollgate-list#/$defs/tollgate/properties/TollgateID" }, "LaneNo":{ "description":"Lane number", "type":"integer" }, "Name":{ "description":"Lane name", "maxLength":100, "type":"string" }, "Direction": { "description": "Lane direction", "$ref": "/schema/components#/$defs/hDirection" }, "Desc":{ "description":"Lane description", "type":"string" }, "MaxSpeed":{ "description":"Speed limit", "type":"integer" }, "CityPass":{ "description":"Code for the direction of entering and leaving the city, 1: enter the city; 2: out of the city; 3: mixed in and out of the city", "enum":[1,2,3] }, "ApeID": { "$ref": "/schema/ape-list#/$defs/ape/properties/ApeID" } }, "required":["TollgateID","LaneNo","Name","Direction"] } } }