Skip to content

Commit

Permalink
retain MDS
Browse files Browse the repository at this point in the history
  • Loading branch information
drewda committed Jul 7, 2023
1 parent f9ca591 commit 171756d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
1 change: 0 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

## v0.5.0

- **Breaking change**: DMFR no longer supports feeds in the [MDS specification](https://github.com/openmobilityfoundation/mobility-data-specification). Transitland has expanded to support GTFS, GTFS Realtime, and GBFS, but has no immediate plans to support MDS.
- A feed record can now have an optional `name` and `description` fields to provide additional context to DMFR editors and users of software that consume DMFR files.
- When specifying an SPDX identifier for a feed license or DMFR license, the value will now be validated against a list of SPDX short-form identifiers. Sourced from https://github.com/spdx/license-list-data

Expand Down
9 changes: 7 additions & 2 deletions json-schema/dmfr.schema-v0.5.0.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@
},
"spec": {
"type": "string",
"enum": ["gtfs", "gtfs-rt", "gbfs"],
"description": "Type of data contained in this feed: GTFS, GTFS-RT, or GBFS."
"enum": ["gtfs", "gtfs-rt", "gbfs", "mds"],
"description": "Type of data contained in this feed: GTFS, GTFS-RT, GBFS, or MDS."
},
"name": {
"type": "string",
Expand Down Expand Up @@ -106,6 +106,11 @@
"type": "string",
"description": "Auto-discovery file in JSON format that links to all of the other GBFS files published by the system.",
"pattern": "^(http|https|ftp):\/\/[a-zA-Z0-9.,~#{}():&/%='?_/-]+$"
},
"mds_provider": {
"type": "string",
"description": "MDS provider API endpoints are intended to be implemented by mobility providers and consumed by regulatory agencies.",
"pattern": "^(http|https|ftp):\/\/[a-zA-Z0-9.,~#{}():&/%='?_/-]+$"
}
}
},
Expand Down

0 comments on commit 171756d

Please sign in to comment.