Hello everyone - Currently trying to finish building a network for public transit using GTFS data. I have:
agency.txt | calendar.txt | calendar_dates.txt | routes.txt | shapes.txt | stop_times.txt | stops.txt | trips.txt |
Which are all clean, and formatted correctly. The stop_times.txt file format specifically looks like this:

Building the network and everything is fine, but when I get to trying to setup the LineVariantElements edges to make use of the stop_times.txt it isn't an option. I had a peek into the attribute table of LineVariantElements and everything was built correctly according to the documentation. When configuring the new Network Dataset prior to building it I am unable to make use of the public transit data when building the cost for a new travel mode.
I came across "The GTFS To Public Transit Data Model tool incorrectly reports errors..." but that seemed to point in the direction of missing stop times which I don't have (I ran a quick parser to see if anything was blank). The other consideration was tab characters and invalid characters which I also don't have.
I'm wondering what is going wrong at this point, and am still actively going through trying a few different things. My alternative plan is to derive the trip times between stops manually and join that table to the LineVariantElement output in order to circumvent whatever is going on.
Thanks in advance!