XML

Railway Vehicle Types - XML

Railway vehicle types are classified based on operating speed, service patterns, legal regulations, and physical structure. Various types exist, from ultra-high-speed railways like the Shinkansen to urban transit systems such as streetcars and monorails. In Japan, they are classified under two legal frameworks: the Railway Business Act and the Track Act, with vehicles developed and operated according to their respective characteristics.

railway shinkansen limited express tram subway monorail transportation rolling stock
<?xml version="1.0" encoding="UTF-8"?>
<items>
  <item>
    <code>01</code>
    <slug>shinkansen</slug>
    <name>Shinkansen</name>
    <description>High-speed railway operating at maximum speeds of 200 km/h or higher.</description>
    <category>High-speed Railway</category>
    <maxSpeed>320 km/h</maxSpeed>
  </item>
  <item>
    <code>02</code>
    <slug>limited-express</slug>
    <name>Limited Express</name>
    <description>The fastest conventional line trains that stop only at major stations.</description>
    <category>Conventional Line</category>
    <maxSpeed>130 km/h</maxSpeed>
  </item>
  <item>
    <code>03</code>
    <slug>express</slug>
    <name>Express</name>
    <description>Rapid service trains that stop only at major stations.</description>
    <category>Conventional Line</category>
    <maxSpeed></maxSpeed>
  </item>
  <item>
    <code>04</code>
    <slug>rapid</slug>
    <name>Rapid</name>
    <description>Semi-rapid trains that skip some stations.</description>
    <category>Conventional Line</category>
    <maxSpeed></maxSpeed>
  </item>
  <item>
    <code>05</code>
    <slug>local</slug>
    <name>Local Train</name>
    <description>Trains that stop at every station.</description>
    <category>Conventional Line</category>
    <maxSpeed></maxSpeed>
  </item>
  <item>
    <code>06</code>
    <slug>subway</slug>
    <name>Subway/Metro</name>
    <description>Railway operating underground or on elevated tracks in urban areas.</description>
    <category>Urban Transit</category>
    <maxSpeed></maxSpeed>
  </item>
  <item>
    <code>07</code>
    <slug>tram</slug>
    <name>Tram/Streetcar</name>
    <description>Rail-based transit running on streets and roads.</description>
    <category>Urban Transit</category>
    <maxSpeed></maxSpeed>
  </item>
  <item>
    <code>08</code>
    <slug>monorail</slug>
    <name>Monorail</name>
    <description>Railway running on a single rail.</description>
    <category>Urban Transit</category>
    <maxSpeed></maxSpeed>
  </item>
  <item>
    <code>09</code>
    <slug>agt</slug>
    <name>Automated Guideway Transit (AGT)</name>
    <description>Small-scale automated railway system.</description>
    <category>Urban Transit</category>
    <maxSpeed></maxSpeed>
  </item>
  <item>
    <code>10</code>
    <slug>maglev</slug>
    <name>Maglev (Magnetic Levitation)</name>
    <description>Ultra-high-speed railway using magnetic levitation and propulsion.</description>
    <category>Ultra-high-speed Railway</category>
    <maxSpeed>500 km/h</maxSpeed>
  </item>
</items>