Class: GtfsDf::Schema::RiderCategories

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

Constant Summary collapse

SCHEMA =
{
  "rider_category_id" => Polars::String,
  "rider_category_name" => Polars::String,
  "rider_category_description" => Polars::String
}.freeze
REQUIRED_FIELDS =
%w[
  rider_category_id
  rider_category_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