Skip to content

Commit ae19ac8

Browse files
committed
Changed field accessibility_options to accessibility_attributes
1 parent 218b0ec commit ae19ac8

6 files changed

Lines changed: 25 additions & 25 deletions

File tree

data-types.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ A vehicle record is as follows:
3030
| `vehicle_type` | Enum | Required | The [vehicle type][vehicle-types] |
3131
| `vehicle_attributes` | Map | Optional | **[Mode](/modes#list-of-supported-modes) Specific**. [Vehicle attributes](/modes#vehicle-attributes) given as mode-specific unordered key-value pairs |
3232
| `propulsion_types` | Enum[] | Required | Array of [propulsion types][propulsion-types]; allows multiple values |
33-
| `accessibility_options` | Enum[] | Required | **[Mode](/modes#list-of-supported-modes) Specific**. [Accessibility options](/modes#accessibility-options) given as an array of enumerated values. List of any accessibility options **available on the vehicle**. |
33+
| `accessibility_attributes` | Enum[] | Required | **[Mode](/modes#list-of-supported-modes) Specific**. [Accessibility attributes](/modes#accessibility-attributes) given as an array of enumerated values. List of any accessibility options **available on the vehicle**. |
3434
| `battery_capacity` | Integer | Required if Available | Capacity of battery expressed as milliamp hours (mAh) |
3535
| `fuel_capacity` | Integer | Required if Available | Capacity of fuel tank (liquid, solid, gaseous) expressed in liters |
3636
| `maximum_speed` | Integer | Required if Available | Maximum speed (kph) possible with vehicle under normal, flat incline, smooth surface conditions. Applicable if the device has a built-in or intelligent speed limiter/governor. |
@@ -231,7 +231,7 @@ A Trip is defined by the following structure:
231231
| `duration` | Integer | Required | Time, in Seconds |
232232
| `distance` | Integer | Required | Trip Distance, in Meters |
233233
| `publication_time` | [Timestamp][ts] | Optional | Date/time that trip became available through the trips endpoint |
234-
| `accessibility_options` | Enum[] | Required | **[Mode](/modes#list-of-supported-modes) Specific**. [Accessibility options](/modes#accessibility-options) given as an array of enumerated values. List of any accessibility options **used during the trip**. |
234+
| `accessibility_attributes` | Enum[] | Required | **[Mode](/modes#list-of-supported-modes) Specific**. [Accessibility attributes](/modes#accessibility-attributes) given as an array of enumerated values. List of any accessibility options **used during the trip**. |
235235
| `parking_verification_url` | URL | Optional | A URL to a photo (or other evidence) of proper vehicle parking at the end of a trip, provided by customer or operator. |
236236
| `parking_category` | Enum | Optional | The type of parking location detected or provided and the end of a trip. One of `corral`, `curb`, `rack`, `other_valid`, `invalid`. Note that `other_valid` covers any other allowed parking location beyond what is enumerated, and `invalid` is any improper parking based on agency parking rules.
237237
| `standard_cost` | Integer | Optional | The cost, in the currency defined in `currency`, to perform that trip in the standard operation of the System (see [Costs & Currencies][costs-and-currencies]) |

modes/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,9 @@ The `vehicle_attributes` object returns a list of JSON-formatted key/value pairs
8383

8484
_See more available vehicle attributes for any mode in the [vehicles object](/data-types.md#vehicles)._
8585

86-
### Accessibility Options
86+
### Accessibility Attributes
8787

88-
The `accessibility_options` object returns a list of JSON-formatted key/value pairs which correspond to the allowed accessibility attributes and values for the operative mode. For each mode, the allowed attributes and corresponding values are defined in the [mode definition](#list-of-supported-modes).
88+
The `accessibility_attributes` object returns a list of JSON-formatted key/value pairs which correspond to the allowed accessibility attributes and values for the operative mode. For each mode, the allowed attributes and corresponding values are defined in the [mode definition](#list-of-supported-modes).
8989

9090
[Top][toc]
9191

modes/car-share.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ See the [modes overview](/modes) for how the mode specific information below app
1919
- [Fare Attributes](#fare-attributes)
2020
- [Vehicle Properties](#vehicle-properties)
2121
- [Vehicle Attributes](#vehicle-attributes)
22-
- [Accessibility Options](#accessibility-options)
22+
- [Accessibility Attributes](#accessibility-attributes)
2323
- [State Machine](#state-machine)
2424
- [Vehicle States](#vehicle-states)
2525
- [Event Types](#event-types)
@@ -140,13 +140,13 @@ Note many of these attributes come from fields in [GBFS vehicle_types](https://g
140140

141141
[Top][toc]
142142

143-
### Accessibility Options
143+
### Accessibility Attributes
144144

145-
This `accessibility_options` enum represents the accessibility options available on a given vehicle, or the accessibility options utilized for a given trip.
145+
This `accessibility_attributes` enum represents the accessibility options available on a given vehicle, or the accessibility options utilized for a given trip.
146146

147-
| `accessibility_options` | Description |
148-
|-------------------------|---------------------------------------|
149-
| `wheelchair_accessible` | This vehicle is wheelchair accessible |
147+
| `accessibility_attributes` | Description |
148+
|----------------------------|---------------------------------------|
149+
| `wheelchair_accessible` | This vehicle is wheelchair accessible |
150150

151151
[Top][toc]
152152

modes/delivery-robots.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Autonomous and remotely piloted delivery robots do not require a driver, whereas
2323
- [Fare Attributes](#fare-attributes)
2424
- [Vehicle Properties](#vehicle-properties)
2525
- [Vehicle Attributes](#vehicle-attributes)
26-
- [Accessibility Options](#accessibility-options)
26+
- [Accessibility Attributes](#accessibility-attributes)
2727
- [State Machine](#state-machine)
2828
- [Vehicle States](#vehicle-states)
2929
- [Event Types](#event-types)
@@ -130,9 +130,9 @@ The `vehicle_attributes` object **may** have the following key value pairs:
130130

131131
[Top][toc]
132132

133-
### Accessibility Options
133+
### Accessibility Attributes
134134

135-
The `accessibility_options` object **may** have the following key value pairs:
135+
The `accessibility_attributes` object **may** have the following key value pairs:
136136

137137
- `audio_cue` (boolean, optional): is the device equipped with audio cues upon delivery
138138
- `visual_cue` (boolean, optional): is the device equipped with visual cues upon delivery

modes/micromobility.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ See the [modes overview](/modes) for how the mode specific information below app
1919
- [Fare Attributes](#fare-attributes)
2020
- [Vehicle Properties](#vehicle-properties)
2121
- [Vehicle Attributes](#vehicle-attributes)
22-
- [Accessibility Options](#accessibility-options)
22+
- [Accessibility Attributes](#accessibility-attributes)
2323
- [State Machine](#state-machine)
2424
- [Vehicle States](#vehicle-states)
2525
- [Event Types](#event-types)
@@ -92,13 +92,13 @@ The `vehicle_attributes` object **may** have the following key value pairs:
9292

9393
[Top][toc]
9494

95-
### Accessibility Options
95+
### Accessibility Attributes
9696

97-
This `accessibility_options` enum represents the accessibility options available on a given vehicle, or the accessibility options utilized for a given trip.
97+
This `accessibility_attributes` enum represents the accessibility options available on a given vehicle, or the accessibility options utilized for a given trip.
9898

99-
| `accessibility_options` | Description |
100-
|-------------------------|---------------------------------------|
101-
| `adaptive` | This vehicle is accessible to people with various physical disabilities, and may include three wheels or be self balancing, a seat, or a basket or storage area |
99+
| `accessibility_attributes` | Description |
100+
|----------------------------|---------------------------------------|
101+
| `adaptive` | This vehicle is accessible to people with various physical disabilities, and may include three wheels or be self balancing, a seat, or a basket or storage area |
102102

103103
[Top][toc]
104104

modes/passenger-services.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Taxis typically require explicit tracking of maintenance while TNCs typically do
2323
- [Fare Attributes](#fare-attributes)
2424
- [Vehicle Properties](#vehicle-properties)
2525
- [Vehicle Attributes](#vehicle-attributes)
26-
- [Accessibility Options](#accessibility-options)
26+
- [Accessibility Attributes](#accessibility-attributes)
2727
- [State Machine](#state-machine)
2828
- [Vehicle States](#vehicle-states)
2929
- [Event Types](#event-types)
@@ -142,13 +142,13 @@ The `vehicle_attributes` object **may** have the following key value pairs:
142142

143143
[Top][toc]
144144

145-
### Accessibility Options
145+
### Accessibility Attributes
146146

147-
This `accessibility_options` enum represents the accessibility options available on a given vehicle, or the accessibility options utilized for a given trip.
147+
This `accessibility_attributes` enum represents the accessibility options available on a given vehicle, or the accessibility options utilized for a given trip.
148148

149-
| `accessibility_options` | Description |
150-
|-------------------------|---------------------------------------|
151-
| `wheelchair_accessible` | This vehicle is wheelchair accessible |
149+
| `accessibility_attributes` | Description |
150+
|----------------------------|---------------------------------------|
151+
| `wheelchair_accessible` | This vehicle is wheelchair accessible |
152152

153153
[Top][toc]
154154

0 commit comments

Comments
 (0)