Skip to content

Commit

Permalink
feat: apply recommended fields to feed_info.txt MobilityData#885
Browse files Browse the repository at this point in the history
  • Loading branch information
KClough committed May 16, 2022
1 parent f704743 commit 674c9f0
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,16 +40,21 @@ public interface GtfsFeedInfoSchema extends GtfsEntity {

Locale defaultLang();

@Recommended
@EndRange(field = "feed_end_date", allowEqual = true)
GtfsDate feedStartDate();

@Recommended
GtfsDate feedEndDate();

@Recommended
String feedVersion();

@Recommended
@FieldType(FieldTypeEnum.EMAIL)
String feedContactEmail();

@Recommended
@FieldType(FieldTypeEnum.URL)
String feedContactUrl();
}

0 comments on commit 674c9f0

Please sign in to comment.