Class: GtfsDf::Schema::Levels

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

Constant Summary collapse

SCHEMA =
{
  "level_id" => Polars::String,
  "level_index" => Polars::Float64,
  "level_name" => Polars::String
}.freeze
REQUIRED_FIELDS =
%w[level_id level_index].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