JSON

Types of Public Transportation - JSON

Public transportation refers to transportation services available for use by the general public, operating across a wide range from urban to rural areas. These are classified by transportation mode and operation method, including rail systems (trains, subways, light rail), road systems (buses, taxis), water systems (ferries), and air systems (airplanes). These transportation modes play essential roles in modern society by reducing environmental impact, alleviating traffic congestion, and improving mobility convenience.

public transport transportation railway bus taxi ferry airplane mobility
[
  {
    "code": "01",
    "slug": "train",
    "name": "Train / Railway",
    "description": "Public transportation that runs on rails.",
    "category": "Rail System"
  },
  {
    "code": "02",
    "slug": "subway-metro",
    "name": "Subway / Metro",
    "description": "High-speed railway running underground or on elevated tracks in urban areas.",
    "category": "Rail System"
  },
  {
    "code": "03",
    "slug": "light-rail-tram",
    "name": "Light Rail / Tram",
    "description": "Medium-capacity rail transport running on streets or dedicated tracks.",
    "category": "Rail System"
  },
  {
    "code": "04",
    "slug": "bus",
    "name": "Bus",
    "description": "The most common form of public transportation running on roads.",
    "category": "Road System"
  },
  {
    "code": "05",
    "slug": "taxi",
    "name": "Taxi",
    "description": "Individual transport service operated according to passenger demand.",
    "category": "Road System"
  },
  {
    "code": "06",
    "slug": "trolleybus",
    "name": "Trolleybus",
    "description": "Electric bus powered by overhead wires.",
    "category": "Road System"
  },
  {
    "code": "07",
    "slug": "ferry",
    "name": "Ferry",
    "description": "Public transportation that navigates on water.",
    "category": "Water System"
  },
  {
    "code": "08",
    "slug": "water-taxi",
    "name": "Water Taxi",
    "description": "On-demand transport service operating on water.",
    "category": "Water System"
  },
  {
    "code": "09",
    "slug": "airplane",
    "name": "Airplane",
    "description": "Aerial transportation enabling long-distance, high-speed travel.",
    "category": "Air System"
  },
  {
    "code": "10",
    "slug": "monorail",
    "name": "Monorail",
    "description": "Railway system running on a single track beam.",
    "category": "Rail System"
  }
]