From 3388b92c31241ce7c6e57d75bc9dfb0becd0ceec Mon Sep 17 00:00:00 2001 From: Ravi Prakash Date: Fri, 28 Apr 2023 22:18:24 +0530 Subject: [PATCH 1/3] Updated Tags documentation --- tags/tags-draft-01.md | 95 ++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 93 insertions(+), 2 deletions(-) diff --git a/tags/tags-draft-01.md b/tags/tags-draft-01.md index 54080df..ce5412e 100644 --- a/tags/tags-draft-01.md +++ b/tags/tags-draft-01.md @@ -1,4 +1,95 @@ -# Supported Tags +# Tags + +Tags are used to transmit product-specific attributes. Mobility service providers can send these values to describe attributes related to fare policies, product features, commercials etc. Tags can be used by BAPs to create filters, to allow sorting, comparison etc. Tags can also be used by BPPs for catalog indexing. +## Examples + +### Item Tags with simple name-value pairs + +``` +[ + { + "id": "5777a0bf-9a08-49aa-a97d-1e5561a9622e", + "descriptor": { + "name": "Economy Plus", + }, + "price": { + "value": "175", + "currency": "INR" + }, + "tags": { + "groups/1/descriptor/name": "Daytime Charges", + "groups/1/display": true, + "groups/1/list/1/descriptor/name": "Min Fare upto 2 km", + "groups/1/list/1/value": "₹ 30 upto 2 km", + "groups/1/list/2/descriptor/name": "Rate above Min. Fare", + "groups/1/list/2/value": "₹15 / km", + "groups/1/list/3/descriptor/name": "Driver Pickup Charges", + "groups/1/list/3/value": "₹ 10", + "groups/1/list/4/descriptor/name": "Nominal Fare", + "groups/1/list/4/descriptor/short_desc": "Driver may quote extra to cover for traffic, chance of return trip, etc.", + "groups/1/list/4/value": "₹ 10", + "groups/1/list/5/descriptor/name": "Waiting Charges", + "groups/1/list/5/descriptor/short_desc": "Driver may quote extra to cover for traffic, chance of return trip, etc.", + "groups/1/list/5/value": "₹ 0 / min" + } + } +] +``` + +### Item Tags with standardized (codified) name-value pairs + +``` +[ + { + "id": "5777a0bf-9a08-49aa-a97d-1e5561a9622e", + "descriptor": { + "name": "Economy", + "code": "RIDE" + }, + "price": { + "value": "175", + "currency": "INR" + }, + "tags": { + "groups/1/descriptor/name": "Daytime Charges", + "groups/1/descriptor/code": "fare_policy", + "groups/1/display": true, + "groups/1/list/1/descriptor/name": "Min Fare upto 2 km", + "groups/1/list/1/value": "₹ 30 upto 2 km", + "groups/1/list/2/descriptor/name": "Rate above Min. Fare", + "groups/1/list/2/descriptor/code": "extra_fare", + "groups/1/list/2/value": "₹15 / km", + "groups/1/list/3/descriptor/name": "Driver Pickup Charges", + "groups/1/list/3/descriptor/code": "pickup_charges", + "groups/1/list/3/value": "₹ 10", + "groups/1/list/4/descriptor/name": "Nominal Fare", + "groups/1/list/4/descriptor/short_desc": "Driver may quote extra to cover for traffic, chance of return trip, etc.", + "groups/1/list/4/descriptor/code": "nominal_fare", + "groups/1/list/4/value": "₹ 10", + "groups/1/list/5/descriptor/name": "Waiting Charges", + "groups/1/list/5/descriptor/short_desc": "Driver may quote extra to cover for traffic, chance of return trip, etc.", + "groups/1/list/5/descriptor/code": "waiting_charges", + "groups/1/list/5/value": "₹ 0 / min" + } + } +] +``` + +**Note:** The above tag list is NOT a recommended or required standard. This list will be standardized on the basis of adoption by implementers across multiple networks. + + +## Contributing to Tags +Tags are standardized by the Mobility Working Group on the basis of community adoption. At the current moment, there are no standard tags recommended by the working group. Eventually a tag list will be created that looks like the table below. Implementers are free to submit tags for consideration via a PR with a row added to the table below along with an attached report on adoption of that tag across the implementer community. It is recommended for contributors to do extensive research on adoption before submitting the PR. + + +## Tag List + +| Name | Code | Description | Type | Format | Examples | +|-----------------------|------------------------|--------------------------------------------------------------------------------|--------|-------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------| +| (name) | (code) | (description) | (type) | (format) | (examples) | + + +### An example Tag List with standardizations (NOT A RECOMMENDATION) | Name | Code | Description | Type | Format | Examples | |-----------------------|------------------------|--------------------------------------------------------------------------------|--------|-------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------| @@ -13,4 +104,4 @@ | Night Shift Start | night_shift_start_time | Time from which night shift begins | string | time as per RFC3339 | 22:00:00 | | Night Shift End | night_shift_end_time | Time at which night shift ends | string | time as per RFC3339 | 05:00:00 | | Path | encoded_polyline | Compressed polyline path generated from a set of gps coordinates | string | Refer to [polyline algorithm](https://developers.google.com/maps/documentation/utilities/polylinealgorithm) | _p~iF~ps\|U_ulLnnqC_mqNvxq`@ | -| Waypoints | waypoints | Set of specific GPS points along a route | string | stringify(minifiy(JSON array of Location objects with gps property set)) | [{\"gps\":\"12.9099828, 77.6118226\"},{\"gps\":\"12.9099828, 77.6118226\"},{\"gps\":\"12.9099828, 77.6118226\"},{\"gps\":\"12.9099828, 77.6118226\"}] | \ No newline at end of file +| Waypoints | waypoints | Set of specific GPS points along a route | string | stringify(minifiy(JSON array of Location objects with gps property set)) | [{\"gps\":\"12.9099828, 77.6118226\"},{\"gps\":\"12.9099828, 77.6118226\"},{\"gps\":\"12.9099828, 77.6118226\"},{\"gps\":\"12.9099828, 77.6118226\"}] | From f7341f63b5ce18ac87037901b7ea5e9755f1be11 Mon Sep 17 00:00:00 2001 From: Ravi Prakash Date: Fri, 28 Apr 2023 22:18:44 +0530 Subject: [PATCH 2/3] Updated Tag Group Documentation --- tags/tag-groups-draft-01.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tags/tag-groups-draft-01.md b/tags/tag-groups-draft-01.md index 5efcf1b..7bfd24e 100644 --- a/tags/tag-groups-draft-01.md +++ b/tags/tag-groups-draft-01.md @@ -1,6 +1,11 @@ # Tag Groups -| Name `(groups/[index]/descriptor.name)` | Code `groups/[index]/descriptor.code` | Description | +Tag groups are labels under which various tags can be grouped. In the mobility sector, Tag Groups can contains various service-specific information. Tag Groups can be standardized at a domain-level or a network-level depending upon implementer demand for standardizations. Some examples of Tag Groups are shown below. + +Note: The below list is NOT a recommended or required standard. This list will be standardized on the basis of adoption by implementers. + +## Examples: +| Example Name `(groups/[index]/descriptor.name)` | Example Code `groups/[index]/descriptor.code` | Description | |-----------------------------------------|---------------------------------------|--------------------------------------------------------------------------------------------------------| | Localization | locale | adapting a software product to the linguistic, cultural and technical requirements of a target market. | | Fare Policy | fare_policy | Fare calculation rules for a mobility service | From 07b7a596233cf5db94b4a853e72eb8c48e9dcd6e Mon Sep 17 00:00:00 2001 From: Ravi Prakash Date: Fri, 28 Apr 2023 22:32:59 +0530 Subject: [PATCH 3/3] Updated mobility.yaml with more examples --- api/mobility.yaml | 524 +++++++++++++++++++++++++--------------------- 1 file changed, 284 insertions(+), 240 deletions(-) diff --git a/api/mobility.yaml b/api/mobility.yaml index b71ae94..460fa3a 100644 --- a/api/mobility.yaml +++ b/api/mobility.yaml @@ -2,7 +2,7 @@ openapi: 3.0.0 info: title: Beckn Mobility API Specification description: Adaptation of beckn protocol for the mobility sector. Compatible with core version 0.9.4 LTS. - version: 0.8.0 + version: 0.8.1 security: - SubscriberAuth: [] - GatewaySubscriberAuth: [] @@ -54,7 +54,6 @@ paths: end: location: gps: 12.9346302, 77.61533969999999 - Search by pickup and drop location with localization info: value: context: @@ -81,9 +80,7 @@ paths: person: tags: groups/1/descriptor/name: Localization - groups/1/descriptor/code: localization groups/1/display: false - groups/1/list/1/descriptor/code: lang groups/1/list/1/descriptor/name: Language groups/1/list/1/value: en responses: @@ -105,7 +102,6 @@ paths: $ref: '#/components/schemas/Error' required: - message - /select: post: tags: @@ -259,9 +255,7 @@ paths: person: tags: groups/1/descriptor/name: Localization - groups/1/descriptor/code: localization groups/1/display: false - groups/1/list/1/descriptor/code: lang groups/1/list/1/descriptor/name: Language groups/1/list/1/value: en responses: @@ -387,9 +381,7 @@ paths: phone: +91-9897867564 tags: groups/1/descriptor/name: Localization - groups/1/descriptor/code: localization groups/1/display: false - groups/1/list/1/descriptor/code: lang groups/1/list/1/descriptor/name: Language groups/1/list/1/value: en responses: @@ -411,7 +403,6 @@ paths: $ref: '#/components/schemas/Error' required: - message - /confirm: post: tags: @@ -466,44 +457,32 @@ paths: code: RIDE tags: groups/1/descriptor/name: Daytime Charges - groups/1/descriptor/code: fare_policy groups/1/display: true groups/1/list/1/descriptor/name: Min Fare upto 2 km groups/1/list/1/value: ₹ 30 upto 2 km groups/1/list/2/descriptor/name: Rate above Min. Fare - groups/1/list/2/descriptor/code: extra_fare groups/1/list/2/value: ₹15 / km groups/1/list/3/descriptor/name: Driver Pickup Charges - groups/1/list/3/descriptor/code: pickup_charges groups/1/list/3/value: ₹ 10 groups/1/list/4/descriptor/name: Nominal Fare groups/1/list/4/descriptor/short_desc: Driver may quote extra to cover for traffic, chance of return trip, etc. - groups/1/list/4/descriptor/code: nominal_fare groups/1/list/4/value: ₹ 10 groups/1/list/5/descriptor/name: Nominal Fare groups/1/list/5/descriptor/short_desc: Driver may quote extra to cover for traffic, chance of return trip, etc. - groups/1/list/5/descriptor/code: waiting_charges groups/1/list/5/value: ₹ 0 / min groups/2/descriptor/name: Waiting Charges - groups/2/descriptor/code: fare_policy groups/2/display: true groups/2/list/1/descriptor/name: Night Charges - groups/2/list/1/descriptor/code: night_charges groups/2/list/1/value: 1.5x of daytime charges applicable at night from 10 PM to 5 PM groups/2/list/2/descriptor/name: Night Shift Start - groups/2/list/2/descriptor/code: night_shift_start_time groups/2/list/2/value: '22:00:00' groups/2/list/3/descriptor/name: Night Shift End - groups/2/list/3/descriptor/code: night_shift_end_time groups/2/list/3/value: '05:00:00' groups/3/descriptor/name: General Information - groups/3/descriptor/code: info groups/3/display: true groups/3/list/1/descriptor/name: Distance to nearest driver - groups/3/list/1/descriptor/code: distance_to_nearest_driver groups/3/list/1/value: 661 m groups/3/list/2/descriptor/name: Wait time upto - groups/3/list/2/descriptor/code: waiting_time_estimated_threshold groups/3/list/2/value: 3 min fulfillment_id: fb5c84d4-1b59-4b9d-96b5-9d79107432c5 payment_id: '1' @@ -567,9 +546,7 @@ paths: phone: +91-9897867564 tags: groups/1/descriptor/name: Localization - groups/1/descriptor/code: localization groups/1/display: false - groups/1/list/1/descriptor/code: lang groups/1/list/1/descriptor/name: Language groups/1/list/1/value: en payment: @@ -640,7 +617,6 @@ paths: bap_uri: https://api.example-bap.com/pilot/bap/cab/v1 message: order_id: 7751bd26-3fdc-47ca-9b64-e998dc5abe68 - responses: '200': description: Acknowledgement of message received @@ -705,7 +681,6 @@ paths: bap_uri: https://api.example-bap.com/pilot/bap/cab/v1 message: order_id: 22e090fc-b8b1-4437-9126-ff7a71c7845c - responses: '200': description: Acknowledgement of message received @@ -936,8 +911,6 @@ paths: feedback_form: - id: '1' answer: Driver took me on a route not shown by Google Maps and we reached 10 minutes before time - - /support: post: tags: @@ -979,7 +952,6 @@ paths: bap_uri: https://api.example-bap.com/pilot/bap/cab/v1 message: ref_id: 7751bd26-3fdc-47ca-9b64-e998dc5abe68 - responses: '200': description: Acknowledgement of message received @@ -1026,7 +998,285 @@ paths: required: - context examples: - Return a mobility catalog: + Return a single provider mobility catalog: + value: + message: + context: + country: IND + bpp_uri: https://api.example-bpp.in/path/to/url + domain: nic2004:60221 + timestamp: '2023-03-23T04:43:02Z' + bap_id: example-bap.in + transaction_id: 870782be-6757-43f1-945c-8eeaf9536259 + bpp_id: example-bpp.in + message_id: 21e54d3c-9c3b-47c1-aa3b-b0e7b20818ee + city: std:080 + core_version: 0.9.4 + action: on_search + bap_uri: https://api.example-bpp.in/path/to/url + catalog: + bpp/descriptor: + name: Acme Taxis + bpp/providers: + - descriptor: + name: Acme Taxis + locations: + - id: '1' + gps: 12.9164682,77.6089985 + - id: '2' + gps: 12.91671,77.6092983 + - id: '3' + gps: 12.9165733,77.6152167 + - id: '4' + gps: 12.9068578,77.6044567 + items: + - id: 5777a0bf-9a08-49aa-a97d-1e5561a9622e + descriptor: + name: Economy + code: RIDE + price: + value: '175' + currency: INR + tags: + groups/1/descriptor/name: Daytime Charges + groups/1/display: true + groups/1/list/1/descriptor/name: Min Fare upto 2 km + groups/1/list/1/value: ₹ 30 upto 2 km + groups/1/list/2/descriptor/name: Rate above Min. Fare + groups/1/list/2/value: ₹15 / km + groups/1/list/3/descriptor/name: Driver Pickup Charges + groups/1/list/3/value: ₹ 10 + groups/1/list/4/descriptor/name: Nominal Fare + groups/1/list/4/descriptor/short_desc: Driver may quote extra to cover for traffic, chance of return trip, etc. + groups/1/list/4/value: ₹ 10 + groups/1/list/5/descriptor/name: Waiting Charges + groups/1/list/5/descriptor/short_desc: Driver may quote extra to cover for traffic, chance of return trip, etc. + groups/1/list/5/value: ₹ 0 / min + fulfillment_id: fb5c84d4-1b59-4b9d-96b5-9d79107432c5 + payment_id: '1' + fulfillments: + - id: fb5c84d4-1b59-4b9d-96b5-9d79107432c5 + start: + location: + gps: 12.9099828, 77.6118226 + address: + ward: Uttarahalli Hobli, Ramanjaneyanagar + country: India + building: 6th Main Rd + state: Karnataka 560061 + city: Bengaluru + locality: Uttarahalli Hobli + door: 98A, Sarovarm 2nd cross + area_code: '560061' + street: Ramanjaneyanagar + end: + location: + gps: 12.9351856, 77.62459969999999 + address: + ward: Basavanagudi, Chikkanna Garden, Rangadore Memorial Hospital + country: India + building: Rangadore Memorial Hospital + state: Karnataka + city: Bengaluru + locality: Basavanagudi + door: null + area_code: '' + street: Chikkanna Garden + vehicle: + category: TAXI + payments: + - id: '1' + type: ON-FULFILLMENT + collected_by: BPP + Return a mobility catalog with multiple providers: + value: + message: + context: + country: IND + bpp_uri: https://api.example-bpp.in/path/to/url + domain: nic2004:60221 + timestamp: '2023-03-23T04:43:02Z' + bap_id: example-bap.in + transaction_id: 870782be-6757-43f1-945c-8eeaf9536259 + bpp_id: example-bpp.in + message_id: 21e54d3c-9c3b-47c1-aa3b-b0e7b20818ee + city: std:080 + core_version: 0.9.4 + action: on_search + bap_uri: https://api.example-bpp.in/path/to/url + catalog: + bpp/descriptor: + name: Open Mobility Solutions + images: + - https://example-bpp.com/images/logos/oms.ico + bpp/providers: + - id: '1' + descriptor: + name: Acme Cabs + images: + - https://example-bpp.com/images/logos/acme.ico + items: + - id: '1' + descriptor: + name: Economy + price: + value: '175' + currency: INR + fulfillment_id: '1' + payment_id: '1' + - id: '2' + descriptor: + name: Premium + price: + value: '250' + currency: INR + fulfillment_id: '1' + payment_id: '1' + - id: '3' + descriptor: + name: Luxury + price: + value: '500' + currency: INR + fulfillment_id: '1' + payment_id: '1' + fulfillments: + - id: '1' + start: + location: + gps: 12.9099828, 77.6118226 + end: + location: + gps: 12.9351856, 77.6245996 + vehicle: + category: TAXI + payments: + - id: '1' + type: ON-FULFILLMENT + collected_by: BPP + - descriptor: + name: Beta Taxis + images: + - https://example-bpp.com/images/logos/betataxis.ico + items: + - id: '1' + descriptor: + name: Beta Prime + short_desc: Affordable sedans, at affordable costs + price: + value: '200' + currency: INR + fulfillment_id: fb5c84d4-1b59-4b9d-96b5-9d79107432c5 + payment_id: '1' + - id: '2' + descriptor: + name: Beta Max + short_desc: Spacious vans for large groups + price: + value: '1500' + currency: INR + fulfillment_id: fb5c84d4-1b59-4b9d-96b5-9d79107432c5 + payment_id: '1' + fulfillments: + - id: '1' + start: + location: + gps: 12.9099828, 77.6118226 + end: + location: + gps: 12.9351856, 77.62459969999999 + vehicle: + category: TAXI + - id: '2' + start: + location: + gps: 12.9099828, 77.6118226 + end: + location: + gps: 12.9351856, 77.62459969999999 + vehicle: + category: TEMPO-TRAVELLER + payments: + - id: '1' + type: ON-FULFILLMENT + collected_by: BPP + Return a mobility catalog with no provider: + value: + message: + context: + country: IND + bpp_uri: https://api.example-bpp.com/dobpp/beckn/7f7896dd-787e-4a0b-8675-e9e6fe93bb8f + domain: nic2004:60221 + timestamp: '2023-03-23T04:43:02Z' + bap_id: example-bap.com + transaction_id: 870782be-6757-43f1-945c-8eeaf9536259 + bpp_id: example-bpp.com + message_id: 21e54d3c-9c3b-47c1-aa3b-b0e7b20818ee + city: std:080 + core_version: 0.9.4 + action: on_search + bap_uri: https://api.example-bap.com/pilot/bap/cab/v1 + catalog: + bpp/descriptor: + name: InstaAuto + bpp/providers: + - id: 1 + locations: + - id: '1' + gps: 12.9164682,77.6089985 + - id: '2' + gps: 12.91671,77.6092983 + - id: '3' + gps: 12.9165733,77.6152167 + - id: '4' + gps: 12.9068578,77.6044567 + items: + - id: 5777a0bf-9a08-49aa-a97d-1e5561a9622e + descriptor: + name: Auto Ride + code: RIDE + price: + maximum_value: '156' + currency: INR + minimum_value: '176' + value: 156 - 176 INR + fulfillment_id: fb5c84d4-1b59-4b9d-96b5-9d79107432c5 + payment_id: '1' + fulfillments: + - id: fb5c84d4-1b59-4b9d-96b5-9d79107432c5 + start: + location: + gps: 12.9099828, 77.6118226 + address: + ward: Uttarahalli Hobli, Ramanjaneyanagar + country: India + building: 6th Main Rd + state: Karnataka 560061 + city: Bengaluru + locality: Uttarahalli Hobli + door: 98A, Sarovarm 2nd cross + area_code: '560061' + street: Ramanjaneyanagar + end: + location: + gps: 12.9351856, 77.62459969999999 + address: + ward: Basavanagudi, Chikkanna Garden, Rangadore Memorial Hospital + country: India + building: Rangadore Memorial Hospital + state: Karnataka + city: Bengaluru + locality: Basavanagudi + door: null + area_code: '' + street: Chikkanna Garden + vehicle: + category: AUTO_RICKSHAW + payments: + - id: '1' + type: ON-FULFILLMENT + collected_by: BPP + Return a single provider mobility catalog (with some optional tags): value: message: context: @@ -1044,7 +1294,7 @@ paths: bap_uri: https://api.example-bap.com/pilot/bap/cab/v1 catalog: bpp/descriptor: - name: Namma Yatri Partner + name: InstaAuto bpp/providers: - locations: - id: '1' @@ -1067,44 +1317,32 @@ paths: value: 156 - 176 INR tags: groups/1/descriptor/name: Daytime Charges - groups/1/descriptor/code: fare_policy groups/1/display: true groups/1/list/1/descriptor/name: Min Fare upto 2 km groups/1/list/1/value: ₹ 30 upto 2 km groups/1/list/2/descriptor/name: Rate above Min. Fare - groups/1/list/2/descriptor/code: extra_fare groups/1/list/2/value: ₹15 / km groups/1/list/3/descriptor/name: Driver Pickup Charges - groups/1/list/3/descriptor/code: pickup_charges groups/1/list/3/value: ₹ 10 groups/1/list/4/descriptor/name: Nominal Fare groups/1/list/4/descriptor/short_desc: Driver may quote extra to cover for traffic, chance of return trip, etc. - groups/1/list/4/descriptor/code: nominal_fare groups/1/list/4/value: ₹ 10 groups/1/list/5/descriptor/name: Waiting Charges groups/1/list/5/descriptor/short_desc: Driver may quote extra to cover for traffic, chance of return trip, etc. - groups/1/list/5/descriptor/code: waiting_charges groups/1/list/5/value: ₹ 0 / min groups/2/descriptor/name: Night Charges - groups/2/descriptor/code: fare_policy groups/2/display: true groups/2/list/1/descriptor/name: Night Charges - groups/2/list/1/descriptor/code: night_charges groups/2/list/1/value: 1.5x of daytime charges applicable at night from 10 PM to 5 PM groups/2/list/2/descriptor/name: Night Shift Start - groups/2/list/2/descriptor/code: night_shift_start_time groups/2/list/2/value: '22:00:00' groups/2/list/3/descriptor/name: Night Shift End - groups/2/list/3/descriptor/code: night_shift_end_time groups/2/list/3/value: '05:00:00' groups/3/descriptor/name: General Information - groups/3/descriptor/code: info groups/3/display: true groups/3/list/1/descriptor/name: Distance to nearest driver - groups/3/list/1/descriptor/code: distance_to_nearest_driver groups/3/list/1/value: 661 m groups/3/list/2/descriptor/name: Wait time upto - groups/3/list/2/descriptor/code: waiting_time_estimated_threshold groups/3/list/2/value: 3 min fulfillment_id: fb5c84d4-1b59-4b9d-96b5-9d79107432c5 payment_id: '1' @@ -1138,33 +1376,10 @@ paths: street: Chikkanna Garden vehicle: category: AUTO_RICKSHAW - tags: - groups/1/descriptor/code: route_info - groups/1/descriptor/name: Route Information - groups/1/display: true - groups/1/list/1/descriptor/code: encoded_polyline - groups/1/list/1/descriptor/name: Path - groups/1/list/1/value: _p~iF~ps|U_ulLnnqC_mqNvxq`@ - groups/1/list/2/descriptor/code: waypoints - groups/1/list/2/descriptor/name: Waypoints - groups/1/list/2/value: '[{"gps":"12.9099828, 77.6118226"},{"gps":"12.9099828, 77.6118226"},{"gps":"12.9099828, 77.6118226"},{"gps":"12.9099828, 77.6118226"}]' payments: - id: '1' type: ON-FULFILLMENT collected_by: BPP - tags: - groups/1/descriptor/name: General Information - groups/1/descriptor/code: general_info - groups/1/display: true - groups/1/list/1/descriptor/name: Rides confirmed - groups/1/list/1/descriptor/code: rides_confirmed - groups/1/list/1/value: '0' - groups/1/list/2/descriptor/name: Rides In Progress - groups/1/list/2/descriptor/code: rides_in_progress - groups/1/list/2/value: '0' - groups/1/list/3/descriptor/name: Rides Completed - groups/1/list/3/descriptor/code: rides_completed - groups/1/list/3/value: '0' responses: '200': description: Acknowledgement of message received @@ -1238,44 +1453,32 @@ paths: code: RIDE tags: groups/1/descriptor/name: Daytime Charges - groups/1/descriptor/code: fare_policy groups/1/display: true groups/1/list/1/descriptor/name: Min Fare upto 2 km groups/1/list/1/value: ₹ 30 upto 2 km groups/1/list/2/descriptor/name: Rate above Min. Fare - groups/1/list/2/descriptor/code: extra_fare groups/1/list/2/value: ₹15 / km groups/1/list/3/descriptor/name: Driver Pickup Charges - groups/1/list/3/descriptor/code: pickup_charges groups/1/list/3/value: ₹ 10 groups/1/list/4/descriptor/name: Nominal Fare groups/1/list/4/descriptor/short_desc: Driver may quote extra to cover for traffic, chance of return trip, etc. - groups/1/list/4/descriptor/code: nominal_fare groups/1/list/4/value: ₹ 10 groups/1/list/5/descriptor/name: Nominal Fare groups/1/list/5/descriptor/short_desc: Driver may quote extra to cover for traffic, chance of return trip, etc. - groups/1/list/5/descriptor/code: waiting_charges groups/1/list/5/value: ₹ 0 / min groups/2/descriptor/name: Waiting Charges - groups/2/descriptor/code: fare_policy groups/2/display: true groups/2/list/1/descriptor/name: Night Charges - groups/2/list/1/descriptor/code: night_charges groups/2/list/1/value: 1.5x of daytime charges applicable at night from 10 PM to 5 PM groups/2/list/2/descriptor/name: Night Shift Start - groups/2/list/2/descriptor/code: night_shift_start_time groups/2/list/2/value: '22:00:00' groups/2/list/3/descriptor/name: Night Shift End - groups/2/list/3/descriptor/code: night_shift_end_time groups/2/list/3/value: '05:00:00' groups/3/descriptor/name: General Information - groups/3/descriptor/code: info groups/3/display: true groups/3/list/1/descriptor/name: Distance to nearest driver - groups/3/list/1/descriptor/code: distance_to_nearest_driver groups/3/list/1/value: 661 m groups/3/list/2/descriptor/name: Wait time upto - groups/3/list/2/descriptor/code: waiting_time_estimated_threshold groups/3/list/2/value: 3 min fulfillment_id: fb5c84d4-1b59-4b9d-96b5-9d79107432c5 payment_id: '1' @@ -1330,7 +1533,6 @@ paths: rating: '5' vehicle: category: AUTO_RICKSHAW - responses: '200': description: Acknowledgement of message received @@ -1405,44 +1607,32 @@ paths: code: RIDE tags: groups/1/descriptor/name: Daytime Charges - groups/1/descriptor/code: fare_policy groups/1/display: true groups/1/list/1/descriptor/name: Min Fare upto 2 km groups/1/list/1/value: ₹ 30 upto 2 km groups/1/list/2/descriptor/name: Rate above Min. Fare - groups/1/list/2/descriptor/code: extra_fare groups/1/list/2/value: ₹15 / km groups/1/list/3/descriptor/name: Driver Pickup Charges - groups/1/list/3/descriptor/code: pickup_charges groups/1/list/3/value: ₹ 10 groups/1/list/4/descriptor/name: Nominal Fare groups/1/list/4/descriptor/short_desc: Driver may quote extra to cover for traffic, chance of return trip, etc. - groups/1/list/4/descriptor/code: nominal_fare groups/1/list/4/value: ₹ 10 groups/1/list/5/descriptor/name: Nominal Fare groups/1/list/5/descriptor/short_desc: Driver may quote extra to cover for traffic, chance of return trip, etc. - groups/1/list/5/descriptor/code: waiting_charges groups/1/list/5/value: ₹ 0 / min groups/2/descriptor/name: Waiting Charges - groups/2/descriptor/code: fare_policy groups/2/display: true groups/2/list/1/descriptor/name: Night Charges - groups/2/list/1/descriptor/code: night_charges groups/2/list/1/value: 1.5x of daytime charges applicable at night from 10 PM to 5 PM groups/2/list/2/descriptor/name: Night Shift Start - groups/2/list/2/descriptor/code: night_shift_start_time groups/2/list/2/value: '22:00:00' groups/2/list/3/descriptor/name: Night Shift End - groups/2/list/3/descriptor/code: night_shift_end_time groups/2/list/3/value: '05:00:00' groups/3/descriptor/name: General Information - groups/3/descriptor/code: info groups/3/display: true groups/3/list/1/descriptor/name: Distance to nearest driver - groups/3/list/1/descriptor/code: distance_to_nearest_driver groups/3/list/1/value: 661 m groups/3/list/2/descriptor/name: Wait time upto - groups/3/list/2/descriptor/code: waiting_time_estimated_threshold groups/3/list/2/value: 3 min fulfillment_id: fb5c84d4-1b59-4b9d-96b5-9d79107432c5 payment_id: '1' @@ -1506,9 +1696,7 @@ paths: phone: +91-9897867564 tags: groups/1/descriptor/name: Localization - groups/1/descriptor/code: localization groups/1/display: false - groups/1/list/1/descriptor/code: lang groups/1/list/1/descriptor/name: Language groups/1/list/1/value: en payment: @@ -1518,7 +1706,6 @@ paths: amount: '81' currency: INR transaction_status: NOT-PAID - responses: '200': description: Acknowledgement of message received @@ -1593,44 +1780,32 @@ paths: code: RIDE tags: groups/1/descriptor/name: Daytime Charges - groups/1/descriptor/code: fare_policy groups/1/display: true groups/1/list/1/descriptor/name: Min Fare upto 2 km groups/1/list/1/value: ₹ 30 upto 2 km groups/1/list/2/descriptor/name: Rate above Min. Fare - groups/1/list/2/descriptor/code: extra_fare groups/1/list/2/value: ₹15 / km groups/1/list/3/descriptor/name: Driver Pickup Charges - groups/1/list/3/descriptor/code: pickup_charges groups/1/list/3/value: ₹ 10 groups/1/list/4/descriptor/name: Nominal Fare groups/1/list/4/descriptor/short_desc: Driver may quote extra to cover for traffic, chance of return trip, etc. - groups/1/list/4/descriptor/code: nominal_fare groups/1/list/4/value: ₹ 10 groups/1/list/5/descriptor/name: Nominal Fare groups/1/list/5/descriptor/short_desc: Driver may quote extra to cover for traffic, chance of return trip, etc. - groups/1/list/5/descriptor/code: waiting_charges groups/1/list/5/value: ₹ 0 / min groups/2/descriptor/name: Waiting Charges - groups/2/descriptor/code: fare_policy groups/2/display: true groups/2/list/1/descriptor/name: Night Charges - groups/2/list/1/descriptor/code: night_charges groups/2/list/1/value: 1.5x of daytime charges applicable at night from 10 PM to 5 PM groups/2/list/2/descriptor/name: Night Shift Start - groups/2/list/2/descriptor/code: night_shift_start_time groups/2/list/2/value: '22:00:00' groups/2/list/3/descriptor/name: Night Shift End - groups/2/list/3/descriptor/code: night_shift_end_time groups/2/list/3/value: '05:00:00' groups/3/descriptor/name: General Information - groups/3/descriptor/code: info groups/3/display: true groups/3/list/1/descriptor/name: Distance to nearest driver - groups/3/list/1/descriptor/code: distance_to_nearest_driver groups/3/list/1/value: 661 m groups/3/list/2/descriptor/name: Wait time upto - groups/3/list/2/descriptor/code: waiting_time_estimated_threshold groups/3/list/2/value: 3 min fulfillment_id: fb5c84d4-1b59-4b9d-96b5-9d79107432c5 payment_id: '1' @@ -1703,9 +1878,7 @@ paths: phone: +91-9897867564 tags: groups/1/descriptor/name: Localization - groups/1/descriptor/code: localization groups/1/display: false - groups/1/list/1/descriptor/code: lang groups/1/list/1/descriptor/name: Language groups/1/list/1/value: en payment: @@ -1715,7 +1888,6 @@ paths: amount: '81' currency: INR transaction_status: NOT-PAID - responses: '200': description: Acknowledgement of message received @@ -1780,7 +1952,6 @@ paths: content_type: application/json url: https://api.beckn.juspay.in/dobpp/ui/driver/location/abc9f0aa-bbfd-4e91-b378-41feee12f05f status: active - responses: '200': description: Acknowledgement of message received @@ -1855,44 +2026,32 @@ paths: code: RIDE tags: groups/1/descriptor/name: Daytime Charges - groups/1/descriptor/code: fare_policy groups/1/display: true groups/1/list/1/descriptor/name: Min Fare upto 2 km groups/1/list/1/value: ₹ 30 upto 2 km groups/1/list/2/descriptor/name: Rate above Min. Fare - groups/1/list/2/descriptor/code: extra_fare groups/1/list/2/value: ₹15 / km groups/1/list/3/descriptor/name: Driver Pickup Charges - groups/1/list/3/descriptor/code: pickup_charges groups/1/list/3/value: ₹ 10 groups/1/list/4/descriptor/name: Nominal Fare groups/1/list/4/descriptor/short_desc: Driver may quote extra to cover for traffic, chance of return trip, etc. - groups/1/list/4/descriptor/code: nominal_fare groups/1/list/4/value: ₹ 10 groups/1/list/5/descriptor/name: Nominal Fare groups/1/list/5/descriptor/short_desc: Driver may quote extra to cover for traffic, chance of return trip, etc. - groups/1/list/5/descriptor/code: waiting_charges groups/1/list/5/value: ₹ 0 / min groups/2/descriptor/name: Waiting Charges - groups/2/descriptor/code: fare_policy groups/2/display: true groups/2/list/1/descriptor/name: Night Charges - groups/2/list/1/descriptor/code: night_charges groups/2/list/1/value: 1.5x of daytime charges applicable at night from 10 PM to 5 PM groups/2/list/2/descriptor/name: Night Shift Start - groups/2/list/2/descriptor/code: night_shift_start_time groups/2/list/2/value: '22:00:00' groups/2/list/3/descriptor/name: Night Shift End - groups/2/list/3/descriptor/code: night_shift_end_time groups/2/list/3/value: '05:00:00' groups/3/descriptor/name: General Information - groups/3/descriptor/code: info groups/3/display: true groups/3/list/1/descriptor/name: Distance to nearest driver - groups/3/list/1/descriptor/code: distance_to_nearest_driver groups/3/list/1/value: 661 m groups/3/list/2/descriptor/name: Wait time upto - groups/3/list/2/descriptor/code: waiting_time_estimated_threshold groups/3/list/2/value: 3 min fulfillment_id: fb5c84d4-1b59-4b9d-96b5-9d79107432c5 payment_id: '1' @@ -1948,9 +2107,7 @@ paths: phone: +91-9897867564 tags: groups/1/descriptor/name: Localization - groups/1/descriptor/code: localization groups/1/display: false - groups/1/list/1/descriptor/code: lang groups/1/list/1/descriptor/name: Language groups/1/list/1/value: en payments: @@ -1960,7 +2117,6 @@ paths: amount: '0' currency: INR transaction_status: CANCELLED - Return order cancelled by rider with cancellation charges: value: context: @@ -1990,44 +2146,32 @@ paths: code: RIDE tags: groups/1/descriptor/name: Daytime Charges - groups/1/descriptor/code: fare_policy groups/1/display: true groups/1/list/1/descriptor/name: Min Fare upto 2 km groups/1/list/1/value: ₹ 30 upto 2 km groups/1/list/2/descriptor/name: Rate above Min. Fare - groups/1/list/2/descriptor/code: extra_fare groups/1/list/2/value: ₹15 / km groups/1/list/3/descriptor/name: Driver Pickup Charges - groups/1/list/3/descriptor/code: pickup_charges groups/1/list/3/value: ₹ 10 groups/1/list/4/descriptor/name: Nominal Fare groups/1/list/4/descriptor/short_desc: Driver may quote extra to cover for traffic, chance of return trip, etc. - groups/1/list/4/descriptor/code: nominal_fare groups/1/list/4/value: ₹ 10 groups/1/list/5/descriptor/name: Nominal Fare groups/1/list/5/descriptor/short_desc: Driver may quote extra to cover for traffic, chance of return trip, etc. - groups/1/list/5/descriptor/code: waiting_charges groups/1/list/5/value: ₹ 0 / min groups/2/descriptor/name: Waiting Charges - groups/2/descriptor/code: fare_policy groups/2/display: true groups/2/list/1/descriptor/name: Night Charges - groups/2/list/1/descriptor/code: night_charges groups/2/list/1/value: 1.5x of daytime charges applicable at night from 10 PM to 5 PM groups/2/list/2/descriptor/name: Night Shift Start - groups/2/list/2/descriptor/code: night_shift_start_time groups/2/list/2/value: '22:00:00' groups/2/list/3/descriptor/name: Night Shift End - groups/2/list/3/descriptor/code: night_shift_end_time groups/2/list/3/value: '05:00:00' groups/3/descriptor/name: General Information - groups/3/descriptor/code: info groups/3/display: true groups/3/list/1/descriptor/name: Distance to nearest driver - groups/3/list/1/descriptor/code: distance_to_nearest_driver groups/3/list/1/value: 661 m groups/3/list/2/descriptor/name: Wait time upto - groups/3/list/2/descriptor/code: waiting_time_estimated_threshold groups/3/list/2/value: 3 min fulfillment_id: fb5c84d4-1b59-4b9d-96b5-9d79107432c5 payment_id: '1' @@ -2088,9 +2232,7 @@ paths: phone: +91-9897867564 tags: groups/1/descriptor/name: Localization - groups/1/descriptor/code: localization groups/1/display: false - groups/1/list/1/descriptor/code: lang groups/1/list/1/descriptor/name: Language groups/1/list/1/value: en payment: @@ -2105,8 +2247,6 @@ paths: bank_code: SBIN0000575 time: duration: P1D - - responses: '200': description: Acknowledgement of message received @@ -2182,44 +2322,32 @@ paths: code: RIDE tags: groups/1/descriptor/name: Daytime Charges - groups/1/descriptor/code: fare_policy groups/1/display: true groups/1/list/1/descriptor/name: Min Fare upto 2 km groups/1/list/1/value: ₹ 30 upto 2 km groups/1/list/2/descriptor/name: Rate above Min. Fare - groups/1/list/2/descriptor/code: extra_fare groups/1/list/2/value: ₹15 / km groups/1/list/3/descriptor/name: Driver Pickup Charges - groups/1/list/3/descriptor/code: pickup_charges groups/1/list/3/value: ₹ 10 groups/1/list/4/descriptor/name: Nominal Fare groups/1/list/4/descriptor/short_desc: Driver may quote extra to cover for traffic, chance of return trip, etc. - groups/1/list/4/descriptor/code: nominal_fare groups/1/list/4/value: ₹ 10 groups/1/list/5/descriptor/name: Nominal Fare groups/1/list/5/descriptor/short_desc: Driver may quote extra to cover for traffic, chance of return trip, etc. - groups/1/list/5/descriptor/code: waiting_charges groups/1/list/5/value: ₹ 0 / min groups/2/descriptor/name: Waiting Charges - groups/2/descriptor/code: fare_policy groups/2/display: true groups/2/list/1/descriptor/name: Night Charges - groups/2/list/1/descriptor/code: night_charges groups/2/list/1/value: 1.5x of daytime charges applicable at night from 10 PM to 5 PM groups/2/list/2/descriptor/name: Night Shift Start - groups/2/list/2/descriptor/code: night_shift_start_time groups/2/list/2/value: '22:00:00' groups/2/list/3/descriptor/name: Night Shift End - groups/2/list/3/descriptor/code: night_shift_end_time groups/2/list/3/value: '05:00:00' groups/3/descriptor/name: General Information - groups/3/descriptor/code: info groups/3/display: true groups/3/list/1/descriptor/name: Distance to nearest driver - groups/3/list/1/descriptor/code: distance_to_nearest_driver groups/3/list/1/value: 661 m groups/3/list/2/descriptor/name: Wait time upto - groups/3/list/2/descriptor/code: waiting_time_estimated_threshold groups/3/list/2/value: 3 min fulfillment_id: fb5c84d4-1b59-4b9d-96b5-9d79107432c5 payment_id: '1' @@ -2292,9 +2420,7 @@ paths: phone: +91-9897867564 tags: groups/1/descriptor/name: Localization - groups/1/descriptor/code: localization groups/1/display: false - groups/1/list/1/descriptor/code: lang groups/1/list/1/descriptor/name: Language groups/1/list/1/value: en payment: @@ -2304,7 +2430,6 @@ paths: amount: '81' currency: INR transaction_status: PAID - Return updated order with recomputed charges: value: context: @@ -2335,44 +2460,32 @@ paths: code: RIDE tags: groups/1/descriptor/name: Daytime Charges - groups/1/descriptor/code: fare_policy groups/1/display: true groups/1/list/1/descriptor/name: Min Fare upto 2 km groups/1/list/1/value: ₹ 30 upto 2 km groups/1/list/2/descriptor/name: Rate above Min. Fare - groups/1/list/2/descriptor/code: extra_fare groups/1/list/2/value: ₹15 / km groups/1/list/3/descriptor/name: Driver Pickup Charges - groups/1/list/3/descriptor/code: pickup_charges groups/1/list/3/value: ₹ 10 groups/1/list/4/descriptor/name: Nominal Fare groups/1/list/4/descriptor/short_desc: Driver may quote extra to cover for traffic, chance of return trip, etc. - groups/1/list/4/descriptor/code: nominal_fare groups/1/list/4/value: ₹ 10 groups/1/list/5/descriptor/name: Nominal Fare groups/1/list/5/descriptor/short_desc: Driver may quote extra to cover for traffic, chance of return trip, etc. - groups/1/list/5/descriptor/code: waiting_charges groups/1/list/5/value: ₹ 0 / min groups/2/descriptor/name: Waiting Charges - groups/2/descriptor/code: fare_policy groups/2/display: true groups/2/list/1/descriptor/name: Night Charges - groups/2/list/1/descriptor/code: night_charges groups/2/list/1/value: 1.5x of daytime charges applicable at night from 10 PM to 5 PM groups/2/list/2/descriptor/name: Night Shift Start - groups/2/list/2/descriptor/code: night_shift_start_time groups/2/list/2/value: '22:00:00' groups/2/list/3/descriptor/name: Night Shift End - groups/2/list/3/descriptor/code: night_shift_end_time groups/2/list/3/value: '05:00:00' groups/3/descriptor/name: General Information - groups/3/descriptor/code: info groups/3/display: true groups/3/list/1/descriptor/name: Distance to nearest driver - groups/3/list/1/descriptor/code: distance_to_nearest_driver groups/3/list/1/value: 661 m groups/3/list/2/descriptor/name: Wait time upto - groups/3/list/2/descriptor/code: waiting_time_estimated_threshold groups/3/list/2/value: 3 min fulfillment_id: fb5c84d4-1b59-4b9d-96b5-9d79107432c5 payment_id: '1' @@ -2445,9 +2558,7 @@ paths: phone: +91-9897867564 tags: groups/1/descriptor/name: Localization - groups/1/descriptor/code: localization groups/1/display: false - groups/1/list/1/descriptor/code: lang groups/1/list/1/descriptor/name: Language groups/1/list/1/value: en payment: @@ -2457,7 +2568,6 @@ paths: amount: '75' currency: INR transaction_status: NOT-PAID - responses: '200': description: Acknowledgement of message received @@ -2532,44 +2642,32 @@ paths: code: RIDE tags: groups/1/descriptor/name: Daytime Charges - groups/1/descriptor/code: fare_policy groups/1/display: true groups/1/list/1/descriptor/name: Min Fare upto 2 km groups/1/list/1/value: ₹ 30 upto 2 km groups/1/list/2/descriptor/name: Rate above Min. Fare - groups/1/list/2/descriptor/code: extra_fare groups/1/list/2/value: ₹15 / km groups/1/list/3/descriptor/name: Driver Pickup Charges - groups/1/list/3/descriptor/code: pickup_charges groups/1/list/3/value: ₹ 10 groups/1/list/4/descriptor/name: Nominal Fare groups/1/list/4/descriptor/short_desc: Driver may quote extra to cover for traffic, chance of return trip, etc. - groups/1/list/4/descriptor/code: nominal_fare groups/1/list/4/value: ₹ 10 groups/1/list/5/descriptor/name: Nominal Fare groups/1/list/5/descriptor/short_desc: Driver may quote extra to cover for traffic, chance of return trip, etc. - groups/1/list/5/descriptor/code: waiting_charges groups/1/list/5/value: ₹ 0 / min groups/2/descriptor/name: Waiting Charges - groups/2/descriptor/code: fare_policy groups/2/display: true groups/2/list/1/descriptor/name: Night Charges - groups/2/list/1/descriptor/code: night_charges groups/2/list/1/value: 1.5x of daytime charges applicable at night from 10 PM to 5 PM groups/2/list/2/descriptor/name: Night Shift Start - groups/2/list/2/descriptor/code: night_shift_start_time groups/2/list/2/value: '22:00:00' groups/2/list/3/descriptor/name: Night Shift End - groups/2/list/3/descriptor/code: night_shift_end_time groups/2/list/3/value: '05:00:00' groups/3/descriptor/name: General Information - groups/3/descriptor/code: info groups/3/display: true groups/3/list/1/descriptor/name: Distance to nearest driver - groups/3/list/1/descriptor/code: distance_to_nearest_driver groups/3/list/1/value: 661 m groups/3/list/2/descriptor/name: Wait time upto - groups/3/list/2/descriptor/code: waiting_time_estimated_threshold groups/3/list/2/value: 3 min fulfillment_id: fb5c84d4-1b59-4b9d-96b5-9d79107432c5 payment_id: '1' @@ -2642,9 +2740,7 @@ paths: phone: +91-9897867564 tags: groups/1/descriptor/name: Localization - groups/1/descriptor/code: localization groups/1/display: false - groups/1/list/1/descriptor/code: lang groups/1/list/1/descriptor/name: Language groups/1/list/1/value: en payment: @@ -2683,44 +2779,32 @@ paths: code: RIDE tags: groups/1/descriptor/name: Daytime Charges - groups/1/descriptor/code: fare_policy groups/1/display: true groups/1/list/1/descriptor/name: Min Fare upto 2 km groups/1/list/1/value: ₹ 30 upto 2 km groups/1/list/2/descriptor/name: Rate above Min. Fare - groups/1/list/2/descriptor/code: extra_fare groups/1/list/2/value: ₹15 / km groups/1/list/3/descriptor/name: Driver Pickup Charges - groups/1/list/3/descriptor/code: pickup_charges groups/1/list/3/value: ₹ 10 groups/1/list/4/descriptor/name: Nominal Fare groups/1/list/4/descriptor/short_desc: Driver may quote extra to cover for traffic, chance of return trip, etc. - groups/1/list/4/descriptor/code: nominal_fare groups/1/list/4/value: ₹ 10 groups/1/list/5/descriptor/name: Nominal Fare groups/1/list/5/descriptor/short_desc: Driver may quote extra to cover for traffic, chance of return trip, etc. - groups/1/list/5/descriptor/code: waiting_charges groups/1/list/5/value: ₹ 0 / min groups/2/descriptor/name: Waiting Charges - groups/2/descriptor/code: fare_policy groups/2/display: true groups/2/list/1/descriptor/name: Night Charges - groups/2/list/1/descriptor/code: night_charges groups/2/list/1/value: 1.5x of daytime charges applicable at night from 10 PM to 5 PM groups/2/list/2/descriptor/name: Night Shift Start - groups/2/list/2/descriptor/code: night_shift_start_time groups/2/list/2/value: '22:00:00' groups/2/list/3/descriptor/name: Night Shift End - groups/2/list/3/descriptor/code: night_shift_end_time groups/2/list/3/value: '05:00:00' groups/3/descriptor/name: General Information - groups/3/descriptor/code: info groups/3/display: true groups/3/list/1/descriptor/name: Distance to nearest driver - groups/3/list/1/descriptor/code: distance_to_nearest_driver groups/3/list/1/value: 661 m groups/3/list/2/descriptor/name: Wait time upto - groups/3/list/2/descriptor/code: waiting_time_estimated_threshold groups/3/list/2/value: 3 min fulfillment_id: fb5c84d4-1b59-4b9d-96b5-9d79107432c5 payment_id: '1' @@ -2793,9 +2877,7 @@ paths: phone: +91-9897867564 tags: groups/1/descriptor/name: Localization - groups/1/descriptor/code: localization groups/1/display: false - groups/1/list/1/descriptor/code: lang groups/1/list/1/descriptor/name: Language groups/1/list/1/value: en payment: @@ -2834,44 +2916,32 @@ paths: code: RIDE tags: groups/1/descriptor/name: Daytime Charges - groups/1/descriptor/code: fare_policy groups/1/display: true groups/1/list/1/descriptor/name: Min Fare upto 2 km groups/1/list/1/value: ₹ 30 upto 2 km groups/1/list/2/descriptor/name: Rate above Min. Fare - groups/1/list/2/descriptor/code: extra_fare groups/1/list/2/value: ₹15 / km groups/1/list/3/descriptor/name: Driver Pickup Charges - groups/1/list/3/descriptor/code: pickup_charges groups/1/list/3/value: ₹ 10 groups/1/list/4/descriptor/name: Nominal Fare groups/1/list/4/descriptor/short_desc: Driver may quote extra to cover for traffic, chance of return trip, etc. - groups/1/list/4/descriptor/code: nominal_fare groups/1/list/4/value: ₹ 10 groups/1/list/5/descriptor/name: Nominal Fare groups/1/list/5/descriptor/short_desc: Driver may quote extra to cover for traffic, chance of return trip, etc. - groups/1/list/5/descriptor/code: waiting_charges groups/1/list/5/value: ₹ 0 / min groups/2/descriptor/name: Waiting Charges - groups/2/descriptor/code: fare_policy groups/2/display: true groups/2/list/1/descriptor/name: Night Charges - groups/2/list/1/descriptor/code: night_charges groups/2/list/1/value: 1.5x of daytime charges applicable at night from 10 PM to 5 PM groups/2/list/2/descriptor/name: Night Shift Start - groups/2/list/2/descriptor/code: night_shift_start_time groups/2/list/2/value: '22:00:00' groups/2/list/3/descriptor/name: Night Shift End - groups/2/list/3/descriptor/code: night_shift_end_time groups/2/list/3/value: '05:00:00' groups/3/descriptor/name: General Information - groups/3/descriptor/code: info groups/3/display: true groups/3/list/1/descriptor/name: Distance to nearest driver - groups/3/list/1/descriptor/code: distance_to_nearest_driver groups/3/list/1/value: 661 m groups/3/list/2/descriptor/name: Wait time upto - groups/3/list/2/descriptor/code: waiting_time_estimated_threshold groups/3/list/2/value: 3 min fulfillment_id: fb5c84d4-1b59-4b9d-96b5-9d79107432c5 payment_id: '1' @@ -2944,9 +3014,7 @@ paths: phone: +91-9897867564 tags: groups/1/descriptor/name: Localization - groups/1/descriptor/code: localization groups/1/display: false - groups/1/list/1/descriptor/code: lang groups/1/list/1/descriptor/name: Language groups/1/list/1/value: en payment: @@ -2985,44 +3053,32 @@ paths: code: RIDE tags: groups/1/descriptor/name: Daytime Charges - groups/1/descriptor/code: fare_policy groups/1/display: true groups/1/list/1/descriptor/name: Min Fare upto 2 km groups/1/list/1/value: ₹ 30 upto 2 km groups/1/list/2/descriptor/name: Rate above Min. Fare - groups/1/list/2/descriptor/code: extra_fare groups/1/list/2/value: ₹15 / km groups/1/list/3/descriptor/name: Driver Pickup Charges - groups/1/list/3/descriptor/code: pickup_charges groups/1/list/3/value: ₹ 10 groups/1/list/4/descriptor/name: Nominal Fare groups/1/list/4/descriptor/short_desc: Driver may quote extra to cover for traffic, chance of return trip, etc. - groups/1/list/4/descriptor/code: nominal_fare groups/1/list/4/value: ₹ 10 groups/1/list/5/descriptor/name: Nominal Fare groups/1/list/5/descriptor/short_desc: Driver may quote extra to cover for traffic, chance of return trip, etc. - groups/1/list/5/descriptor/code: waiting_charges groups/1/list/5/value: ₹ 0 / min groups/2/descriptor/name: Waiting Charges - groups/2/descriptor/code: fare_policy groups/2/display: true groups/2/list/1/descriptor/name: Night Charges - groups/2/list/1/descriptor/code: night_charges groups/2/list/1/value: 1.5x of daytime charges applicable at night from 10 PM to 5 PM groups/2/list/2/descriptor/name: Night Shift Start - groups/2/list/2/descriptor/code: night_shift_start_time groups/2/list/2/value: '22:00:00' groups/2/list/3/descriptor/name: Night Shift End - groups/2/list/3/descriptor/code: night_shift_end_time groups/2/list/3/value: '05:00:00' groups/3/descriptor/name: General Information - groups/3/descriptor/code: info groups/3/display: true groups/3/list/1/descriptor/name: Distance to nearest driver - groups/3/list/1/descriptor/code: distance_to_nearest_driver groups/3/list/1/value: 661 m groups/3/list/2/descriptor/name: Wait time upto - groups/3/list/2/descriptor/code: waiting_time_estimated_threshold groups/3/list/2/value: 3 min fulfillment_id: fb5c84d4-1b59-4b9d-96b5-9d79107432c5 payment_id: '1' @@ -3095,9 +3151,7 @@ paths: phone: +91-9897867564 tags: groups/1/descriptor/name: Localization - groups/1/descriptor/code: localization groups/1/display: false - groups/1/list/1/descriptor/code: lang groups/1/list/1/descriptor/name: Language groups/1/list/1/value: en payment: @@ -3107,7 +3161,6 @@ paths: amount: '81' currency: INR transaction_status: NOT-PAID - responses: '200': description: Acknowledgement of message received @@ -3165,7 +3218,6 @@ paths: message: feedback_ack: true rating_ack: true - responses: '200': description: Acknowledgement of message received @@ -3232,9 +3284,8 @@ paths: bap_uri: https://api.example-bap.com/pilot/bap/cab/v1 message: phone: '+918068870525' - email: support@nammayatri.in - url: https://support.nammayatri.com/gethelp - + email: support@example-bpp.com + url: https://support.example-bpp.com/gethelp responses: '200': description: Acknowledgement of message received @@ -3284,7 +3335,6 @@ paths: city: std:080 core_version: 0.9.4 action: get_cancellation_reasons - responses: '200': description: Acknowledgement of message received @@ -3383,7 +3433,6 @@ paths: $ref: '#/components/schemas/Error' required: - message - /get_return_reasons: post: tags: @@ -3417,7 +3466,6 @@ paths: $ref: '#/components/schemas/Error' required: - message - /return_reasons: post: tags: @@ -3485,7 +3533,6 @@ paths: message_id: 6743e9e2-4fb5-487c-92b7-13ba8018f176 city: std:080 core_version: 0.9.4 - responses: '200': description: Acknowledgement of message received @@ -3544,7 +3591,6 @@ paths: - RIDE - DRIVER - VEHICLE - responses: '200': description: Acknowledgement of message received @@ -3674,7 +3720,6 @@ paths: message: rating_value: '4' rating_category: RIDE - responses: '200': description: Acknowledgement of message received @@ -3731,7 +3776,6 @@ paths: - id: 1 question: Tell us your feedback answer_type: text - responses: '200': description: Acknowledgement of message received @@ -4932,4 +4976,4 @@ components: energy_type: type: string registration: - type: string \ No newline at end of file + type: string