{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "ewbNo": { "type": "number", "description": "Ewaybill Number" }, "vehicleNo": { "type": "string", "minLength": 7, "maxLength": 15, "description": "Vehicle Number" }, "vehicleType": { "type": "string", "description": "Vehicle Type" }, "fromPlace": { "type": "string", "maxLength": 50, "description": "From Place" }, "fromState": { "type": "integer", "maximum": 99, "description": "From State" }, "reasonCode": { "type": "string", "maxLength": 1, "minLength": 1, "description": "Reason Code" }, "reasonRem": { "type": "string", "maxLength": 50, "description": "Remarks" }, "transDocNo": { "type": "string", "maxLength": 15, "description": "Transport Document Number" }, "transDocDate": { "type": "string", "pattern": "[0-3][0-9]/[0-1][0-9]/[2][0][1-2][0-9]", "description": "Transport Document Date" }, "transMode": { "type": "string", "description": "Transport Mode" } }, "required": [ "fromPlace", "fromState", "reasonCode", "reasonRem", "transMode" ] }