Class: GtfsDf::Schema::FareLegJoinRules

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

Constant Summary collapse

SCHEMA =
{
  "fare_leg_join_rule_id" => Polars::String,
  "from_leg_group_id" => Polars::String,
  "to_leg_group_id" => Polars::String,
  "network_id" => Polars::String
}.freeze
REQUIRED_FIELDS =
%w[
  fare_leg_join_rule_id
  from_leg_group_id
  to_leg_group_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