station_crowding
Monitor real-time crowdedness levels across Singapore's MRT and LRT stations by train line, updated every 10 minutes to ensure informed commuting decisions.
Instructions
Get real-time MRT/LRT station crowdedness level for a particular train network line. Updates every 10 minutes.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
trainLine | Yes | Code of train network line (CCL, CEL, CGL, DTL, EWL, NEL, NSL, BPL, SLRT, PLRT, TEL) |
Input Schema (JSON Schema)
{
"properties": {
"trainLine": {
"description": "Code of train network line (CCL, CEL, CGL, DTL, EWL, NEL, NSL, BPL, SLRT, PLRT, TEL)",
"enum": [
"CCL",
"CEL",
"CGL",
"DTL",
"EWL",
"NEL",
"NSL",
"BPL",
"SLRT",
"PLRT",
"TEL"
],
"type": "string"
}
},
"required": [
"trainLine"
],
"type": "object"
}