Skip to content

Commit 171756d

Browse files
committed
retain MDS
1 parent f9ca591 commit 171756d

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
## v0.5.0
44

5-
- **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.
65
- 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.
76
- 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
87

json-schema/dmfr.schema-v0.5.0.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@
4444
},
4545
"spec": {
4646
"type": "string",
47-
"enum": ["gtfs", "gtfs-rt", "gbfs"],
48-
"description": "Type of data contained in this feed: GTFS, GTFS-RT, or GBFS."
47+
"enum": ["gtfs", "gtfs-rt", "gbfs", "mds"],
48+
"description": "Type of data contained in this feed: GTFS, GTFS-RT, GBFS, or MDS."
4949
},
5050
"name": {
5151
"type": "string",
@@ -106,6 +106,11 @@
106106
"type": "string",
107107
"description": "Auto-discovery file in JSON format that links to all of the other GBFS files published by the system.",
108108
"pattern": "^(http|https|ftp):\/\/[a-zA-Z0-9.,~#{}():&/%='?_/-]+$"
109+
},
110+
"mds_provider": {
111+
"type": "string",
112+
"description": "MDS provider API endpoints are intended to be implemented by mobility providers and consumed by regulatory agencies.",
113+
"pattern": "^(http|https|ftp):\/\/[a-zA-Z0-9.,~#{}():&/%='?_/-]+$"
109114
}
110115
}
111116
},

0 commit comments

Comments
 (0)