Class: GtfsDf::Schema::StopAttributes

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

Constant Summary collapse

SCHEMA =
{
  "stop_id" => Polars::String,
  "wheelchair_boarding" => Polars::Int64,
  "bikes_allowed" => Polars::Int64
}.freeze
REQUIRED_FIELDS =
%w[
  stop_id
].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