Class: GtfsDf::Schema::StopAreas

Inherits:
BaseGtfsTable show all
Defined in:
lib/gtfs_df/schema/stop_areas.rb

Constant Summary collapse

SCHEMA =
{
  "stop_area_id" => Polars::String,
  "stop_area_name" => Polars::String,
  "stop_area_type" => Polars::String,
  "parent_stop_area_id" => Polars::String
}.freeze
REQUIRED_FIELDS =
%w[
  stop_area_id
  stop_area_name
].freeze

Instance Attribute Summary

Attributes inherited from BaseGtfsTable

#df, #validator

Method Summary

Methods inherited from BaseGtfsTable

#dataframe, empty_dataframe, #errors, #fields, #initialize, time_fields, #valid?

Constructor Details

This class inherits a constructor from GtfsDf::BaseGtfsTable