diff --git a/api/build/build.yaml b/api/build/build.yaml index aead4fb7..861620bc 100644 --- a/api/build/build.yaml +++ b/api/build/build.yaml @@ -12462,6 +12462,10 @@ x-tlc: Terms and the ONDC Network Policy or the Static Terms and the Network Participant Agreement, the terms of the ONDC Network Policy or the Network Participant Agreement (as the case may be) will prevail. +x-featureui: + filenames: + - log-verification.md + - xinput-form-response.md x-sandboxui: dropdown: - environment-name: staging diff --git a/api/components/app.js b/api/components/app.js index ba468fd5..57010587 100644 --- a/api/components/app.js +++ b/api/components/app.js @@ -608,7 +608,7 @@ function addEnumTag(base, layer) { base["x-attributes"] = layer["attributes"]; // base["x-errorcodes"] = layer["error_codes"]; base["x-tlc"] = layer["tlc"]; - // base["x-featureui"] = layer["feature-ui"] + base["x-featureui"] = layer["feature-ui"] // base["x-testcasesui"] = layer["testcases-ui"] base["x-sandboxui"] = layer["sandbox-ui"] base["x-changeLog"] = layer["changeLog"] diff --git a/api/components/docs/index.yaml b/api/components/docs/index.yaml index dd1b3260..9a74fa0c 100644 --- a/api/components/docs/index.yaml +++ b/api/components/docs/index.yaml @@ -1,2 +1,3 @@ filenames: - log-verification.md + - xinput-form-response.md diff --git a/api/components/docs/xinput-form-response.md b/api/components/docs/xinput-form-response.md new file mode 100644 index 00000000..7a884a79 --- /dev/null +++ b/api/components/docs/xinput-form-response.md @@ -0,0 +1,173 @@ +# XInput + +This XInput schema facilitates seamless communication between buyers and sellers by allowing the exchange of additional information through forms. +Sellers can request specific details using custom forms, and buyers respond with the necessary information, ensuring a smooth transaction process. +The differentiation in MIME types and additional settings, such as resubmit and multiple submissions, adds flexibility to the form interaction between participants. + +## Seller-Side Form: + +``` +{ + "xinput": { + "head": { + "descriptor": { + "name": "Form Details" + }, + "index": { + "min": 0, + "cur": 0, + "max": 0 + }, + "headings": ["Form Details"] + }, + "form": { + "id": "", + "mime_type": "", + "url": "", + "multiple_sumbissions": + }, + "required": true + } +} +``` + +- `head`: Contains basic details regarding the form such as form name, index. + + - `name`: Describes the form name. + - `index`: Specifies the minimum, current, and maximum indexes. + - `min`: Minimum index value. + - `cur`: Current index value. + - `max`: Maximum index value. + - `headings`: Array containing all the form headings. +- `form`: Represents the form itself. + + - `id`: Unique ID associated with the form. + - `mime_type`: Type of MIME. + - `url`: Endpoint where the form is hosted. + - `multiple_sumbissions`: Indicates whether multiple submissions are allowed. + + ### Additional Behavior: + + When the `cur` and `max` index values are the same, there will be an additional consecutive `action` and `on_action` call. The `action` call will include the `submission_id`, and the `on_action` call will provide the confirmation response. + +### mime_type: + + Describes the type of MIME.It can be one of the thee possible values: application/html or text/html or text/html-multi. + +- **text/html**: + - If the mime_type field is set to text/html, it indicates that the Seller App expects the Buyer App to retrieve and render an HTML document. To handle this scenario, the Buyer App should perform the following steps: + - Initiate a Fetch Request: + The Buyer App must send an HTTP fetch request to the URL provided by the Seller App. This URL is included in the xinput object as part of on_action calls. + - Process the Response: + When the Seller App receives this request, it will respond with the complete HTML document. + - Render the HTML Document: + Once the complete HTML document is retrieved, the Buyer App must render it on the user interface as intended. This could involve displaying it within a web view or a similar component in the app, ensuring that the user has a seamless and interactive experience. + [![Image](https://github.com/ONDC-Official/ONDC-FIS-Specifications/raw/branchName/api/components/docs/images/xinput.png)](https://github.com/ONDC-Official/ONDC-FIS-Specifications/raw/branchName/api/components/docs/images/xinput.png) + +The rendered HTML-based form structure looks like this: + +````html +
+ + + + + + +
+```` + +The form gets submitted at the specified path in action. On submission, if successful, the buyer is provided with a submission_id. + +```shell +{ + "submission_id": "f5a9f4fe-fc3a-4432-aa2d-d397724a5061" +} +``` + +If an error occurs while submitting the form, then with an appropriate error code, a message will be sent as part of response. + +```shell +{ + "message": { + "ack": { + "status": "NACK" + } + }, + "error": { + "code": "07", + "message": "Data sent in request is not correct" + } +} +``` + +Note: While submitting text/html form, API headers will contain [Content-Type:"multipart/form-data"]. + +- **application/html**: + +On the other hand, if the mime_type is set to application/html, the seller provides a link to an external HTML page where the buyer can submit the required information. + +- **text/html-multi**: + If the form type is text/html-multi, the buyer app can include multiple form fields similar to the original form, allowing for the addition of extra details. + +````html +
+ + + + + + +
+ +Buyer app needs to follow the below construct while submitting the form by capturing the multiple instances of the same form. +``` + { + "dob": ["17/11/2021", "19/12/2003"], + "panValue": ["RKPUS3413T", "SKPUS3413L"] + } + +``` + + + +## Form response + +There are 2 possible ways to get the latest status after submitting a form + +1. #### Form response for text/html + On successfull submission the buyer is provided with a submission_id, which the buyer can use to send as part of next call. + +```shell +{ + "xinput": { + "form_response": { + "status": "", + "submission_id": "" + } + } +} +``` + + +- `form_response`: Represents the form info after submitting a form. + + - `status`: Denotes the latest state of the form after submission. Possible values include SUCCESS, PENDING, REJECTED, APPROVED. + - `submission_id`: Contains the unique ID that the buyer receives upon successful form submission. + +2. #### Form response for application/html + To provide the buyer with latest form status, seller sends an unsolicated on_status call with Submission_ID. Additionally, if the seller doesn't sends an unsolicated call, the buyer can request the latest form status by sending a status call with the ref_id. + +```shell +{ + "xinput": { + "form_response": { + "status": "", + "submission_id": "" + } + } +} +``` + +- The seller responds with the latest status of submitted form corresponding to the submission_id ("Submission_ID") that was submitted earlier by the buyer. +```` \ No newline at end of file diff --git a/api/components/index.yaml b/api/components/index.yaml index d1a1f12c..f02697f8 100644 --- a/api/components/index.yaml +++ b/api/components/index.yaml @@ -15,4 +15,6 @@ tlc: sandbox-ui: $ref: "./sandbox/index.yaml" changeLog: - $ref: "./docs/changeLog/index.yaml" + $ref: "./docs/changeLog/index.yaml" +feature-ui: + $ref: "./docs/index.yaml" diff --git a/ui/build.js b/ui/build.js index a204bd21..1a18bf10 100644 --- a/ui/build.js +++ b/ui/build.js @@ -1 +1 @@ -let build_spec = {"openapi":"3.0.0","info":{"title":"ONDC Specification","description":"ONDC Specification","version":"2.0.0"},"security":[{"SubscriberAuth":[]}],"paths":{"/search":{"post":{"tags":["Provider Platform","Gateway"],"description":"Consumer Platform declares the customer's intent to buy/avail products or services","requestBody":{"content":{"application/json":{"schema":{"type":"object","additionalProperties":false,"properties":{"context":{"allOf":[{"$ref":"#/components/schemas/Context"},{"properties":{"action":{"enum":["search"]}}}]},"message":{"type":"object","additionalProperties":false,"properties":{"intent":{"$ref":"#/components/schemas/Intent"}}}},"required":["context","message"]}}}},"responses":{"default":{"$ref":"#/paths/~1init/post/responses/default"}}}},"/select":{"post":{"tags":["Provider Platform"],"description":"Consumer Platform declares the customer's cart (or equivalent) created by selecting objects from the catalog","requestBody":{"content":{"application/json":{"schema":{"type":"object","additionalProperties":false,"properties":{"context":{"allOf":[{"$ref":"#/components/schemas/Context"},{"type":"object","properties":{"action":{"enum":["select"]}},"required":["action"]}]},"message":{"type":"object","additionalProperties":false,"properties":{"order":{"$ref":"#/components/schemas/Order"}},"required":["order"]}},"required":["context","message"]}}}},"responses":{"default":{"$ref":"#/paths/~1init/post/responses/default"}}}},"/init":{"post":{"tags":["Provider Platform"],"description":"Initialize an order by providing billing and/or shipping details","requestBody":{"content":{"application/json":{"schema":{"type":"object","additionalProperties":false,"properties":{"context":{"allOf":[{"$ref":"#/components/schemas/Context"},{"type":"object","properties":{"action":{"enum":["init"]}},"required":["action"]}]},"message":{"type":"object","additionalProperties":false,"properties":{"order":{"$ref":"#/components/schemas/Order"}},"required":["order"]}},"required":["context","message"]}}}},"responses":{"default":{"description":"Acknowledgement of message received after successful validation of schema and signature","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"object","properties":{"ack":{"allOf":[{"$ref":"#/components/schemas/Ack"},{"type":"object"},{"properties":{"status":{"enum":["ACK","NACK"]}}}]}},"required":["ack"]},"error":{"$ref":"#/components/schemas/Error"}},"required":["message"]}}}}}}},"/confirm":{"post":{"tags":["Provider Platform"],"description":"Initialize an order by providing billing and/or shipping details","requestBody":{"content":{"application/json":{"schema":{"type":"object","additionalProperties":false,"properties":{"context":{"allOf":[{"$ref":"#/components/schemas/Context"},{"type":"object","properties":{"action":{"enum":["confirm"]}},"required":["action"]}]},"message":{"type":"object","additionalProperties":false,"properties":{"order":{"$ref":"#/components/schemas/Order"}},"required":["order"]}},"required":["context","message"]}}}},"responses":{"default":{"$ref":"#/paths/~1init/post/responses/default"}}}},"/status":{"post":{"tags":["Provider Platform"],"description":"Fetch the latest order object","requestBody":{"content":{"application/json":{"schema":{"type":"object","additionalProperties":false,"properties":{"context":{"allOf":[{"$ref":"#/components/schemas/Context"},{"type":"object","properties":{"action":{"enum":["status"]}},"required":["action"]}]},"message":{"type":"object","additionalProperties":false,"properties":{"ref_id":{"$ref":"#/components/schemas/Order/properties/id"},"order_id":{"$ref":"#/components/schemas/Order/properties/id"}}}},"required":["context","message"]}}}},"responses":{"default":{"$ref":"#/paths/~1init/post/responses/default"}}}},"/track":{"post":{"tags":["Provider Platform"],"description":"Track an active order","requestBody":{"content":{"application/json":{"schema":{"type":"object","additionalProperties":false,"properties":{"context":{"allOf":[{"$ref":"#/components/schemas/Context"},{"type":"object","properties":{"action":{"enum":["track"]}},"required":["action"]}]},"message":{"type":"object","additionalProperties":false,"properties":{"order_id":{"$ref":"#/components/schemas/Order/properties/id"},"callback_url":{"type":"string","format":"uri"}},"required":["order_id"]}},"required":["context","message"]}}}},"responses":{"default":{"$ref":"#/paths/~1init/post/responses/default"}}}},"/cancel":{"post":{"tags":["Provider Platform"],"description":"Cancel an order","requestBody":{"content":{"application/json":{"schema":{"type":"object","additionalProperties":false,"properties":{"context":{"allOf":[{"$ref":"#/components/schemas/Context"},{"type":"object","properties":{"action":{"enum":["cancel"]}},"required":["action"]}]},"message":{"type":"object","additionalProperties":false,"properties":{"order_id":{"$ref":"#/components/schemas/Order/properties/id"},"cancellation_reason_id":{"$ref":"#/components/schemas/Option/properties/id"},"descriptor":{"$ref":"#/components/schemas/Descriptor"}},"required":["order_id"]}},"required":["context","message"]}}}},"responses":{"default":{"$ref":"#/paths/~1init/post/responses/default"}}}},"/update":{"post":{"tags":["Provider Platform"],"description":"Remove object","requestBody":{"content":{"application/json":{"schema":{"type":"object","additionalProperties":false,"properties":{"context":{"allOf":[{"$ref":"#/components/schemas/Context"},{"type":"object","properties":{"action":{"enum":["update"]}},"required":["action"]}]},"message":{"type":"object","additionalProperties":false,"properties":{"update_target":{"description":"Comma separated values of order objects being updated. For example: ```\"update_target\":\"item,billing,fulfillment\"```","type":"string"},"order":{"description":"Updated order object","allOf":[{"$ref":"#/components/schemas/Order"}]}},"required":["update_target","order"]}},"required":["context","message"]}}}},"responses":{"default":{"$ref":"#/paths/~1init/post/responses/default"}}}},"/rating":{"post":{"tags":["Provider Platform"],"description":"Provide feedback on a service","requestBody":{"content":{"application/json":{"schema":{"type":"object","additionalProperties":false,"properties":{"context":{"allOf":[{"$ref":"#/components/schemas/Context"},{"type":"object","properties":{"action":{"enum":["rating"]}},"required":["action"]}]},"message":{"type":"object","properties":{"ratings":{"type":"array","items":{"$ref":"#/components/schemas/Rating"}}}}},"required":["context","message"]}}}},"responses":{"default":{"$ref":"#/paths/~1init/post/responses/default"}}}},"/support":{"post":{"tags":["Provider Platform"],"description":"Contact support","requestBody":{"content":{"application/json":{"schema":{"type":"object","additionalProperties":false,"properties":{"context":{"allOf":[{"$ref":"#/components/schemas/Context"},{"type":"object","properties":{"action":{"enum":["support"]}},"required":["action"]}]},"message":{"type":"object","properties":{"support":{"$ref":"#/components/schemas/Support"}}}},"required":["context","message"]}}}},"responses":{"default":{"$ref":"#/paths/~1init/post/responses/default"}}}},"/on_search":{"post":{"tags":["Consumer Platform"],"description":"Provider Platform sends its catalog in response to a search request.","requestBody":{"content":{"application/json":{"schema":{"type":"object","additionalProperties":false,"properties":{"context":{"allOf":[{"$ref":"#/components/schemas/Context"},{"type":"object","properties":{"action":{"enum":["on_search"]}},"required":["action"]}]},"message":{"type":"object","additionalProperties":false,"properties":{"catalog":{"$ref":"#/components/schemas/Catalog"}},"required":["catalog"]},"error":{"$ref":"#/components/schemas/Error"}},"required":["context","message"]}}}},"responses":{"default":{"$ref":"#/paths/~1init/post/responses/default"}}}},"/on_select":{"post":{"tags":["Consumer Platform"],"description":"Send draft order object with quoted price for selected items","requestBody":{"content":{"application/json":{"schema":{"type":"object","additionalProperties":false,"properties":{"context":{"allOf":[{"$ref":"#/components/schemas/Context"},{"type":"object","properties":{"action":{"enum":["on_select"]}},"required":["action"]}]},"message":{"type":"object","additionalProperties":false,"properties":{"order":{"$ref":"#/components/schemas/Order"}}},"error":{"$ref":"#/components/schemas/Error"}},"required":["context","message"]}}}},"responses":{"default":{"$ref":"#/paths/~1init/post/responses/default"}}}},"/on_init":{"post":{"tags":["Consumer Platform"],"description":"Send order object with payment details updated","requestBody":{"content":{"application/json":{"schema":{"type":"object","additionalProperties":false,"properties":{"context":{"allOf":[{"$ref":"#/components/schemas/Context"},{"type":"object","properties":{"action":{"enum":["on_init"]}},"required":["action"]}]},"message":{"type":"object","additionalProperties":false,"properties":{"order":{"$ref":"#/components/schemas/Order"}},"required":["order"]},"error":{"$ref":"#/components/schemas/Error"}},"required":["context","message"]}}}},"responses":{"default":{"$ref":"#/paths/~1init/post/responses/default"}}}},"/on_confirm":{"post":{"tags":["Consumer Platform"],"description":"Send active order object","requestBody":{"content":{"application/json":{"schema":{"type":"object","additionalProperties":false,"properties":{"context":{"allOf":[{"$ref":"#/components/schemas/Context"},{"type":"object","properties":{"action":{"enum":["on_confirm"]}},"required":["action"]}]},"message":{"type":"object","additionalProperties":false,"properties":{"order":{"$ref":"#/components/schemas/Order"}},"required":["order"]},"error":{"$ref":"#/components/schemas/Error"}},"required":["context"]}}}},"responses":{"default":{"$ref":"#/paths/~1init/post/responses/default"}}}},"/on_track":{"post":{"tags":["Consumer Platform"],"description":"Send tracking details of an active order","requestBody":{"content":{"application/json":{"schema":{"type":"object","additionalProperties":false,"properties":{"context":{"allOf":[{"$ref":"#/components/schemas/Context"},{"type":"object","properties":{"action":{"enum":["on_track"]}},"required":["action"]}]},"message":{"type":"object","additionalProperties":false,"properties":{"tracking":{"$ref":"#/components/schemas/Tracking"}},"required":["tracking"]},"error":{"$ref":"#/components/schemas/Error"}},"required":["context","message"]}}}},"responses":{"default":{"$ref":"#/paths/~1init/post/responses/default"}}}},"/on_cancel":{"post":{"tags":["Consumer Platform"],"description":"Send cancellation request_id with reasons list in case of cancellation request. Else send cancelled order object","requestBody":{"content":{"application/json":{"schema":{"type":"object","additionalProperties":false,"properties":{"context":{"allOf":[{"$ref":"#/components/schemas/Context"},{"type":"object","properties":{"action":{"enum":["on_cancel"]}},"required":["action"]}]},"message":{"type":"object","additionalProperties":false,"properties":{"order":{"$ref":"#/components/schemas/Order"}},"required":["order"]},"error":{"$ref":"#/components/schemas/Error"}},"required":["context","message"]}}}},"responses":{"default":{"$ref":"#/paths/~1init/post/responses/default"}}}},"/on_update":{"post":{"tags":["Consumer Platform"],"description":"Returns updated service with updated runtime object","requestBody":{"content":{"application/json":{"schema":{"type":"object","additionalProperties":false,"properties":{"context":{"allOf":[{"$ref":"#/components/schemas/Context"},{"type":"object","properties":{"action":{"enum":["on_update"]}},"required":["action"]}]},"message":{"type":"object","additionalProperties":false,"properties":{"order":{"$ref":"#/components/schemas/Order"}},"required":["order"]},"error":{"$ref":"#/components/schemas/Error"}},"required":["context","message"]}}}},"responses":{"default":{"$ref":"#/paths/~1init/post/responses/default"}}}},"/on_status":{"post":{"tags":["Consumer Platform"],"description":"Fetch the status of a Service","requestBody":{"content":{"application/json":{"schema":{"type":"object","additionalProperties":false,"properties":{"context":{"allOf":[{"$ref":"#/components/schemas/Context"},{"type":"object","properties":{"action":{"enum":["on_status"]}},"required":["action"]}]},"message":{"type":"object","additionalProperties":false,"properties":{"order":{"$ref":"#/components/schemas/Order"}},"required":["order"]},"error":{"$ref":"#/components/schemas/Error"}},"required":["context","message"]}}}},"responses":{"default":{"$ref":"#/paths/~1init/post/responses/default"}}}},"/on_rating":{"post":{"tags":["Consumer Platform"],"description":"Provide feedback on a service","requestBody":{"content":{"application/json":{"schema":{"type":"object","additionalProperties":false,"properties":{"context":{"allOf":[{"$ref":"#/components/schemas/Context"},{"type":"object","properties":{"action":{"enum":["on_rating"]}},"required":["action"]}]},"message":{"type":"object","properties":{"feedback_form":{"description":"A feedback form to allow the user to provide additional information on the rating provided","allOf":[{"$ref":"#/components/schemas/XInput"}]}}},"error":{"$ref":"#/components/schemas/Error"}},"required":["context","message"]}}}},"responses":{"default":{"$ref":"#/paths/~1init/post/responses/default"}}}},"/on_support":{"post":{"tags":["Consumer Platform"],"description":"Contact Support","requestBody":{"content":{"application/json":{"schema":{"type":"object","additionalProperties":false,"properties":{"context":{"allOf":[{"$ref":"#/components/schemas/Context"},{"type":"object","properties":{"action":{"enum":["on_support"]}},"required":["action"]}]},"message":{"type":"object","properties":{"support":{"$ref":"#/components/schemas/Support"}}},"error":{"$ref":"#/components/schemas/Error"}},"required":["context","message"]}}}},"responses":{"default":{"$ref":"#/paths/~1init/post/responses/default"}}}}},"components":{"securitySchemes":{"SubscriberAuth":{"type":"apiKey","in":"header","name":"Authorization","description":"Signature of message body using Consumer Platform or Provider Platform subscriber's signing public key.

Format:

Authorization : Signature keyId=\"{subscriber_id}|{unique_key_id}|{algorithm}\",algorithm=\"ed25519\",created=\"1606970629\",expires=\"1607030629\",headers=\"(created) (expires) digest\",signature=\"Base64(signing string)\""}},"schemas":{"Ack":{"description":"Describes the acknowledgement sent in response to an API call. If the implementation uses HTTP/S, then Ack must be returned in the same session. Every API call to a BPP must be responded to with an Ack whether the BPP intends to respond with a callback or not. This has one property called `status` that indicates the status of the Acknowledgement.","type":"object","additionalProperties":false,"properties":{"status":{"type":"string","description":"The status of the acknowledgement. If the request passes the validation criteria of the BPP, then this is set to ACK. If a BPP responds with status = `ACK` to a request, it is required to respond with a callback. If the request fails the validation criteria, then this is set to NACK. Additionally, if a BPP does not intend to respond with a callback even after the request meets the validation criteria, it should set this value to `NACK`.","enum":["ACK","NACK"]},"tags":{"description":"A list of tags containing any additional information sent along with the Acknowledgement.","type":"array","items":{"$ref":"#/components/schemas/TagGroup"}}}},"AddOn":{"description":"Describes an additional item offered as a value-addition to a product or service. This does not exist independently in a catalog and is always associated with an item.","type":"object","additionalProperties":false,"properties":{"id":{"description":"Provider-defined ID of the add-on","type":"string"},"descriptor":{"$ref":"#/components/schemas/Descriptor"},"price":{"$ref":"#/components/schemas/Price"},"quantity":{"$ref":"#/components/schemas/ItemQuantity"}}},"Address":{"description":"Describes a postal address.","type":"string"},"Agent":{"description":"Describes the direct performer, driver or executor that fulfills an order. It is usually a person. But in some rare cases, it could be a non-living entity like a drone, or a bot. Some examples of agents are Doctor in the healthcare sector, a driver in the mobility sector, or a delivery person in the logistics sector. This object can be set at any stage of the order lifecycle. This can be set at the discovery stage when the BPP wants to provide details on the agent fulfilling the order, like in healthcare, where the doctor's name appears during search. This object can also used to search for a particular person that the customer wants fulfilling an order. Sometimes, this object gets instantiated after the order is confirmed, like in the case of on-demand taxis, where the driver is assigned after the user confirms the ride.","type":"object","additionalProperties":false,"properties":{"person":{"$ref":"#/components/schemas/Person"},"contact":{"$ref":"#/components/schemas/Contact"},"organization":{"$ref":"#/components/schemas/Organization"},"rating":{"$ref":"#/components/schemas/Rating/properties/value"}}},"Authorization":{"description":"Describes an authorization mechanism used to start or end the fulfillment of an order. For example, in the mobility sector, the driver may require a one-time password to initiate the ride. In the healthcare sector, a patient may need to provide a password to open a video conference link during a teleconsultation.","type":"object","additionalProperties":false,"properties":{"type":{"description":"Type of authorization mechanism used. The allowed values for this field can be published as part of the network policy.","type":"string"},"token":{"description":"Token used for authorization. This is typically generated at the BPP. The BAP can send this value to the user via any channel that it uses to authenticate the user like SMS, Email, Push notification, or in-app rendering.","type":"string"},"valid_from":{"description":"Timestamp in RFC3339 format from which token is valid","type":"string","format":"date-time"},"valid_to":{"description":"Timestamp in RFC3339 format until which token is valid","type":"string","format":"date-time"},"status":{"description":"Status of the token","type":"string"}}},"Billing":{"description":"Describes the billing details of an entity.
This has properties like name,organization,address,email,phone,time,tax_number, created_at,updated_at","type":"object","additionalProperties":false,"properties":{"name":{"description":"Name of the billable entity","type":"string"},"organization":{"description":"Details of the organization being billed.","allOf":[{"$ref":"#/components/schemas/Organization"}]},"address":{"description":"The address of the billable entity","allOf":[{"$ref":"#/components/schemas/Address"}]},"state":{"description":"The state where the billable entity resides. This is important for state-level tax calculation","allOf":[{"$ref":"#/components/schemas/State"}]},"city":{"description":"The city where the billable entity resides.","allOf":[{"$ref":"#/components/schemas/City"}]},"email":{"description":"Email address where the bill is sent to","type":"string","format":"email"},"phone":{"description":"Phone number of the billable entity","type":"string"},"time":{"description":"Details regarding the billing period","allOf":[{"$ref":"#/components/schemas/Time"}]},"tax_id":{"description":"ID of the billable entity as recognized by the taxation authority","type":"string"}}},"Cancellation":{"description":"Describes a cancellation event","type":"object","additionalProperties":false,"properties":{"time":{"description":"Date-time when the order was cancelled by the buyer","type":"string","format":"date-time"},"cancelled_by":{"type":"string","enum":["CONSUMER","PROVIDER"]},"reason":{"description":"The reason for cancellation","allOf":[{"$ref":"#/components/schemas/Option"}]},"additional_description":{"description":"Any additional information regarding the nature of cancellation","allOf":[{"$ref":"#/components/schemas/Descriptor"}]}}},"CancellationTerm":{"description":"Describes the cancellation terms of an item or an order. This can be referenced at an item or order level. Item-level cancellation terms can override the terms at the order level.","type":"object","additionalProperties":false,"properties":{"fulfillment_state":{"description":"The state of fulfillment during which this term is applicable.","allOf":[{"$ref":"#/components/schemas/FulfillmentState"}]},"reason_required":{"description":"Indicates whether a reason is required to cancel the order","type":"boolean"},"cancel_by":{"description":"Information related to the time of cancellation.","allOf":[{"$ref":"#/components/schemas/Time"}]},"cancellation_fee":{"$ref":"#/components/schemas/Fee"},"xinput":{"$ref":"#/components/schemas/XInput"},"external_ref":{"$ref":"#/components/schemas/MediaFile"},"cancellation_eligible":{"description":"Indicates if cancellation is eligible","type":"boolean"}}},"Catalog":{"description":"Describes the products or services offered by a BPP. This is typically sent as the response to a search intent from a BAP. The payment terms, offers and terms of fulfillment supported by the BPP can also be included here. The BPP can show hierarchical nature of products/services in its catalog using the parent_category_id in categories. The BPP can also send a ttl (time to live) in the context which is the duration for which a BAP can cache the catalog and use the cached catalog.
This has properties like bbp/descriptor,bbp/categories,bbp/fulfillments,bbp/payments,bbp/offers,bbp/providers and exp
This is used in the following situations.
  • This is typically used in the discovery stage when the BPP sends the details of the products and services it offers as response to a search intent from the BAP.
","type":"object","additionalProperties":false,"properties":{"descriptor":{"$ref":"#/components/schemas/Descriptor"},"fulfillments":{"description":"Fulfillment modes offered at the BPP level. This is used when a BPP itself offers fulfillments on behalf of the providers it has onboarded.","type":"array","items":{"$ref":"#/components/schemas/Fulfillment"}},"payments":{"description":"Payment terms offered by the BPP for all transactions. This can be overriden at the provider level.","type":"array","items":{"$ref":"#/components/schemas/Payment"}},"offers":{"description":"Offers at the BPP-level. This is common across all providers onboarded by the BPP.","type":"array","items":{"$ref":"#/components/schemas/Offer"}},"providers":{"type":"array","items":{"$ref":"#/components/schemas/Provider"}},"tags":{"type":"array","items":{"$ref":"#/components/schemas/TagGroup"}},"exp":{"description":"Timestamp after which catalog will expire","type":"string","format":"date-time"},"ttl":{"description":"Duration in seconds after which this catalog will expire","type":"string"}}},"Category":{"description":"A label under which a collection of items can be grouped.","type":"object","additionalProperties":false,"properties":{"id":{"description":"ID of the category","type":"string"},"parent_category_id":{"$ref":"#/components/schemas/Category/properties/id"},"descriptor":{"$ref":"#/components/schemas/Descriptor"},"time":{"$ref":"#/components/schemas/Time"},"ttl":{"description":"Time to live for an instance of this schema"},"tags":{"type":"array","items":{"$ref":"#/components/schemas/TagGroup"}}}},"Circle":{"description":"Describes a circular region of a specified radius centered at a specified GPS coordinate.","type":"object","additionalProperties":false,"properties":{"gps":{"$ref":"#/components/schemas/Gps"},"radius":{"$ref":"#/components/schemas/Scalar"}}},"City":{"description":"Describes a city","type":"object","additionalProperties":false,"properties":{"name":{"description":"Name of the city","type":"string"},"code":{"description":"City code","type":"string"}}},"Contact":{"description":"Describes the contact information of an entity","type":"object","additionalProperties":false,"properties":{"phone":{"type":"string"},"email":{"type":"string"},"jcard":{"type":"object","additionalProperties":false,"description":"A Jcard object as per draft-ietf-jcardcal-jcard-03 specification"}}},"Context":{"description":"Every API call in beckn protocol has a context. It provides a high-level overview to the receiver about the nature of the intended transaction. Typically, it is the BAP that sets the transaction context based on the consumer's location and action on their UI. But sometimes, during unsolicited callbacks, the BPP also sets the transaction context but it is usually the same as the context of a previous full-cycle, request-callback interaction between the BAP and the BPP. The context object contains four types of fields.
  1. Demographic information about the transaction using fields like `domain`, `country`, and `region`.
  2. Addressing details like the sending and receiving platform's ID and API URL.
  3. Interoperability information like the protocol version that implemented by the sender and,
  4. Transaction details like the method being called at the receiver's endpoint, the transaction_id that represents an end-to-end user session at the BAP, a message ID to pair requests with callbacks, a timestamp to capture sending times, a ttl to specifiy the validity of the request, and a key to encrypt information if necessary.
This object must be passed in every interaction between a BAP and a BPP. In HTTP/S implementations, it is not necessary to send the context during the synchronous response. However, in asynchronous protocols, the context must be sent during all interactions,","type":"object","additionalProperties":false,"properties":{"domain":{"description":"Domain code that is relevant to this transaction context","allOf":[{"$ref":"#/components/schemas/Domain/properties/code","type":"string"}]},"location":{"description":"The location where the transaction is intended to be fulfilled.","allOf":[{"$ref":"#/components/schemas/Location"}]},"action":{"description":"The Beckn protocol method being called by the sender and executed at the receiver.","type":"string"},"version":{"type":"string","description":"Version of transaction protocol being used by the sender."},"bap_id":{"description":"Subscriber ID of the BAP","allOf":[{"description":"A globally unique identifier of the platform, Typically it is the fully qualified domain name (FQDN) of the platform.","type":"string"}]},"bap_uri":{"description":"Subscriber URL of the BAP for accepting callbacks from BPPs.","allOf":[{"description":"The callback URL of the Subscriber. This should necessarily contain the same domain name as set in `subscriber_id``.","type":"string","format":"uri"}]},"bpp_id":{"description":"Subscriber ID of the BPP","allOf":[{"$ref":"#/components/schemas/Context/properties/bap_id/allOf/0"}]},"bpp_uri":{"description":"Subscriber URL of the BPP for accepting calls from BAPs.","allOf":[{"$ref":"#/components/schemas/Context/properties/bap_uri/allOf/0"}]},"transaction_id":{"description":"This is a unique value which persists across all API calls from `search` through `confirm`. This is done to indicate an active user session across multiple requests. The BPPs can use this value to push personalized recommendations, and dynamic offerings related to an ongoing transaction despite being unaware of the user active on the BAP.","type":"string","format":"uuid"},"message_id":{"description":"This is a unique value which persists during a request / callback cycle. Since beckn protocol APIs are asynchronous, BAPs need a common value to match an incoming callback from a BPP to an earlier call. This value can also be used to ignore duplicate messages coming from the BPP. It is recommended to generate a fresh message_id for every new interaction. When sending unsolicited callbacks, BPPs must generate a new message_id.","type":"string","format":"uuid"},"timestamp":{"description":"Time of request generation in RFC3339 format","type":"string","format":"date-time"},"key":{"description":"The encryption public key of the sender","type":"string"},"ttl":{"description":"The duration in ISO8601 format after timestamp for which this message holds valid","type":"string"}}},"Country":{"description":"Describes a country","type":"object","additionalProperties":false,"properties":{"name":{"type":"string","description":"Name of the country"},"code":{"type":"string","description":"Country code as per ISO 3166-1 and ISO 3166-2 format"}}},"Credential":{"description":"Describes a credential of an entity - Person or Organization","type":"object","additionalProperties":false,"properties":{"id":{"type":"string"},"type":{"type":"string","default":"VerifiableCredential"},"url":{"description":"URL of the credential","type":"string","format":"uri"}}},"Customer":{"description":"Describes a customer buying/availing a product or a service","type":"object","additionalProperties":false,"properties":{"person":{"$ref":"#/components/schemas/Person"},"contact":{"$ref":"#/components/schemas/Contact"}}},"DecimalValue":{"description":"Describes a numerical value in decimal form","type":"string","pattern":"[+-]?([0-9]*[.])?[0-9]+"},"Descriptor":{"description":"Physical description of something.","type":"object","additionalProperties":false,"properties":{"name":{"type":"string"},"code":{"type":"string"},"short_desc":{"type":"string"},"long_desc":{"type":"string"},"additional_desc":{"type":"object","additionalProperties":false,"properties":{"url":{"type":"string"},"content_type":{"type":"string","enum":["text/plain","text/html","application/json"]}}},"media":{"type":"array","items":{"$ref":"#/components/schemas/MediaFile"}},"images":{"type":"array","items":{"$ref":"#/components/schemas/Image"}}}},"Domain":{"description":"Described the industry sector or sub-sector. The network policy should contain codes for all the industry sectors supported by the network. Domains can be created in varying levels of granularity. The granularity of a domain can be decided by the participants of the network. Too broad domains will result in irrelevant search broadcast calls to BPPs that don't have services supporting the domain. Too narrow domains will result in a large number of registry entries for each BPP. It is recommended that network facilitators actively collaborate with various working groups and network participants to carefully choose domain codes keeping in mind relevance, performance, and opportunity cost. It is recommended that networks choose broad domains like mobility, logistics, healthcare etc, and progressively granularize them as and when the number of network participants for each domain grows large.","type":"object","additionalProperties":false,"properties":{"name":{"description":"Name of the domain","type":"string"},"code":{"description":"Standard code representing the domain. The standard is usually published as part of the network policy. Furthermore, the network facilitator should also provide a mechanism to provide the supported domains of a network."},"additional_info":{"description":"A url that contains addtional information about that domain.","allOf":[{"$ref":"#/components/schemas/MediaFile"}]}}},"Duration":{"description":"Describes duration as per ISO8601 format","type":"string"},"Error":{"description":"Describes an error object that is returned by a BAP, BPP or BG as a response or callback to an action by another network participant. This object is sent when any request received by a network participant is unacceptable. This object can be sent either during Ack or with the callback.","type":"object","additionalProperties":false,"properties":{"code":{"type":"string","description":"Standard error code. For full list of error codes, refer to docs/protocol-drafts/BECKN-005-ERROR-CODES-DRAFT-01.md of this repo\""},"paths":{"type":"string","description":"Path to json schema generating the error. Used only during json schema validation errors"},"message":{"type":"string","description":"Human readable message describing the error. Used mainly for logging. Not recommended to be shown to the user."}}},"Fee":{"description":"A fee applied on a particular entity","type":"object","additionalProperties":false,"properties":{"percentage":{"description":"Percentage of a value","allOf":[{"$ref":"#/components/schemas/DecimalValue"}]},"amount":{"description":"A fixed value","allOf":[{"$ref":"#/components/schemas/Price"}]}}},"Form":{"description":"Describes a form","type":"object","additionalProperties":false,"properties":{"id":{"description":"The form identifier.","type":"string"},"url":{"description":"The URL from where the form can be fetched. The content fetched from the url must be processed as per the mime_type specified in this object. Once fetched, the rendering platform can choosed to render the form as-is as an embeddable element; or process it further to blend with the theme of the application. In case the interface is non-visual, the the render can process the form data and reproduce it as per the standard specified in the form.","type":"string","format":"uri"},"data":{"description":"The form submission data","type":"object","additionalProperties":{"type":"string"}},"mime_type":{"description":"This field indicates the nature and format of the form received by querying the url. MIME types are defined and standardized in IETF's RFC 6838.","type":"string","enum":["text/html","application/html","application/xml"]},"resubmit":{"type":"boolean"},"multiple_sumbissions":{"type":"boolean"}}},"Fulfillment":{"description":"Describes how a an order will be rendered/fulfilled to the end-customer","type":"object","additionalProperties":false,"properties":{"id":{"description":"Unique reference ID to the fulfillment of an order","type":"string"},"type":{"description":"A code that describes the mode of fulfillment. This is typically set when there are multiple ways an order can be fulfilled. For example, a retail order can be fulfilled either via store pickup or a home delivery. Similarly, a medical consultation can be provided either in-person or via tele-consultation. The network policy must publish standard fulfillment type codes for the different modes of fulfillment.","type":"string"},"rateable":{"description":"Whether the fulfillment can be rated or not","type":"boolean"},"rating":{"description":"The rating value of the fulfullment service.","allOf":[{"$ref":"#/components/schemas/Rating/properties/value"}]},"state":{"description":"The current state of fulfillment. The BPP must set this value whenever the state of the order fulfillment changes and fire an unsolicited `on_status` call.","allOf":[{"$ref":"#/components/schemas/FulfillmentState"}]},"tracking":{"type":"boolean","description":"Indicates whether the fulfillment allows tracking","default":false},"customer":{"description":"The person that will ultimately receive the order","allOf":[{"$ref":"#/components/schemas/Customer"}]},"agent":{"description":"The agent that is currently handling the fulfillment of the order","allOf":[{"$ref":"#/components/schemas/Agent"}]},"contact":{"$ref":"#/components/schemas/Contact"},"vehicle":{"$ref":"#/components/schemas/Vehicle"},"stops":{"description":"The list of logical stops encountered during the fulfillment of an order.","type":"array","items":{"$ref":"#/components/schemas/Stop"}},"path":{"description":"The physical path taken by the agent that can be rendered on a map. The allowed format of this property can be set by the network.","type":"string"},"tags":{"type":"array","items":{"$ref":"#/components/schemas/TagGroup"}}}},"FulfillmentState":{"description":"Describes the state of fulfillment","type":"object","additionalProperties":false,"properties":{"descriptor":{"$ref":"#/components/schemas/Descriptor"},"updated_at":{"type":"string","format":"date-time"},"updated_by":{"type":"string","description":"ID of entity which changed the state"}}},"Gps":{"description":"Describes a GPS coordinate","type":"string","pattern":"^[-+]?([1-8]?\\d(\\.\\d+)?|90(\\.0+)?),\\s*[-+]?(180(\\.0+)?|((1[0-7]\\d)|([1-9]?\\d))(\\.\\d+)?)$"},"Image":{"description":"Describes an image","type":"object","additionalProperties":false,"properties":{"url":{"description":"URL to the image. This can be a data url or an remote url","type":"string","format":"uri"},"size_type":{"description":"The size of the image. The network policy can define the default dimensions of each type","type":"string","enum":["xs","sm","md","lg","xl","custom"]},"width":{"description":"Width of the image in pixels","type":"string"},"height":{"description":"Height of the image in pixels","type":"string"}}},"Intent":{"description":"The intent to buy or avail a product or a service. The BAP can declare the intent of the consumer containing
  • What they want (A product, service, offer)
  • Who they want (A seller, service provider, agent etc)
  • Where they want it and where they want it from
  • When they want it (start and end time of fulfillment
  • How they want to pay for it

This has properties like descriptor,provider,fulfillment,payment,category,offer,item,tags
This is typically used by the BAP to send the purpose of the user's search to the BPP. This will be used by the BPP to find products or services it offers that may match the user's intent.
For example, in Mobility, the mobility consumer declares a mobility intent. In this case, the mobility consumer declares information that describes various aspects of their journey like,
  • Where would they like to begin their journey (intent.fulfillment.start.location)
  • Where would they like to end their journey (intent.fulfillment.end.location)
  • When would they like to begin their journey (intent.fulfillment.start.time)
  • When would they like to end their journey (intent.fulfillment.end.time)
  • Who is the transport service provider they would like to avail services from (intent.provider)
  • Who is traveling (This is not recommended in public networks) (intent.fulfillment.customer)
  • What kind of fare product would they like to purchase (intent.item)
  • What add-on services would they like to avail
  • What offers would they like to apply on their booking (intent.offer)
  • What category of services would they like to avail (intent.category)
  • What additional luggage are they carrying
  • How would they like to pay for their journey (intent.payment)

For example, in health domain, a consumer declares the intent for a lab booking the describes various aspects of their booking like,
  • Where would they like to get their scan/test done (intent.fulfillment.start.location)
  • When would they like to get their scan/test done (intent.fulfillment.start.time)
  • When would they like to get the results of their test/scan (intent.fulfillment.end.time)
  • Who is the service provider they would like to avail services from (intent.provider)
  • Who is getting the test/scan (intent.fulfillment.customer)
  • What kind of test/scan would they like to purchase (intent.item)
  • What category of services would they like to avail (intent.category)
  • How would they like to pay for their journey (intent.payment)
","type":"object","additionalProperties":false,"properties":{"descriptor":{"description":"A raw description of the search intent. Free text search strings, raw audio, etc can be sent in this object.","allOf":[{"$ref":"#/components/schemas/Descriptor"}]},"provider":{"description":"The provider from which the customer wants to place to the order from","allOf":[{"$ref":"#/components/schemas/Provider"}]},"fulfillment":{"description":"Details on how the customer wants their order fulfilled","allOf":[{"$ref":"#/components/schemas/Fulfillment"}]},"payment":{"description":"Details on how the customer wants to pay for the order","allOf":[{"$ref":"#/components/schemas/Payment"}]},"category":{"description":"Details on the item category","allOf":[{"$ref":"#/components/schemas/Category"}]},"offer":{"description":"details on the offer the customer wants to avail","allOf":[{"$ref":"#/components/schemas/Offer"}]},"item":{"description":"Details of the item that the consumer wants to order","allOf":[{"$ref":"#/components/schemas/Item"}]},"tags":{"type":"array","items":{"$ref":"#/components/schemas/TagGroup"}}}},"ItemQuantity":{"description":"Describes the count or amount of an item","type":"object","additionalProperties":false,"properties":{"allocated":{"description":"This represents the exact quantity allocated for purchase of the item.","type":"object","additionalProperties":false,"properties":{"count":{"type":"integer","minimum":0},"measure":{"$ref":"#/components/schemas/Scalar"}}},"available":{"description":"This represents the exact quantity available for purchase of the item. The buyer can only purchase multiples of this","type":"object","additionalProperties":false,"properties":{"count":{"type":"integer","minimum":0},"measure":{"$ref":"#/components/schemas/Scalar"}}},"maximum":{"description":"This represents the maximum quantity allowed for purchase of the item","type":"object","additionalProperties":false,"properties":{"count":{"type":"integer","minimum":1},"measure":{"$ref":"#/components/schemas/Scalar"}}},"minimum":{"description":"This represents the minimum quantity allowed for purchase of the item","type":"object","additionalProperties":false,"properties":{"count":{"type":"integer","minimum":0},"measure":{"$ref":"#/components/schemas/Scalar"}}},"selected":{"description":"This represents the quantity selected for purchase of the item","type":"object","additionalProperties":false,"properties":{"count":{"type":"integer","minimum":0},"measure":{"$ref":"#/components/schemas/Scalar"}}},"unitized":{"description":"This represents the quantity available in a single unit of the item","type":"object","additionalProperties":false,"properties":{"count":{"type":"integer","minimum":1,"maximum":1},"measure":{"$ref":"#/components/schemas/Scalar"}}}}},"Item":{"description":"Describes a product or a service offered to the end consumer by the provider. In the mobility sector, it can represent a fare product like one way journey. In the logistics sector, it can represent the delivery service offering. In the retail domain it can represent a product like a grocery item.","type":"object","additionalProperties":false,"properties":{"id":{"description":"ID of the item.","type":"string"},"parent_item_id":{"description":"ID of the item, this item is a variant of","allOf":[{"$ref":"#/components/schemas/Item/properties/id"}]},"parent_item_quantity":{"description":"The number of units of the parent item this item is a multiple of","allOf":[{"$ref":"#/components/schemas/ItemQuantity"}]},"descriptor":{"description":"Physical description of the item","allOf":[{"$ref":"#/components/schemas/Descriptor"}]},"creator":{"description":"The creator of this item","allOf":[{"$ref":"#/components/schemas/Organization"}]},"price":{"description":"The price of this item, if it has intrinsic value","allOf":[{"$ref":"#/components/schemas/Price"}]},"quantity":{"description":"The selling quantity of the item","allOf":[{"$ref":"#/components/schemas/ItemQuantity"}]},"category_ids":{"description":"Categories this item can be listed under","type":"array","items":{"allOf":[{"$ref":"#/components/schemas/Category/properties/id"}]}},"fulfillment_ids":{"description":"Modes through which this item can be fulfilled","type":"array","items":{"allOf":[{"$ref":"#/components/schemas/Fulfillment/properties/id"}]}},"location_ids":{"description":"Provider Locations this item is available in","type":"array","items":{"allOf":[{"$ref":"#/components/schemas/Location/properties/id"}]}},"payment_ids":{"description":"Payment modalities through which this item can be ordered","type":"array","items":{"allOf":[{"$ref":"#/components/schemas/Payment/properties/id"}]}},"add_ons":{"type":"array","items":{"$ref":"#/components/schemas/AddOn"}},"cancellation_terms":{"description":"Cancellation terms of this item","type":"array","items":{"$ref":"#/components/schemas/CancellationTerm"}},"refund_terms":{"description":"Refund terms of this item","type":"array","items":{"description":"Refund term of an item or an order","type":"object","additionalProperties":false,"properties":{"fulfillment_state":{"description":"The state of fulfillment during which this term is applicable.","allOf":[{"$ref":"#/components/schemas/State"}]},"refund_eligible":{"description":"Indicates if cancellation will result in a refund","type":"boolean"},"refund_within":{"description":"Time within which refund will be processed after successful cancellation.","allOf":[{"$ref":"#/components/schemas/Time"}]},"refund_amount":{"$ref":"#/components/schemas/Price"}}}},"replacement_terms":{"description":"Terms that are applicable be met when this item is replaced","type":"array","items":{"$ref":"#/components/schemas/ReplacementTerm"}},"return_terms":{"description":"Terms that are applicable when this item is returned","type":"array","items":{"$ref":"#/components/schemas/ReturnTerm"}},"xinput":{"description":"Additional input required from the customer to purchase / avail this item","allOf":[{"$ref":"#/components/schemas/XInput"}]},"time":{"description":"Temporal attributes of this item. This property is used when the item exists on the catalog only for a limited period of time.","allOf":[{"$ref":"#/components/schemas/Time"}]},"rateable":{"description":"Whether this item can be rated","type":"boolean"},"rating":{"description":"The rating of the item","allOf":[{"$ref":"#/components/schemas/Rating/properties/value"}]},"matched":{"description":"Whether this item is an exact match of the request","type":"boolean"},"related":{"description":"Whether this item is a related item to the exactly matched item","type":"boolean"},"recommended":{"description":"Whether this item is a recommended item to a response","type":"boolean"},"ttl":{"description":"Time to live in seconds for an instance of this schema","type":"string"},"tags":{"type":"array","items":{"$ref":"#/components/schemas/TagGroup"}}}},"Location":{"description":"The physical location of something","type":"object","additionalProperties":false,"properties":{"id":{"type":"string"},"descriptor":{"$ref":"#/components/schemas/Descriptor"},"map_url":{"description":"The url to the map of the location. This can be a globally recognized map url or the one specified by the network policy.","type":"string","format":"uri"},"gps":{"description":"The GPS co-ordinates of this location.","allOf":[{"$ref":"#/components/schemas/Gps"}]},"updated_at":{"type":"string","format":"date-time"},"address":{"description":"The address of this location.","allOf":[{"$ref":"#/components/schemas/Address"}]},"city":{"description":"The city this location is, or is located within","allOf":[{"$ref":"#/components/schemas/City"}]},"district":{"description":"The state this location is, or is located within","type":"string"},"state":{"description":"The state this location is, or is located within","allOf":[{"$ref":"#/components/schemas/State"}]},"country":{"description":"The country this location is, or is located within","allOf":[{"$ref":"#/components/schemas/Country"}]},"area_code":{"type":"string"},"circle":{"$ref":"#/components/schemas/Circle"},"polygon":{"description":"The boundary polygon of this location","type":"string"},"3dspace":{"description":"The three dimensional region describing this location","type":"string"},"rating":{"description":"The rating of this location","allOf":[{"$ref":"#/components/schemas/Rating/properties/value"}]}}},"MediaFile":{"description":"This object contains a url to a media file.","type":"object","additionalProperties":false,"properties":{"mimetype":{"description":"indicates the nature and format of the document, file, or assortment of bytes. MIME types are defined and standardized in IETF's RFC 6838","type":"string"},"url":{"description":"The URL of the file","type":"string","format":"uri"},"signature":{"description":"The digital signature of the file signed by the sender","type":"string"},"dsa":{"description":"The signing algorithm used by the sender","type":"string"}}},"Offer":{"description":"An offer associated with a catalog. This is typically used to promote a particular product and enable more purchases.","type":"object","additionalProperties":false,"properties":{"id":{"type":"string"},"descriptor":{"$ref":"#/components/schemas/Descriptor"},"location_ids":{"type":"array","items":{"$ref":"#/components/schemas/Location/properties/id"}},"category_ids":{"type":"array","items":{"$ref":"#/components/schemas/Category/properties/id"}},"item_ids":{"type":"array","items":{"$ref":"#/components/schemas/Item/properties/id"}},"time":{"$ref":"#/components/schemas/Time"},"tags":{"type":"array","items":{"$ref":"#/components/schemas/TagGroup"}}}},"Option":{"description":"Describes a selectable option","type":"object","additionalProperties":false,"properties":{"id":{"type":"string"},"descriptor":{"$ref":"#/components/schemas/Descriptor"}}},"Order":{"description":"Describes a legal purchase order. It contains the complete details of the legal contract created between the buyer and the seller.","type":"object","additionalProperties":false,"properties":{"id":{"type":"string","description":"Human-readable ID of the order. This is generated at the BPP layer. The BPP can either generate order id within its system or forward the order ID created at the provider level."},"ref_order_ids":{"description":"A list of order IDs to link this order to previous orders.","type":"array","items":{"type":"string","description":"ID of a previous order"}},"status":{"description":"Status of the order. Allowed values can be defined by the network policy","type":"string","enum":["ACTIVE","COMPLETE","CANCELLED","COMPLETED","SOFT_CANCEL","CANCELLATION_INITIATED","CANCELLATION_REJECTED","SOFT_UPDATE","CONFIRM_UPDATE","UPDATED"]},"type":{"description":"This is used to indicate the type of order being created to BPPs. Sometimes orders can be linked to previous orders, like a replacement order in a retail domain. A follow-up consultation in healthcare domain. A single order part of a subscription order. The list of order types can be standardized at the network level.","type":"string","default":"DEFAULT","enum":["DRAFT","DEFAULT"]},"provider":{"description":"Details of the provider whose catalog items have been selected.","allOf":[{"$ref":"#/components/schemas/Provider"}]},"items":{"description":"The items purchased / availed in this order","type":"array","items":{"$ref":"#/components/schemas/Item"}},"add_ons":{"description":"The add-ons purchased / availed in this order","type":"array","items":{"$ref":"#/components/schemas/AddOn"}},"offers":{"description":"The offers applied in this order","type":"array","items":{"$ref":"#/components/schemas/Offer"}},"billing":{"description":"The billing details of this order","allOf":[{"$ref":"#/components/schemas/Billing"}]},"fulfillments":{"description":"The fulfillments involved in completing this order","type":"array","items":{"$ref":"#/components/schemas/Fulfillment"}},"cancellation":{"description":"The cancellation details of this order","allOf":[{"$ref":"#/components/schemas/Cancellation"}]},"cancellation_terms":{"description":"Cancellation terms of this item","type":"array","items":{"$ref":"#/components/schemas/CancellationTerm"}},"documents":{"type":"array","items":{"description":"Documnents associated to the order","type":"object","additionalProperties":false,"properties":{"descriptor":{"$ref":"#/components/schemas/Descriptor"},"mime_type":{"description":"This field indicates the nature and format of the form received by querying the url. MIME types are defined and standardized in IETF's RFC 6838.","type":"string","enum":["text/html","application/html","application/xml","application/pdf"]},"url":{"description":"The URL from where the form can be fetched. The content fetched from the url must be processed as per the mime_type specified in this object.","type":"string","format":"uri"}}}},"refund_terms":{"description":"Refund terms of this item","type":"array","items":{"$ref":"#/components/schemas/Item/properties/refund_terms/items"}},"replacement_terms":{"description":"Replacement terms of this item","type":"array","items":{"$ref":"#/components/schemas/ReplacementTerm"}},"return_terms":{"description":"Return terms of this item","type":"array","items":{"$ref":"#/components/schemas/ReturnTerm"}},"quote":{"description":"The mutually agreed upon quotation for this order.","allOf":[{"$ref":"#/components/schemas/Quotation"}]},"payments":{"description":"The terms of settlement for this order","type":"array","items":{"$ref":"#/components/schemas/Payment"}},"created_at":{"description":"The date-time of creation of this order","type":"string","format":"date-time"},"updated_at":{"description":"The date-time of updated of this order","type":"string","format":"date-time"},"xinput":{"description":"Additional input required from the customer to confirm this order","allOf":[{"$ref":"#/components/schemas/XInput"}]},"tags":{"type":"array","items":{"$ref":"#/components/schemas/TagGroup"}}}},"Organization":{"description":"An organization. Usually a recognized business entity.","type":"object","additionalProperties":false,"properties":{"descriptor":{"$ref":"#/components/schemas/Descriptor"},"address":{"description":"The postal address of the organization","allOf":[{"$ref":"#/components/schemas/Address"}]},"state":{"description":"The state where the organization's address is registered","allOf":[{"$ref":"#/components/schemas/State"}]},"city":{"description":"The city where the the organization's address is registered","allOf":[{"$ref":"#/components/schemas/City"}]},"contact":{"$ref":"#/components/schemas/Contact"}}},"Payment":{"description":"Describes the terms of settlement between the BAP and the BPP for a single transaction. When instantiated, this object contains
  1. the amount that has to be settled,
  2. The payment destination destination details
  3. When the settlement should happen, and
  4. A transaction reference ID
. During a transaction, the BPP reserves the right to decide the terms of payment. However, the BAP can send its terms to the BPP first. If the BPP does not agree to those terms, it must overwrite the terms and return them to the BAP. If overridden, the BAP must either agree to the terms sent by the BPP in order to preserve the provider's autonomy, or abort the transaction. In case of such disagreements, the BAP and the BPP can perform offline negotiations on the payment terms. Once an agreement is reached, the BAP and BPP can resume transactions.","type":"object","additionalProperties":false,"properties":{"id":{"description":"ID of the payment term that can be referred at an item or an order level in a catalog","type":"string"},"collected_by":{"description":"This field indicates who is the collector of payment. The BAP can set this value to 'bap' if it wants to collect the payment first and settle it to the BPP. If the BPP agrees to those terms, the BPP should not send the payment url. Alternatively, the BPP can set this field with the value 'bpp' if it wants the payment to be made directly.","type":"string"},"url":{"type":"string","description":"A payment url to be called by the BAP. If empty, then the payment is to be done offline. The details of payment should be present in the params object. If tl_method = http/get, then the payment details will be sent as url params. Two url param values, ```$transaction_id``` and ```$amount``` are mandatory.","format":"uri"},"tl_method":{"type":"string"},"params":{"type":"object","additionalProperties":false,"properties":{"transaction_id":{"type":"string","description":"The reference transaction ID associated with a payment activity"},"amount":{"type":"string"},"currency":{"type":"string"},"bank_code":{"type":"string"},"bank_account_number":{"type":"string"},"virtual_payment_address":{"type":"string"},"source_bank_code":{"type":"string"},"source_bank_account_number":{"type":"string"},"source_virtual_payment_address":{"type":"string"}}},"type":{"type":"string","enum":["PRE-ORDER","PRE-FULFILLMENT","ON-FULFILLMENT","POST-FULFILLMENT","ON-ORDER","PART-PAYMENT"]},"status":{"type":"string","enum":["PAID","NOT-PAID"]},"time":{"$ref":"#/components/schemas/Time"},"tags":{"type":"array","items":{"$ref":"#/components/schemas/TagGroup"}}}},"Person":{"description":"Describes a person as any individual","type":"object","additionalProperties":false,"properties":{"id":{"type":"string","description":"Describes the identity of the person"},"url":{"description":"Profile url of the person","type":"string","format":"uri"},"name":{"description":"the name of the person","type":"string"},"image":{"$ref":"#/components/schemas/Image"},"age":{"description":"Age of the person","allOf":[{"$ref":"#/components/schemas/Duration"}]},"dob":{"description":"Date of birth of the person","type":"string","format":"date"},"gender":{"type":"string","description":"Gender of something, typically a Person, but possibly also fictional characters, animals, etc. While Male and Female may be used, text strings are also acceptable for people who do not identify as a binary gender.Allowed values for this field can be published in the network policy"},"creds":{"type":"array","items":{"$ref":"#/components/schemas/Credential"}},"languages":{"type":"array","items":{"description":"Describes a language known to the person.","type":"object","additionalProperties":false,"properties":{"code":{"type":"string"},"name":{"type":"string"}}}},"skills":{"type":"array","items":{"description":"Describes a skill of the person.","type":"object","additionalProperties":false,"properties":{"code":{"type":"string"},"name":{"type":"string"}}}},"tags":{"type":"array","items":{"$ref":"#/components/schemas/TagGroup"}}}},"Price":{"description":"Describes the price of a product or service","type":"object","additionalProperties":false,"properties":{"currency":{"type":"string"},"value":{"$ref":"#/components/schemas/DecimalValue"},"estimated_value":{"$ref":"#/components/schemas/DecimalValue"},"computed_value":{"$ref":"#/components/schemas/DecimalValue"},"listed_value":{"$ref":"#/components/schemas/DecimalValue"},"offered_value":{"$ref":"#/components/schemas/DecimalValue"},"minimum_value":{"$ref":"#/components/schemas/DecimalValue"},"maximum_value":{"$ref":"#/components/schemas/DecimalValue"}}},"Provider":{"description":"Describes the catalog of a business.","type":"object","additionalProperties":false,"properties":{"id":{"type":"string","description":"Id of the provider"},"descriptor":{"$ref":"#/components/schemas/Descriptor"},"category_id":{"type":"string","description":"Category Id of the provider at the BPP-level catalog"},"rating":{"$ref":"#/components/schemas/Rating/properties/value"},"time":{"$ref":"#/components/schemas/Time"},"categories":{"type":"array","items":{"$ref":"#/components/schemas/Category"}},"fulfillments":{"type":"array","items":{"$ref":"#/components/schemas/Fulfillment"}},"payments":{"type":"array","items":{"$ref":"#/components/schemas/Payment"}},"locations":{"type":"array","items":{"$ref":"#/components/schemas/Location"}},"offers":{"type":"array","items":{"$ref":"#/components/schemas/Offer"}},"items":{"type":"array","items":{"$ref":"#/components/schemas/Item"}},"exp":{"type":"string","description":"Time after which catalog has to be refreshed","format":"date-time"},"rateable":{"description":"Whether this provider can be rated or not","type":"boolean"},"ttl":{"description":"The time-to-live in seconds, for this object. This can be overriden at deeper levels. A value of -1 indicates that this object is not cacheable.","type":"string"},"tags":{"type":"array","items":{"$ref":"#/components/schemas/TagGroup"}}}},"Quotation":{"description":"Describes a quote. It is the estimated price of products or services from the BPP.
This has properties like price, breakup, ttl","type":"object","additionalProperties":false,"properties":{"id":{"description":"ID of the quote.","type":"string","format":"uuid"},"price":{"description":"The total quoted price","allOf":[{"$ref":"#/components/schemas/Price"}]},"breakup":{"description":"the breakup of the total quoted price","type":"array","items":{"type":"object","additionalProperties":false,"properties":{"item":{"$ref":"#/components/schemas/Item"},"title":{"type":"string"},"price":{"$ref":"#/components/schemas/Price"}}}},"ttl":{"$ref":"#/components/schemas/Duration"}}},"Rating":{"description":"Describes the rating of an entity","type":"object","additionalProperties":false,"properties":{"rating_category":{"description":"Category of the entity being rated","type":"string","enum":["Item","Order","Fulfillment","Provider","Agent","Support"]},"id":{"description":"Id of the object being rated","type":"string"},"value":{"description":"Rating value given to the object. This can be a single value or can also contain an inequality operator like gt, gte, lt, lte. This can also contain an inequality expression containing logical operators like && and ||.","type":"string"}}},"Region":{"description":"Describes an arbitrary region of space. The network policy should contain a published list of supported regions by the network.","type":"object","additionalProperties":false,"properties":{"dimensions":{"description":"The number of dimensions that are used to describe any point inside that region. The most common dimensionality of a region is 2, that represents an area on a map. There are regions on the map that can be approximated to one-dimensional regions like roads, railway lines, or shipping lines. 3 dimensional regions are rarer, but are gaining popularity as flying drones are being adopted for various fulfillment services.","type":"string","enum":["1","2","3"]},"type":{"description":"The type of region. This is used to specify the granularity of the region represented by this object. Various examples of two-dimensional region types are city, country, state, district, and so on. The network policy should contain a list of all possible region types supported by the network.","type":"string"},"name":{"type":"string","description":"Name of the region as specified on the map where that region exists."},"code":{"type":"string","description":"A standard code representing the region. This should be interpreted in the same way by all network participants."},"boundary":{"type":"string","description":"A string representing the boundary of the region. One-dimensional regions are represented by polylines. Two-dimensional regions are represented by polygons, and three-dimensional regions can represented by polyhedra."},"map_url":{"type":"string","description":"The url to the map of the region. This can be a globally recognized map or the one specified by the network policy."}}},"ReplacementTerm":{"description":"The replacement policy of an item or an order","type":"object","additionalProperties":false,"properties":{"fulfillment_state":{"description":"The state of fulfillment during which this term is applicable.","allOf":[{"$ref":"#/components/schemas/State"}]},"replace_within":{"description":"Applicable only for buyer managed returns where the buyer has to replace the item before a certain date-time, failing which they will not be eligible for replacement","allOf":[{"$ref":"#/components/schemas/Time"}]},"external_ref":{"$ref":"#/components/schemas/MediaFile"}}},"ReturnTerm":{"description":"Describes the return policy of an item or an order","type":"object","additionalProperties":false,"properties":{"fulfillment_state":{"description":"The state of fulfillment during which this term IETF''s applicable.","allOf":[{"$ref":"#/components/schemas/State"}]},"return_eligible":{"description":"Indicates whether the item is eligible for return","type":"boolean"},"return_time":{"description":"Applicable only for buyer managed returns where the buyer has to return the item to the origin before a certain date-time, failing which they will not be eligible for refund.","allOf":[{"$ref":"#/components/schemas/Time"}]},"return_location":{"description":"The location where the item or order must / will be returned to","allOf":[{"$ref":"#/components/schemas/Location"}]},"fulfillment_managed_by":{"description":"The entity that will perform the return","type":"string","enum":["CONSUMER","PROVIDER"]}}},"Scalar":{"description":"Describes a scalar","type":"object","additionalProperties":false,"properties":{"type":{"type":"string","enum":["CONSTANT","VARIABLE"]},"value":{"$ref":"#/components/schemas/DecimalValue"},"estimated_value":{"$ref":"#/components/schemas/DecimalValue"},"computed_value":{"$ref":"#/components/schemas/DecimalValue"},"range":{"type":"object","additionalProperties":false,"properties":{"min":{"$ref":"#/components/schemas/DecimalValue"},"max":{"$ref":"#/components/schemas/DecimalValue"}}},"unit":{"type":"string"}}},"Schedule":{"description":"Describes schedule as a repeating time period used to describe a regularly recurring event. At a minimum a schedule will specify frequency which describes the interval between occurrences of the event. Additional information can be provided to specify the schedule more precisely. This includes identifying the timestamps(s) of when the event will take place. Schedules may also have holidays to exclude a specific day from the schedule.
This has properties like frequency, holidays, times","type":"object","additionalProperties":false,"properties":{"frequency":{"$ref":"#/components/schemas/Duration"},"holidays":{"type":"array","items":{"type":"string","format":"date-time"}},"times":{"type":"array","items":{"type":"string","format":"date-time"}}}},"State":{"description":"A bounded geopolitical region of governance inside a country.","type":"object","additionalProperties":false,"properties":{"name":{"type":"string","description":"Name of the state"},"code":{"type":"string","description":"State code as per country or international standards"}}},"Stop":{"description":"A logical point in space and time during the fulfillment of an order.","type":"object","additionalProperties":false,"properties":{"id":{"type":"string"},"parent_stop_id":{"type":"string"},"location":{"description":"Location of the stop","allOf":[{"$ref":"#/components/schemas/Location"}]},"type":{"description":"The type of stop. Allowed values of this property can be defined by the network policy.","type":"string"},"time":{"description":"Timings applicable at the stop.","allOf":[{"$ref":"#/components/schemas/Time"}]},"instructions":{"description":"Instructions that need to be followed at the stop","allOf":[{"$ref":"#/components/schemas/Descriptor"}]},"contact":{"description":"Contact details of the stop","allOf":[{"$ref":"#/components/schemas/Contact"}]},"person":{"description":"The details of the person present at the stop","allOf":[{"$ref":"#/components/schemas/Person"}]},"authorization":{"$ref":"#/components/schemas/Authorization"}}},"Support":{"description":"Details of customer support","type":"object","additionalProperties":false,"properties":{"ref_id":{"type":"string"},"callback_phone":{"type":"string","format":"phone"},"phone":{"type":"string","format":"phone"},"email":{"type":"string","format":"email"},"url":{"type":"string","format":"uri"}}},"Tag":{"description":"Describes a tag. This is used to contain extended metadata. This object can be added as a property to any schema to describe extended attributes. For BAPs, tags can be sent during search to optimize and filter search results. BPPs can use tags to index their catalog to allow better search functionality. Tags are sent by the BPP as part of the catalog response in the `on_search` callback. Tags are also meant for display purposes. Upon receiving a tag, BAPs are meant to render them as name-value pairs. This is particularly useful when rendering tabular information about a product or service.","type":"object","additionalProperties":false,"properties":{"descriptor":{"description":"Description of the Tag, can be used to store detailed information.","allOf":[{"$ref":"#/components/schemas/Descriptor"}]},"value":{"description":"The value of the tag. This set by the BPP and rendered as-is by the BAP.","type":"string"},"display":{"description":"This value indicates if the tag is intended for display purposes. If set to `true`, then this tag must be displayed. If it is set to `false`, it should not be displayed. This value can override the group display value.","type":"boolean"}}},"TagGroup":{"description":"A collection of tag objects with group level attributes. For detailed documentation on the Tags and Tag Groups schema go to https://github.com/beckn/protocol-specifications/discussions/316","type":"object","additionalProperties":false,"properties":{"display":{"description":"Indicates the display properties of the tag group. If display is set to false, then the group will not be displayed. If it is set to true, it should be displayed. However, group-level display properties can be overriden by individual tag-level display property. As this schema is purely for catalog display purposes, it is not recommended to send this value during search.","type":"boolean","default":true},"descriptor":{"description":"Description of the TagGroup, can be used to store detailed information.","allOf":[{"$ref":"#/components/schemas/Descriptor"}]},"list":{"description":"An array of Tag objects listed under this group. This property can be set by BAPs during search to narrow the `search` and achieve more relevant results. When received during `on_search`, BAPs must render this list under the heading described by the `name` property of this schema.","type":"array","items":{"$ref":"#/components/schemas/Tag"}}}},"Time":{"description":"Describes time in its various forms. It can be a single point in time; duration; or a structured timetable of operations
This has properties like label, time stamp,duration,range, days, schedule","type":"object","additionalProperties":false,"properties":{"label":{"type":"string"},"timestamp":{"type":"string","format":"date-time"},"duration":{"$ref":"#/components/schemas/Duration"},"range":{"type":"object","additionalProperties":false,"properties":{"start":{"type":"string","format":"date-time"},"end":{"type":"string","format":"date-time"}}},"days":{"type":"string","description":"comma separated values representing days of the week"},"schedule":{"$ref":"#/components/schemas/Schedule"}}},"Tracking":{"description":"Contains tracking information that can be used by the BAP to track the fulfillment of an order in real-time. which is useful for knowing the location of time sensitive deliveries.","type":"object","additionalProperties":false,"properties":{"id":{"description":"A unique tracking reference number","type":"string"},"url":{"description":"A URL to the tracking endpoint. This can be a link to a tracking webpage, a webhook URL created by the BAP where BPP can push the tracking data, or a GET url creaed by the BPP which the BAP can poll to get the tracking data. It can also be a websocket URL where the BPP can push real-time tracking data.","type":"string","format":"uri"},"location":{"description":"In case there is no real-time tracking endpoint available, this field will contain the latest location of the entity being tracked. The BPP will update this value everytime the BAP calls the track API.","allOf":[{"$ref":"#/components/schemas/Location"}]},"status":{"description":"This value indicates if the tracking is currently active or not. If this value is `active`, then the BAP can begin tracking the order. If this value is `inactive`, the tracking URL is considered to be expired and the BAP should stop tracking the order.","type":"string","enum":["active","inactive"]}}},"Vehicle":{"description":"Describes a vehicle is a device that is designed or used to transport people or cargo over land, water, air, or through space.
This has properties like category, capacity, make, model, size,variant,color,energy_type,registration","type":"object","additionalProperties":false,"properties":{"category":{"type":"string"},"capacity":{"type":"integer"},"make":{"type":"string"},"model":{"type":"string"},"size":{"type":"string"},"variant":{"type":"string"},"color":{"type":"string"},"energy_type":{"type":"string"},"registration":{"type":"string"},"wheels_count":{"type":"string"},"cargo_volumne":{"type":"string"},"wheelchair_access":{"type":"string"},"code":{"type":"string"},"emission_standard":{"type":"string"}}},"XInput":{"description":"Contains any additional or extended inputs required to confirm an order. This is typically a Form Input. Sometimes, selection of catalog elements is not enough for the BPP to confirm an order. For example, to confirm a flight ticket, the airline requires details of the passengers along with information on baggage, identity, in addition to the class of ticket. Similarly, a logistics company may require details on the nature of shipment in order to confirm the shipping. A recruiting firm may require additional details on the applicant in order to confirm a job application. For all such purposes, the BPP can choose to send this object attached to any object in the catalog that is required to be sent while placing the order. This object can typically be sent at an item level or at the order level. The item level XInput will override the Order level XInput as it indicates a special requirement of information for that particular item. Hence the BAP must render a separate form for the Item and another form at the Order level before confirmation.","type":"object","additionalProperties":false,"properties":{"head":{"description":"Provides the header information for the xinput.","type":"object","additionalProperties":false,"properties":{"descriptor":{"$ref":"#/components/schemas/Descriptor"},"index":{"type":"object","additionalProperties":false,"properties":{"min":{"type":"integer"},"cur":{"type":"integer"},"max":{"type":"integer"}}},"headings":{"type":"array","items":{"type":"string","description":"The heading names of the forms"}}}},"form":{"$ref":"#/components/schemas/Form"},"form_response":{"description":"Describes the response to a form submission","type":"object","additionalProperties":false,"properties":{"status":{"description":"Contains the status of form submission.","type":"string"},"signature":{"type":"string"},"submission_id":{"type":"string"},"errors":{"type":"array","items":{"$ref":"#/components/schemas/Error"}}}},"required":{"description":"Indicates whether the form data is mandatorily required by the BPP to confirm the order.","type":"boolean"}}}}},"x-enum":{"search":{"context":{"action":[{"code":"search","description":"Buyer app indicates the search intent","reference":""}],"location":{"country":{"code":[{"code":"IND","description":"Represents the country","reference":""}]},"city":{"code":[{"code":"std:080","description":"Bangalore","reference":""}]}},"domain":[{"code":"ONDC:TRV14","description":"mobility domain Public Transit","reference":""}]},"message":{"intent":{"fulfillment":{"state":{"descriptor":{"code":[{"code":"CONFIRMED","description":"Describes the fulfillment state","reference":""}],"location":{"country":{"code":[{"code":"IND","description":"Represents the country","reference":""}]},"city":{"code":[{"code":"std:080","description":"Bangalore","reference":""}]}},"domain":[{"code":"ONDC:TRV14","description":"mobility domain Public Transit","reference":""}]},"message":{"catalog":{"providers":{"categories":{"descriptor":{"code":[{"code":"CULTURE_HERITAGE","description":"Represents type of category","reference":""}],"location":{"country":{"code":[{"code":"IND","description":"Represents the country","reference":""}]},"city":{"code":[{"code":"std:080","description":"Bangalore","reference":""}]}},"domain":[{"code":"ONDC:TRV14","description":"mobility domain Public Transit","reference":""}]},"message":{"order":{"items":{"descriptor":{"code":[{"code":"ENTRY_PASS","description":"Describes the item code as Entry Pass","reference":""}],"location":{"country":{"code":[{"code":"IND","description":"Represents the country","reference":""}]},"city":{"code":[{"code":"std:080","description":"Bangalore","reference":""}]}},"domain":[{"code":"ONDC:TRV14","description":"mobility domain Public Transit","reference":""}]},"message":{"order":{"items":{"descriptor":{"code":[{"code":"ENTRY_PASS","description":"Describes the item code as Entry Pass","reference":""}],"location":{"country":{"code":[{"code":"IND","description":"Represents the country","reference":""}]},"city":{"code":[{"code":"std:080","description":"Bangalore","reference":""}]}},"domain":[{"code":"ONDC:TRV14","description":"mobility domain Public Transit","reference":""}]},"message":{"order":{"items":{"descriptor":{"code":[{"code":"ENTRY_PASS","description":"Describes the item code as Entry Pass","reference":""}],"location":{"country":{"code":[{"code":"IND","description":"Represents the country","reference":""}]},"city":{"code":[{"code":"std:080","description":"Bangalore","reference":""}]}},"domain":[{"code":"ONDC:TRV14","description":"mobility domain Public Transit","reference":""}]},"message":{"order":{"items":{"descriptor":{"code":[{"code":"ENTRY_PASS","description":"Describes the item code as Entry Pass","reference":""}],"location":{"country":{"code":[{"code":"IND","description":"Represents the country","reference":""}]},"city":{"code":[{"code":"std:080","description":"Bangalore","reference":""}]}},"domain":[{"code":"ONDC:TRV14","description":"mobility domain Public Transit","reference":""}]},"message":{"order":{"items":{"descriptor":{"code":[{"code":"ENTRY_PASS","description":"Describes the item code as Entry Pass","reference":""}],"location":{"country":{"code":[{"code":"IND","description":"Represents the country","reference":""}]},"city":{"code":[{"code":"std:080","description":"Bangalore","reference":""}]}},"domain":[{"code":"ONDC:TRV14","description":"mobility domain Public Transit","reference":""}]},"message":{"order":{"items":{"descriptor":{"code":[{"code":"ENTRY_PASS","description":"Describes the item code as Entry Pass","reference":""}],"location":{"country":{"code":[{"code":"IND","description":"Represents the country","reference":""}]},"city":{"code":[{"code":"std:080","description":"Bangalore","reference":""}]}},"domain":[{"code":"ONDC:TRV14","description":"mobility domain Public Transit","reference":""}]}},"on_status":{"context":{"action":[{"code":"on_status","description":"Seller app return order with status , Driver pickup - driver drop","reference":""}],"location":{"country":{"code":[{"code":"IND","description":"Represents the country","reference":""}]},"city":{"code":[{"code":"std:080","description":"Bangalore","reference":""}]}},"domain":[{"code":"ONDC:TRV14","description":"mobility domain Public Transit","reference":""}]},"message":{"order":{"items":{"descriptor":{"code":[{"code":"ENTRY_PASS","description":"Describes the item code as Entry Pass","reference":""}],"location":{"country":{"code":[{"code":"IND","description":"Represents the country","reference":""}]},"city":{"code":[{"code":"std:080","description":"Bangalore","reference":""}]}},"domain":[{"code":"ONDC:TRV14","description":"mobility domain Public Transit","reference":""}]},"message":{"descriptor":{"code":[{"code":"SOFT-CANCEL","description":"Describes a soft-cancel request initiated by the buyer app, a step preceding cancellation.","reference":""}],"location":{"country":{"code":[{"code":"IND","description":"Represents the country","reference":""}]},"city":{"code":[{"code":"std:080","description":"Bangalore","reference":""}]}},"domain":[{"code":"ONDC:TRV14","description":"mobility domain Public Transit","reference":""}]},"message":{"order":{"items":{"descriptor":{"code":[{"code":"ENTRY_PASS","description":"Describes the item code as Entry Pass","reference":""}],"location":{"country":{"code":[{"code":"IND","description":"Represents the country","reference":""}]},"city":{"code":[{"code":"std:080","description":"Bangalore","reference":""}]}},"domain":[{"code":"ONDC:TRV14","description":"mobility domain Public Transit","reference":""}]},"message":{"order":{"items":{"descriptor":{"code":[{"code":"ENTRY_PASS","description":"Describes the item code as Entry Pass","reference":""}],"location":{"country":{"code":[{"code":"IND","description":"Represents the country","reference":""}]},"city":{"code":[{"code":"std:080","description":"Bangalore","reference":""}]}},"domain":[{"code":"ONDC:TRV14","description":"mobility domain Public Transit","reference":""}]},"message":{"order":{"items":{"descriptor":{"code":[{"code":"ENTRY_PASS","description":"Describes the item code as Entry Pass","reference":"","list":[{"code":"BUYER_FINDER_FEES_TYPE","description":"Buyer finder fee type","reference":""},{"code":"BUYER_FINDER_FEES_PERCENTAGE","description":"Buyer finder fee in percentage","reference":""},{"code":"BUYER_FINDER_FEES_AMOUNT","description":"Buyer finder fee in amount","reference":""},{"code":"SETTLEMENT_BASIS","description":"Basis required to complete settlement","reference":""},{"code":"SETTLEMENT_TYPE","description":"Payment method to complete settlement","reference":""},{"code":"DELAY_INTEREST","description":"Denotes interest to be paid as a delay charge","reference":""},{"code":"STATIC_TERMS","description":"Terms for settlement","reference":""},{"code":"SETTLEMENT_AMOUNT","description":"Denotes settlement amount","reference":""},{"code":"SETTLEMENT_BANK_CODE","description":"Denotes settlement bank code","reference":""},{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER","description":"Denotes settlement bank account number","reference":""}]},{"code":"BPP_TERMS","description":"Details about fare for the ride","reference":"","list":[{"code":"BUYER_FINDER_FEES_TYPE","description":"Buyer finder fee type","reference":""},{"code":"BUYER_FINDER_FEES_PERCENTAGE","description":"Buyer finder fee in percentage","reference":""},{"code":"BUYER_FINDER_FEES_AMOUNT","description":"Buyer finder fee in amount","reference":""},{"code":"SETTLEMENT_BASIS","description":"Basis required to complete settlement","reference":""},{"code":"SETTLEMENT_TYPE","description":"Payment method to complete settlement","reference":""},{"code":"DELAY_INTEREST","description":"Denotes interest to be paid as a delay charge","reference":""},{"code":"STATIC_TERMS","description":"Terms for settlement","reference":""},{"code":"SETTLEMENT_AMOUNT","description":"Denotes settlement amount","reference":""},{"code":"SETTLEMENT_BANK_CODE","description":"Denotes settlement bank code","reference":""},{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER","description":"Denotes settlement bank account number","reference":""}]},{"code":"PAGINATION","description":"Details about pagination","reference":"","list":[{"code":"PAGINATION_ID","description":"Describes the pagination ID","reference":""},{"code":"CURRENT_PAGE_NUMBER","description":"Describes the current page number","reference":""},{"code":"MAX_PAGE_NUMBER","description":"Describes the max page number","reference":""}]}]}},"on_search":{"message":{"catalog":{"providers":{"items":{"tags":[{"code":"FARE_POLICY","description":"Details about fare for the ride","reference":"","list":[{"code":"MIN_AGE","description":"Describes min age","reference":""},{"code":"MAX_AGE","description":"Describes max age","reference":""},{"code":"GENDER","description":"Describes the gender","reference":""},{"code":"NATIONALITY","description":"Describes the nationality","reference":""},{"code":"ENTRY_ELIGIBILITY","description":"Describes the entry eligibility","reference":""}]}]}},"tags":[{"code":"BAP_TERMS","description":"Details about fare for the ride","reference":"","list":[{"code":"BUYER_FINDER_FEES_TYPE","description":"Buyer finder fee type","reference":""},{"code":"BUYER_FINDER_FEES_PERCENTAGE","description":"Buyer finder fee in percentage","reference":""},{"code":"BUYER_FINDER_FEES_AMOUNT","description":"Buyer finder fee in amount","reference":""},{"code":"SETTLEMENT_BASIS","description":"Basis required to complete settlement","reference":""},{"code":"SETTLEMENT_TYPE","description":"Payment method to complete settlement","reference":""},{"code":"DELAY_INTEREST","description":"Denotes interest to be paid as a delay charge","reference":""},{"code":"STATIC_TERMS","description":"Terms for settlement","reference":""},{"code":"SETTLEMENT_AMOUNT","description":"Denotes settlement amount","reference":""},{"code":"SETTLEMENT_BANK_CODE","description":"Denotes settlement bank code","reference":""},{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER","description":"Denotes settlement bank account number","reference":""}]},{"code":"BPP_TERMS","description":"Details about fare for the ride","reference":"","list":[{"code":"BUYER_FINDER_FEES_TYPE","description":"Buyer finder fee type","reference":""},{"code":"BUYER_FINDER_FEES_PERCENTAGE","description":"Buyer finder fee in percentage","reference":""},{"code":"BUYER_FINDER_FEES_AMOUNT","description":"Buyer finder fee in amount","reference":""},{"code":"SETTLEMENT_BASIS","description":"Basis required to complete settlement","reference":""},{"code":"SETTLEMENT_TYPE","description":"Payment method to complete settlement","reference":""},{"code":"DELAY_INTEREST","description":"Denotes interest to be paid as a delay charge","reference":""},{"code":"STATIC_TERMS","description":"Terms for settlement","reference":""},{"code":"SETTLEMENT_AMOUNT","description":"Denotes settlement amount","reference":""},{"code":"SETTLEMENT_BANK_CODE","description":"Denotes settlement bank code","reference":""},{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER","description":"Denotes settlement bank account number","reference":""}]},{"code":"PAGINATION","description":"Details about pagination","reference":"","list":[{"code":"PAGINATION_ID","description":"Describes the pagination ID","reference":""},{"code":"CURRENT_PAGE_NUMBER","description":"Describes the current page number","reference":""},{"code":"MAX_PAGE_NUMBER","description":"Describes the max page number","reference":""}]}]}}},"on_select":{"message":{"order":{"items":{"tags":[{"code":"FARE_POLICY","description":"Details about fare for the ride","reference":"","list":[{"code":"MIN_AGE","description":"Describes min age","reference":""},{"code":"MAX_AGE","description":"Describes max age","reference":""},{"code":"GENDER","description":"Describes the gender","reference":""},{"code":"NATIONALITY","description":"Describes the nationality","reference":""},{"code":"ENTRY_ELIGIBILITY","description":"Describes the entry eligibility","reference":""}]}]}}}},"init":{"message":{"order":{"tags":[{"code":"BAP_TERMS","description":"Details about fare for the ride","reference":"","list":[{"code":"BUYER_FINDER_FEES_TYPE","description":"Buyer finder fee type","reference":""},{"code":"BUYER_FINDER_FEES_PERCENTAGE","description":"Buyer finder fee in percentage","reference":""},{"code":"BUYER_FINDER_FEES_AMOUNT","description":"Buyer finder fee in amount","reference":""},{"code":"SETTLEMENT_BASIS","description":"Basis required to complete settlement","reference":""},{"code":"SETTLEMENT_TYPE","description":"Payment method to complete settlement","reference":""},{"code":"DELAY_INTEREST","description":"Denotes interest to be paid as a delay charge","reference":""},{"code":"STATIC_TERMS","description":"Terms for settlement","reference":""},{"code":"SETTLEMENT_AMOUNT","description":"Denotes settlement amount","reference":""},{"code":"SETTLEMENT_BANK_CODE","description":"Denotes settlement bank code","reference":""},{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER","description":"Denotes settlement bank account number","reference":""}]},{"code":"BPP_TERMS","description":"Details about fare for the ride","reference":"","list":[{"code":"BUYER_FINDER_FEES_TYPE","description":"Buyer finder fee type","reference":""},{"code":"BUYER_FINDER_FEES_PERCENTAGE","description":"Buyer finder fee in percentage","reference":""},{"code":"BUYER_FINDER_FEES_AMOUNT","description":"Buyer finder fee in amount","reference":""},{"code":"SETTLEMENT_BASIS","description":"Basis required to complete settlement","reference":""},{"code":"SETTLEMENT_TYPE","description":"Payment method to complete settlement","reference":""},{"code":"DELAY_INTEREST","description":"Denotes interest to be paid as a delay charge","reference":""},{"code":"STATIC_TERMS","description":"Terms for settlement","reference":""},{"code":"SETTLEMENT_AMOUNT","description":"Denotes settlement amount","reference":""},{"code":"SETTLEMENT_BANK_CODE","description":"Denotes settlement bank code","reference":""},{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER","description":"Denotes settlement bank account number","reference":""}]},{"code":"PAGINATION","description":"Details about pagination","reference":"","list":[{"code":"PAGINATION_ID","description":"Describes the pagination ID","reference":""},{"code":"CURRENT_PAGE_NUMBER","description":"Describes the current page number","reference":""},{"code":"MAX_PAGE_NUMBER","description":"Describes the max page number","reference":""}]}]}}},"on_init":{"message":{"order":{"items":{"tags":[{"code":"FARE_POLICY","description":"Details about fare for the ride","reference":"","list":[{"code":"MIN_AGE","description":"Describes min age","reference":""},{"code":"MAX_AGE","description":"Describes max age","reference":""},{"code":"GENDER","description":"Describes the gender","reference":""},{"code":"NATIONALITY","description":"Describes the nationality","reference":""},{"code":"ENTRY_ELIGIBILITY","description":"Describes the entry eligibility","reference":""}]}]},"tags":[{"code":"BAP_TERMS","description":"Details about fare for the ride","reference":"","list":[{"code":"BUYER_FINDER_FEES_TYPE","description":"Buyer finder fee type","reference":""},{"code":"BUYER_FINDER_FEES_PERCENTAGE","description":"Buyer finder fee in percentage","reference":""},{"code":"BUYER_FINDER_FEES_AMOUNT","description":"Buyer finder fee in amount","reference":""},{"code":"SETTLEMENT_BASIS","description":"Basis required to complete settlement","reference":""},{"code":"SETTLEMENT_TYPE","description":"Payment method to complete settlement","reference":""},{"code":"DELAY_INTEREST","description":"Denotes interest to be paid as a delay charge","reference":""},{"code":"STATIC_TERMS","description":"Terms for settlement","reference":""},{"code":"SETTLEMENT_AMOUNT","description":"Denotes settlement amount","reference":""},{"code":"SETTLEMENT_BANK_CODE","description":"Denotes settlement bank code","reference":""},{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER","description":"Denotes settlement bank account number","reference":""}]},{"code":"BPP_TERMS","description":"Details about fare for the ride","reference":"","list":[{"code":"BUYER_FINDER_FEES_TYPE","description":"Buyer finder fee type","reference":""},{"code":"BUYER_FINDER_FEES_PERCENTAGE","description":"Buyer finder fee in percentage","reference":""},{"code":"BUYER_FINDER_FEES_AMOUNT","description":"Buyer finder fee in amount","reference":""},{"code":"SETTLEMENT_BASIS","description":"Basis required to complete settlement","reference":""},{"code":"SETTLEMENT_TYPE","description":"Payment method to complete settlement","reference":""},{"code":"DELAY_INTEREST","description":"Denotes interest to be paid as a delay charge","reference":""},{"code":"STATIC_TERMS","description":"Terms for settlement","reference":""},{"code":"SETTLEMENT_AMOUNT","description":"Denotes settlement amount","reference":""},{"code":"SETTLEMENT_BANK_CODE","description":"Denotes settlement bank code","reference":""},{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER","description":"Denotes settlement bank account number","reference":""}]},{"code":"PAGINATION","description":"Details about pagination","reference":"","list":[{"code":"PAGINATION_ID","description":"Describes the pagination ID","reference":""},{"code":"CURRENT_PAGE_NUMBER","description":"Describes the current page number","reference":""},{"code":"MAX_PAGE_NUMBER","description":"Describes the max page number","reference":""}]}]}}},"confirm":{"message":{"order":{"tags":[{"code":"BAP_TERMS","description":"Details about fare for the ride","reference":"","list":[{"code":"BUYER_FINDER_FEES_TYPE","description":"Buyer finder fee type","reference":""},{"code":"BUYER_FINDER_FEES_PERCENTAGE","description":"Buyer finder fee in percentage","reference":""},{"code":"BUYER_FINDER_FEES_AMOUNT","description":"Buyer finder fee in amount","reference":""},{"code":"SETTLEMENT_BASIS","description":"Basis required to complete settlement","reference":""},{"code":"SETTLEMENT_TYPE","description":"Payment method to complete settlement","reference":""},{"code":"DELAY_INTEREST","description":"Denotes interest to be paid as a delay charge","reference":""},{"code":"STATIC_TERMS","description":"Terms for settlement","reference":""},{"code":"SETTLEMENT_AMOUNT","description":"Denotes settlement amount","reference":""},{"code":"SETTLEMENT_BANK_CODE","description":"Denotes settlement bank code","reference":""},{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER","description":"Denotes settlement bank account number","reference":""}]},{"code":"BPP_TERMS","description":"Details about fare for the ride","reference":"","list":[{"code":"BUYER_FINDER_FEES_TYPE","description":"Buyer finder fee type","reference":""},{"code":"BUYER_FINDER_FEES_PERCENTAGE","description":"Buyer finder fee in percentage","reference":""},{"code":"BUYER_FINDER_FEES_AMOUNT","description":"Buyer finder fee in amount","reference":""},{"code":"SETTLEMENT_BASIS","description":"Basis required to complete settlement","reference":""},{"code":"SETTLEMENT_TYPE","description":"Payment method to complete settlement","reference":""},{"code":"DELAY_INTEREST","description":"Denotes interest to be paid as a delay charge","reference":""},{"code":"STATIC_TERMS","description":"Terms for settlement","reference":""},{"code":"SETTLEMENT_AMOUNT","description":"Denotes settlement amount","reference":""},{"code":"SETTLEMENT_BANK_CODE","description":"Denotes settlement bank code","reference":""},{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER","description":"Denotes settlement bank account number","reference":""}]},{"code":"PAGINATION","description":"Details about pagination","reference":"","list":[{"code":"PAGINATION_ID","description":"Describes the pagination ID","reference":""},{"code":"CURRENT_PAGE_NUMBER","description":"Describes the current page number","reference":""},{"code":"MAX_PAGE_NUMBER","description":"Describes the max page number","reference":""}]}]}}},"on_confirm":{"message":{"order":{"items":{"tags":[{"code":"FARE_POLICY","description":"Details about fare for the ride","reference":"","list":[{"code":"MIN_AGE","description":"Describes min age","reference":""},{"code":"MAX_AGE","description":"Describes max age","reference":""},{"code":"GENDER","description":"Describes the gender","reference":""},{"code":"NATIONALITY","description":"Describes the nationality","reference":""},{"code":"ENTRY_ELIGIBILITY","description":"Describes the entry eligibility","reference":""}]}]},"tags":[{"code":"BAP_TERMS","description":"Details about fare for the ride","reference":"","list":[{"code":"BUYER_FINDER_FEES_TYPE","description":"Buyer finder fee type","reference":""},{"code":"BUYER_FINDER_FEES_PERCENTAGE","description":"Buyer finder fee in percentage","reference":""},{"code":"BUYER_FINDER_FEES_AMOUNT","description":"Buyer finder fee in amount","reference":""},{"code":"SETTLEMENT_BASIS","description":"Basis required to complete settlement","reference":""},{"code":"SETTLEMENT_TYPE","description":"Payment method to complete settlement","reference":""},{"code":"DELAY_INTEREST","description":"Denotes interest to be paid as a delay charge","reference":""},{"code":"STATIC_TERMS","description":"Terms for settlement","reference":""},{"code":"SETTLEMENT_AMOUNT","description":"Denotes settlement amount","reference":""},{"code":"SETTLEMENT_BANK_CODE","description":"Denotes settlement bank code","reference":""},{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER","description":"Denotes settlement bank account number","reference":""}]},{"code":"BPP_TERMS","description":"Details about fare for the ride","reference":"","list":[{"code":"BUYER_FINDER_FEES_TYPE","description":"Buyer finder fee type","reference":""},{"code":"BUYER_FINDER_FEES_PERCENTAGE","description":"Buyer finder fee in percentage","reference":""},{"code":"BUYER_FINDER_FEES_AMOUNT","description":"Buyer finder fee in amount","reference":""},{"code":"SETTLEMENT_BASIS","description":"Basis required to complete settlement","reference":""},{"code":"SETTLEMENT_TYPE","description":"Payment method to complete settlement","reference":""},{"code":"DELAY_INTEREST","description":"Denotes interest to be paid as a delay charge","reference":""},{"code":"STATIC_TERMS","description":"Terms for settlement","reference":""},{"code":"SETTLEMENT_AMOUNT","description":"Denotes settlement amount","reference":""},{"code":"SETTLEMENT_BANK_CODE","description":"Denotes settlement bank code","reference":""},{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER","description":"Denotes settlement bank account number","reference":""}]},{"code":"PAGINATION","description":"Details about pagination","reference":"","list":[{"code":"PAGINATION_ID","description":"Describes the pagination ID","reference":""},{"code":"CURRENT_PAGE_NUMBER","description":"Describes the current page number","reference":""},{"code":"MAX_PAGE_NUMBER","description":"Describes the max page number","reference":""}]}]}}},"on_status":{"message":{"order":{"items":{"tags":[{"code":"FARE_POLICY","description":"Details about fare for the ride","reference":"","list":[{"code":"MIN_AGE","description":"Describes min age","reference":""},{"code":"MAX_AGE","description":"Describes max age","reference":""},{"code":"GENDER","description":"Describes the gender","reference":""},{"code":"NATIONALITY","description":"Describes the nationality","reference":""},{"code":"ENTRY_ELIGIBILITY","description":"Describes the entry eligibility","reference":""}]}]},"tags":[{"code":"BAP_TERMS","description":"Details about fare for the ride","reference":"","list":[{"code":"BUYER_FINDER_FEES_TYPE","description":"Buyer finder fee type","reference":""},{"code":"BUYER_FINDER_FEES_PERCENTAGE","description":"Buyer finder fee in percentage","reference":""},{"code":"BUYER_FINDER_FEES_AMOUNT","description":"Buyer finder fee in amount","reference":""},{"code":"SETTLEMENT_BASIS","description":"Basis required to complete settlement","reference":""},{"code":"SETTLEMENT_TYPE","description":"Payment method to complete settlement","reference":""},{"code":"DELAY_INTEREST","description":"Denotes interest to be paid as a delay charge","reference":""},{"code":"STATIC_TERMS","description":"Terms for settlement","reference":""},{"code":"SETTLEMENT_AMOUNT","description":"Denotes settlement amount","reference":""},{"code":"SETTLEMENT_BANK_CODE","description":"Denotes settlement bank code","reference":""},{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER","description":"Denotes settlement bank account number","reference":""}]},{"code":"BPP_TERMS","description":"Details about fare for the ride","reference":"","list":[{"code":"BUYER_FINDER_FEES_TYPE","description":"Buyer finder fee type","reference":""},{"code":"BUYER_FINDER_FEES_PERCENTAGE","description":"Buyer finder fee in percentage","reference":""},{"code":"BUYER_FINDER_FEES_AMOUNT","description":"Buyer finder fee in amount","reference":""},{"code":"SETTLEMENT_BASIS","description":"Basis required to complete settlement","reference":""},{"code":"SETTLEMENT_TYPE","description":"Payment method to complete settlement","reference":""},{"code":"DELAY_INTEREST","description":"Denotes interest to be paid as a delay charge","reference":""},{"code":"STATIC_TERMS","description":"Terms for settlement","reference":""},{"code":"SETTLEMENT_AMOUNT","description":"Denotes settlement amount","reference":""},{"code":"SETTLEMENT_BANK_CODE","description":"Denotes settlement bank code","reference":""},{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER","description":"Denotes settlement bank account number","reference":""}]},{"code":"PAGINATION","description":"Details about pagination","reference":"","list":[{"code":"PAGINATION_ID","description":"Describes the pagination ID","reference":""},{"code":"CURRENT_PAGE_NUMBER","description":"Describes the current page number","reference":""},{"code":"MAX_PAGE_NUMBER","description":"Describes the max page number","reference":""}]}]}}}},"x-flows":[{"summary":"Unreserved Entry Pass - Seller App Pagination Flow (Culture-Heritage)","details":[{"description":"The illustrative flow to perform a transaction to create an ecosystem where entry tickets/ passes can be bought and sold over the network.","mermaid":"sequenceDiagram\n title Unreserved Entry Pass Discovery\n Buyer Platform (BAP)->>Gateway (BG): search\n Gateway (BG) ->> Buyer Platform (BAP): ACK\n Gateway (BG)->>Registry: Lookup Seller Platforms (lookup)\n Registry->>Gateway (BG): List of Seller Platforms (200 OK)\n Gateway (BG)->>Seller Platform (BPP): search\n Seller Platform (BPP)->>Gateway (BG) : ACK\n Seller Platform (BPP)->>Buyer Platform (BAP): Publish Catalog of Seller 1 (on_search)\n Buyer Platform (BAP)->>Seller Platform (BPP): ACK "}],"steps":[{"summary":"Search for the Unreserved Entry Pass","api":"search","details":[{"description":"Users searches over the network to avail the Unreserved Entry Pass","mermaid":"sequenceDiagram\n rect rgb(191, 223, 255)\n Buyer Platform (BAP)->>Gateway (BG): search\n Gateway (BG) ->> Buyer Platform (BAP): ACK\n Gateway (BG)->>Registry: Lookup Seller Platforms (lookup)\n Registry->>Gateway (BG): List of Seller Platforms (200 OK)\n Gateway (BG)->>Seller Platform (BPP): search\n Seller Platform (BPP)->>Gateway (BG) : ACK\n end\n Seller Platform (BPP)->>Buyer Platform (BAP): Publish Catalog of Seller 1 (on_search)\n Buyer Platform (BAP)->>Seller Platform (BPP): ACK "}],"reference":"if any","example":{"summary":"Search for unreserved entry pass","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:41:16.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"5fd86e70-3465-4759-ac6c-910ab16e2db9","version":"2.0.0","action":"search","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S"},"message":{"intent":{"category":{"descriptor":{"code":"CULTURE_HERITAGE"}},"fulfillment":{"stops":[{"type":"START","location":{"city":{"code":"std:040"}},"time":{"timestamp":"2024-06-27T04:41:16.000Z"}}],"vehicle":{"category":"SITE"}},"payment":{"collected_by":"BAP"},"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]}]}}}}},{"summary":"Return a catalog of all unreserved-entry-pass services","api":"on_search","details":[{"description":"Provider platform sends the catalog of all the services","mermaid":"sequenceDiagram\n Buyer Platform (BAP)->>Gateway (BG): search\n Gateway (BG) ->> Buyer Platform (BAP): ACK\n Gateway (BG)->>Registry: Lookup Seller Platforms (lookup)\n Registry->>Gateway (BG): List of Seller Platforms (200 OK)\n Gateway (BG)->>Seller Platform (BPP): search\n Seller Platform (BPP)->>Gateway (BG) : ACK\n rect rgb(191, 223, 255)\n Seller Platform (BPP)->>Buyer Platform (BAP): Publish Catalog of Seller 1 (on_search)\n Buyer Platform (BAP)->>Seller Platform (BPP): ACK \n end "}],"reference":"if any","example":{"summary":"Return a catalog for unreserved entry pass","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:43:16.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"5fd86e70-3465-4759-ac6c-910ab16e2db9","version":"2.0.0","action":"on_search","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"catalog":{"descriptor":{"name":"India tourism","long_desc":"Online ticket booking service","images":[{"url":"https://api.unreserved-entry-pass.com/logos/logo.ico","size_type":"xs"}]},"providers":[{"id":"P1","descriptor":{"name":"India tourism","short_desc":"Online Ticket Booking Service","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"categories":[{"descriptor":{"name":"Culture & Heritage","code":"CULTURE_HERITAGE"},"id":"C1"},{"descriptor":{"name":"Standard"},"parent_category_id":"C1","id":"C2"},{"descriptor":{"name":"Premium"},"parent_category_id":"C1","id":"C3"}],"time":{"range":{"start":"2024-06-14T05:30:00.000Z","end":"2024-06-14T23:30:00.000Z"}},"locations":[{"id":"L1","gps":"28.524596, 77.185577","descriptor":{"name":"Qutab Minar","short_desc":"Seth Sarai, Mehrauli, New Delhi, Delhi. The Qutb Minar, also spelled Qutub Minar and Qutab Minar, is a minaret and \"victory tower\" that forms part of the Qutb complex","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"5"},{"id":"L2","gps":"28.5244946, 77.1855177","descriptor":{"name":"Red Fort","short_desc":"Red Fort, Mughal fort in Old Delhi, India. It was built by Shah Jahān in the mid-17th century and remains a major tourist attraction.","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"4"}],"payments":[{"collected_by":"BAP"}]}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]},{"descriptor":{"code":"BPP_TERMS","name":"BPP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"MANDATORY_ARBITRATION"},"value":"true"},{"descriptor":{"code":"COURT_JURISDICTION"},"value":"New Delhi"},{"descriptor":{"code":"DELAY_INTEREST"},"value":"2.5 %"}]},{"descriptor":{"code":"PAGINATION","name":"Pagination"},"display":true,"list":[{"descriptor":{"code":"PAGINATION_ID"},"value":"P1"},{"descriptor":{"code":"MAX_PAGE_NUMBER"},"value":"2"}]}]}}}}},{"summary":"Return a catalog of all unreserved-entry-pass services","api":"on_search","details":[{"description":"Provider platform sends the catalog of all the services","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n rect rgb(191, 223, 255)\n Buyer Platform (BAP)->>Seller Platform (BPP): search\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n end\n Seller Platform (BPP)->>Buyer Platform (BAP):on_search\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK "}],"reference":"if any","example":{"summary":"Return a catalog for unreserved entry pass","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:43:16.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"84e573df-0f06-449b-9f02-7bf1f1694d83","version":"2.0.0","action":"on_search","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"catalog":{"descriptor":{"name":"India tourism","long_desc":"Online ticket booking service","images":[{"url":"https://api.unreserved-entry-pass.com/logos/logo.ico","size_type":"xs"}]},"providers":[{"id":"P1","descriptor":{"name":"India tourism","short_desc":"Online Ticket Booking Service","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"categories":[{"descriptor":{"name":"Culture & Heritage","code":"CULTURE_HERITAGE"},"id":"C1"},{"descriptor":{"name":"Standard"},"parent_category_id":"C1","id":"C2"},{"descriptor":{"name":"Premium"},"parent_category_id":"C1","id":"C3"}],"time":{"range":{"start":"2024-06-14T05:30:00.000Z","end":"2024-06-14T23:30:00.000Z"}},"locations":[{"id":"L1","gps":"28.524596, 77.185577","descriptor":{"name":"Qutab Minar","short_desc":"Seth Sarai, Mehrauli, New Delhi, Delhi. The Qutb Minar, also spelled Qutub Minar and Qutab Minar, is a minaret and \"victory tower\" that forms part of the Qutb complex","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"5"},{"id":"L2","gps":"28.5244946, 77.1855177","descriptor":{"name":"Red Fort","short_desc":"Red Fort, Mughal fort in Old Delhi, India. It was built by Shah Jahān in the mid-17th century and remains a major tourist attraction.","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"4"}],"items":[{"id":"I0","descriptor":{"name":"Parent Item for Culture & Heritage","code":"ABSTRACT","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C2"],"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"cancellation_terms":[{"cancellation_fee":{"percentage":"10"},"fulfillment_state":{"descriptor":{"code":"CONFIRMED"}},"cancel_by":{"label":"DURATION","duration":"PT1H30M"}},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}},{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":true}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass/beckn/replacement.html"}}],"tags":[{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I1","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1","C2"],"price":{"currency":"INR","value":"350"},"quantity":{"maximum":{"count":6},"minimum":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"available":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"18"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I2","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1","C2"],"price":{"currency":"INR","value":"150"},"quantity":{"maximum":{"count":4},"minimum":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"available":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I3","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C3"],"price":{"currency":"INR","value":"400"},"quantity":{"maximum":{"count":6},"minimum":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"available":{"count":1}},"price":{"value":"100","currency":"INR"}}],"cancellation_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":false},{"cancellation_fee":{"percentage":"10"},"cancel_by":{"label":"TIMESTAMP","timestamp":"2024-07-26T04:43:16.000Z"},"cancellation_eligible":false}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass/beckn/replacement.html"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"18"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]},{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"},{"value":"guide_tour"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I4","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C3"],"price":{"currency":"INR","value":"250"},"quantity":{"maximum":{"count":4},"minimum":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"available":{"count":1}},"price":{"value":"100","currency":"INR"}}],"cancellation_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":false},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass/beckn/replacement.html"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]},{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"},{"value":"guide_tour"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I5","descriptor":{"name":"Add on item","code":"ADD_ON","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"price":{"currency":"INR","value":"100"},"quantity":{"maximum":{"count":3},"minimum":{"count":1}}}],"fulfillments":[{"id":"F1","type":"VISIT","stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"timestamp":"2024-06-28T05:00:16.000Z"}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}},{"id":"F2","type":"VISIT","stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"range":{"start":"2024-06-14T05:30:00.000Z","end":"2024-06-14T05:45:00.000Z"}}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}}],"payments":[{"collected_by":"BAP"}]}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]},{"descriptor":{"code":"BPP_TERMS","name":"BPP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"MANDATORY_ARBITRATION"},"value":"true"},{"descriptor":{"code":"COURT_JURISDICTION"},"value":"New Delhi"},{"descriptor":{"code":"DELAY_INTEREST"},"value":"2.5 %"}]},{"descriptor":{"code":"PAGINATION","name":"Pagination"},"display":true,"list":[{"descriptor":{"code":"PAGINATION_ID"},"value":"P1"},{"descriptor":{"code":"CURRENT_PAGE_NUMBER"},"value":"1"},{"descriptor":{"code":"MAX_PAGE_NUMBER"},"value":"2"}]}]}}}}},{"summary":"Return a catalog of all unreserved-entry-pass services","api":"on_search","details":[{"description":"Provider platform sends the catalog of all the services","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n Buyer Platform (BAP)->>Seller Platform (BPP): search\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n rect rgb(191, 223, 255)\n Seller Platform (BPP)->>Buyer Platform (BAP):on_search\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK\n end "}],"reference":"if any","example":{"summary":"Return a catalog for unreserved entry pass","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:43:16.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"0e035130-d548-46c3-a4af-28a65f2d5192","version":"2.0.0","action":"on_search","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"catalog":{"descriptor":{"name":"India tourism","long_desc":"Online ticket booking service","images":[{"url":"https://api.unreserved-entry-pass.com/logos/logo.ico","size_type":"xs"}]},"providers":[{"id":"P1","descriptor":{"name":"India tourism","short_desc":"Online Ticket Booking Service","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"categories":[{"descriptor":{"name":"Culture & Heritage","code":"CULTURE_HERITAGE"},"id":"C1"},{"descriptor":{"name":"Standard"},"parent_category_id":"C1","id":"C2"},{"descriptor":{"name":"Premium"},"parent_category_id":"C1","id":"C3"}],"time":{"range":{"start":"2024-06-14T05:30:00.000Z","end":"2024-06-14T23:30:00.000Z"}},"locations":[{"id":"L1","gps":"28.524596, 77.185577","descriptor":{"name":"Qutab Minar","short_desc":"Seth Sarai, Mehrauli, New Delhi, Delhi. The Qutb Minar, also spelled Qutub Minar and Qutab Minar, is a minaret and \"victory tower\" that forms part of the Qutb complex","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"5"},{"id":"L2","gps":"28.5244946, 77.1855177","descriptor":{"name":"Red Fort","short_desc":"Red Fort, Mughal fort in Old Delhi, India. It was built by Shah Jahān in the mid-17th century and remains a major tourist attraction.","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"4"}],"items":[{"id":"I0","descriptor":{"name":"Parent Item for Culture & Heritage","code":"ABSTRACT","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C2"],"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"cancellation_terms":[{"cancellation_fee":{"percentage":"10"},"fulfillment_state":{"descriptor":{"code":"CONFIRMED"}},"cancel_by":{"label":"DURATION","duration":"PT1H30M"}},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}},{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":true}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass/beckn/replacement.html"}}],"tags":[{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I1","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1","C2"],"price":{"currency":"INR","value":"350"},"quantity":{"maximum":{"count":6},"minimum":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"available":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"18"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I2","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1","C2"],"price":{"currency":"INR","value":"150"},"quantity":{"maximum":{"count":4},"minimum":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"available":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I3","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C3"],"price":{"currency":"INR","value":"400"},"quantity":{"maximum":{"count":6},"minimum":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"available":{"count":1}},"price":{"value":"100","currency":"INR"}}],"cancellation_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":false},{"cancellation_fee":{"percentage":"10"},"cancel_by":{"label":"TIMESTAMP","timestamp":"2024-07-26T04:43:16.000Z"},"cancellation_eligible":false}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass/beckn/replacement.html"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"18"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]},{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"},{"value":"guide_tour"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I4","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C3"],"price":{"currency":"INR","value":"250"},"quantity":{"maximum":{"count":4},"minimum":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"available":{"count":1}},"price":{"value":"100","currency":"INR"}}],"cancellation_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":false},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass/beckn/replacement.html"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]},{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"},{"value":"guide_tour"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I5","descriptor":{"name":"Add on item","code":"ADD_ON","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"price":{"currency":"INR","value":"100"},"quantity":{"maximum":{"count":3},"minimum":{"count":1}}}],"fulfillments":[{"id":"F1","type":"VISIT","stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"timestamp":"2024-06-28T05:00:16.000Z"}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}},{"id":"F2","type":"VISIT","stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"range":{"start":"2024-06-14T05:30:00.000Z","end":"2024-06-14T05:45:00.000Z"}}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}}],"payments":[{"collected_by":"BAP"}]}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]},{"descriptor":{"code":"BPP_TERMS","name":"BPP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"MANDATORY_ARBITRATION"},"value":"true"},{"descriptor":{"code":"COURT_JURISDICTION"},"value":"New Delhi"},{"descriptor":{"code":"DELAY_INTEREST"},"value":"2.5 %"}]},{"descriptor":{"code":"PAGINATION","name":"Pagination"},"display":true,"list":[{"descriptor":{"code":"PAGINATION_ID"},"value":"P1"},{"descriptor":{"code":"CURRENT_PAGE_NUMBER"},"value":"2"},{"descriptor":{"code":"MAX_PAGE_NUMBER"},"value":"2"}]}]}}}}}]},{"summary":"Unreserved Entry Pass - Purchase Journey(Culture-Heritage)","details":[{"description":"The illustrative flow to perform a transaction to create an ecosystem where entry tickets/ passes can be bought and sold over the network.","mermaid":"sequenceDiagram\n title Unreserved Entry Pass Discovery\n Buyer Platform (BAP)->>Gateway (BG): search\n Gateway (BG) ->> Buyer Platform (BAP): ACK\n Gateway (BG)->>Registry: Lookup Seller Platforms (lookup)\n Registry->>Gateway (BG): List of Seller Platforms (200 OK)\n Gateway (BG)->>Seller Platform (BPP): search\n Seller Platform (BPP)->>Gateway (BG) : ACK\n Seller Platform (BPP)->>Buyer Platform (BAP): Publish Catalog of Seller 1 (on_search)\n Buyer Platform (BAP)->>Seller Platform (BPP): ACK "},{"description":"Ordering","mermaid":"sequenceDiagram\n title Selection\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n Buyer Platform (BAP)->>Seller Platform (BPP): select\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n Seller Platform (BPP)->>Buyer Platform (BAP):on_select\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK"},{"description":"Initializing the order","mermaid":"sequenceDiagram\n title Initializing Order\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n Buyer Platform (BAP)->>Seller Platform (BPP): init\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n Seller Platform (BPP)->>Buyer Platform (BAP):on_init\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK "},{"description":"Order Confirmation","mermaid":"sequenceDiagram\n title Order Confirmation\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n Buyer Platform (BAP)->>Seller Platform (BPP): confirm\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n Seller Platform (BPP)->>Buyer Platform (BAP):on_confirm\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK "},{"description":"Fulfillment","mermaid":"sequenceDiagram\n title Order Fulfillment\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n Buyer Platform (BAP)->>Seller Platform (BPP): status-Request application status\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n Seller Platform (BPP)->>Buyer Platform (BAP):on_status - Provide application status\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK "}],"steps":[{"summary":"Selection of specific service","api":"select","details":[{"description":"The end consumer have to select the specific service and would like to have the necessary details","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n rect rgb(191, 223, 255)\n Buyer Platform (BAP)->>Seller Platform (BPP): select\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n end\n Buyer Platform (BAP)->>Seller Form Service: Get Form\n Seller Form Service-->>Buyer Platform (BAP): Form Received\n Buyer Platform (BAP)->>Seller Form Service: Form Submission\n Seller Form Service-->>Buyer Platform (BAP): Submission ID"}],"reference":"if any","example":{"summary":"Select a an item for unreserved-entry-pass","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:50:16.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"7b355323-11aa-4be9-9648-9628618b1157","version":"2.0.0","action":"select","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"items":[{"id":"I1","parent_item_id":"I0","quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","quantity":{"selected":{"count":1}}}]},{"id":"I2","parent_item_id":"I0","quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","quantity":{"selected":{"count":1}}}]},{"id":"I5","parent_item_id":"I0","quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","stops":[{"type":"START","time":{"timestamp":"2024-06-28T05:00:16.000Z"}}]}],"provider":{"id":"P1"}}}}}},{"summary":"Provider platform provides the quote for selected service of unreserved-entry-pass","api":"on_select","details":[{"description":"Provider platform responds with the service detailed information and quotes for the specific service that consumer would like to avail","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n Buyer Platform (BAP)->>Seller Platform (BPP): select\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n rect rgb(191, 223, 255)\n Seller Platform (BPP)->>Buyer Platform (BAP):on_select\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK\n end\n Buyer Platform (BAP)->>Seller Form Service: Get Form\n Seller Form Service-->>Buyer Platform (BAP): Form Received\n Buyer Platform (BAP)->>Seller Form Service: Form Submission\n Seller Form Service-->>Buyer Platform (BAP): Submission ID"}],"reference":"if any","example":{"summary":"Return a selected item for unreserved-entry-pass","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:51:16.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"7b355323-11aa-4be9-9648-9628618b1157","version":"2.0.0","action":"on_select","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"items":[{"id":"I0","descriptor":{"name":"Parent Item for Culture & Heritage","code":"ABSTRACT","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C2"],"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"tags":[{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I1","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]},{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"},{"value":"guide_tour"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}],"xinput":{"head":{"descriptor":{"name":"Additional Details"},"index":{"min":0,"cur":0,"max":0},"headings":["ADDITIONAL_DETAILS"]},"form":{"id":"F01","mime_type":"text/html","url":"https://api.unreserved-entry-pass.com/xinput/additonal-details/F01","resubmit":false,"multiple_sumbissions":false},"required":true}},{"id":"I2","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"xinput":{"head":{"descriptor":{"name":"Additional Details"},"index":{"min":0,"cur":0,"max":0},"headings":["ADDITIONAL_DETAILS"]},"form":{"id":"F01","mime_type":"text/html","url":"https://api.unreserved-entry-pass.com/xinput/additonal-details/F01","resubmit":false,"multiple_sumbissions":false},"required":true},"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]},{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"},{"value":"guide_tour"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I5","descriptor":{"name":"Add on item","code":"ADD_ON","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","price":{"currency":"INR","value":"100"},"quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","type":"VISIT","stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"timestamp":"2024-06-28T05:00:16.000Z"}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}}],"provider":{"id":"P1","descriptor":{"name":"Unreserved Entry Pass","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"locations":[{"id":"L1","gps":"28.524596, 77.185577","descriptor":{"name":"Qutab Minar","short_desc":"Seth Sarai, Mehrauli, New Delhi, Delhi. The Qutb Minar, also spelled Qutub Minar and Qutab Minar, is a minaret and \"victory tower\" that forms part of the Qutb complex","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"5"}]},"cancellation_terms":[{"cancellation_fee":{"percentage":"10"},"fulfillment_state":{"descriptor":{"code":"CONFIRMED"}},"cancel_by":{"label":"DURATION","duration":"PT1H30M"}},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}},{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":true}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/replacement.html"}}],"quote":{"breakup":[{"title":"BASE_FARE","item":{"id":"I1","price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"350"}},{"title":"BASE_FARE","item":{"id":"I2","price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"150"}},{"title":"TAX","price":{"currency":"INR","value":"0"}},{"title":"ADD_ONS","item":{"id":"I1","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I2","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I5"},"price":{"currency":"INR","value":"100"}}],"price":{"currency":"INR","value":"800"}}}}}}},{"summary":"Provider platform share the additional details form","api":"form","details":[{"description":"Buyer platform fetches the additional details form from the Provider platform using the link provided in the previous step","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n Buyer Platform (BAP)->>Seller Platform (BPP): select\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n Seller Platform (BPP)->>Buyer Platform (BAP):on_select\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK\n rect rgb(191, 223, 255)\n Buyer Platform (BAP)->>Seller Form Service: Get Form\n Seller Form Service-->>Buyer Platform (BAP): Form Received\n Buyer Platform (BAP)->>Seller Form Service: Form Submission\n Seller Form Service-->>Buyer Platform (BAP): Submission ID\n end"}],"reference":"if any","example":{"value":"\n\n\n\n \n \n Additional Details\n\n\n\n
\n \n \n \n \n \n \n \n
\n\n\n"}},{"summary":"Buyer app submit the Additional Details Form","api":"select","details":[{"description":"Buyer app submit the Additional Details Form","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n rect rgb(191, 223, 255)\n Buyer Platform (BAP)->>Seller Platform (BPP): select\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n end\n Buyer Platform (BAP)->>Seller Form Service: Get Form\n Seller Form Service-->>Buyer Platform (BAP): Form Received\n Buyer Platform (BAP)->>Seller Form Service: Form Submission\n Seller Form Service-->>Buyer Platform (BAP): Submission ID"}],"reference":"if any","example":{"summary":"Select a an item for unreserved-entry-pass","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:50:16.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"7b355323-11aa-4be9-9648-9628618b1157","version":"2.0.0","action":"select","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"items":[{"id":"I1","parent_item_id":"I0","quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","quantity":{"selected":{"count":1}}}],"xinput":{"form":{"id":"F01"},"form_response":{"status":"SUCCESS","submission_id":"F01_SUBMISSION_ID"}}},{"id":"I2","parent_item_id":"I0","quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","quantity":{"selected":{"count":1}}}],"xinput":{"form":{"id":"F01"},"form_response":{"status":"SUCCESS","submission_id":"F01_SUBMISSION_ID"}}},{"id":"I5","parent_item_id":"I0","quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","stops":[{"type":"START","time":{"timestamp":"2024-06-28T05:00:16.000Z"}}]}],"provider":{"id":"P1"}}}}}},{"summary":"Provider platform provides the quote for selected service of unreserved-entry-pass","api":"on_select","details":[{"description":"Provider platform responds with the service detailed information and quotes for the specific service that consumer would like to avail","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n Buyer Platform (BAP)->>Seller Platform (BPP): select\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n rect rgb(191, 223, 255)\n Seller Platform (BPP)->>Buyer Platform (BAP):on_select\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK\n end\n Buyer Platform (BAP)->>Seller Form Service: Get Form\n Seller Form Service-->>Buyer Platform (BAP): Form Received\n Buyer Platform (BAP)->>Seller Form Service: Form Submission\n Seller Form Service-->>Buyer Platform (BAP): Submission ID"}],"reference":"if any","example":{"summary":"Return a selected item for unreserved-entry-pass","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:51:16.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"7b355323-11aa-4be9-9648-9628618b1157","version":"2.0.0","action":"on_select","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"items":[{"id":"I0","descriptor":{"name":"Parent Item for Culture & Heritage","code":"ABSTRACT","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C2"],"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"tags":[{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I1","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]},{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"},{"value":"guide_tour"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}],"xinput":{"form":{"id":"F01"},"form_response":{"status":"SUCCESS","submission_id":"F01_SUBMISSION_ID"}}},{"id":"I2","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]},{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"},{"value":"guide_tour"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}],"xinput":{"form":{"id":"F01"},"form_response":{"status":"SUCCESS","submission_id":"F01_SUBMISSION_ID"}}},{"id":"I5","descriptor":{"name":"Add on item","code":"ADD_ON","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","price":{"currency":"INR","value":"100"},"quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","type":"VISIT","stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"timestamp":"2024-06-28T05:00:16.000Z"}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}}],"provider":{"id":"P1","descriptor":{"name":"Unreserved Entry Pass","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"locations":[{"id":"L1","gps":"28.524596, 77.185577","descriptor":{"name":"Qutab Minar","short_desc":"Seth Sarai, Mehrauli, New Delhi, Delhi. The Qutb Minar, also spelled Qutub Minar and Qutab Minar, is a minaret and \"victory tower\" that forms part of the Qutb complex","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"5"}]},"cancellation_terms":[{"cancellation_fee":{"percentage":"10"},"fulfillment_state":{"descriptor":{"code":"CONFIRMED"}},"cancel_by":{"label":"DURATION","duration":"PT1H30M"}},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}},{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":true}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/replacement.html"}}],"quote":{"breakup":[{"title":"BASE_FARE","item":{"id":"I1","price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"350"}},{"title":"BASE_FARE","item":{"id":"I2","price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"150"}},{"title":"TAX","price":{"currency":"INR","value":"0"}},{"title":"ADD_ONS","item":{"id":"I1","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I2","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I5"},"price":{"currency":"INR","value":"100"}}],"price":{"currency":"INR","value":"800"}}}}}}},{"summary":"Consumer platform initializes the order","api":"init","details":[{"description":"Consumer platform shares the terms of order and initializes the order","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n rect rgb(191, 223, 255)\n Buyer Platform (BAP)->>Seller Platform (BPP): init\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n end\n Seller Platform (BPP)->>Buyer Platform (BAP):on_init\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK"}],"reference":"if any","example":{"summary":"Initialize the order by providing billing details","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:52:16.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"764b4322-8f7c-402c-b907-80484e9ad40c","version":"2.0.0","action":"init","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"items":[{"id":"I1","parent_item_id":"I0","quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","quantity":{"selected":{"count":1}}}]},{"id":"I2","parent_item_id":"I0","quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","quantity":{"selected":{"count":1}}}]},{"id":"I5","parent_item_id":"I0","quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","stops":[{"type":"START","time":{"timestamp":"2024-06-28T05:00:16.000Z"}}]}],"billing":{"name":"John Doe","email":"john.doe@example.com","phone":"+91-9897867564"},"provider":{"id":"P1"},"payments":[{"collected_by":"BAP","status":"NOT-PAID","type":"PRE-ORDER"}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]}]}}}}},{"summary":"Provider platform accepts/appends the terms of orders","api":"on_init","details":[{"description":"Provider platform accepts the terms of orders and appends its own terms and responds with the final draft","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n Buyer Platform (BAP)->>Seller Platform (BPP): init\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n rect rgb(191, 223, 255)\n Seller Platform (BPP)->>Buyer Platform (BAP):on_init\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK\n end "}],"reference":"if any","example":{"summary":"Return draft order for transit ticket with settlement details","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:52:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"036eedaf-7af0-42b5-8764-5b00b5b55a5d","version":"2.0.0","action":"on_init","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"items":[{"id":"I0","descriptor":{"name":"Parent Item for Culture & Heritage","code":"ABSTRACT","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C2"],"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"tags":[{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I1","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I2","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I5","descriptor":{"name":"Add on item","code":"ADD_ON","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","price":{"currency":"INR","value":"100"},"quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","type":"VISIT","stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"timestamp":"2024-06-28T05:00:16.000Z"}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}}],"provider":{"id":"P1","descriptor":{"name":"Unreserved Entry Pass","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"locations":[{"id":"L1","gps":"28.524596, 77.185577","descriptor":{"name":"Qutab Minar","short_desc":"Seth Sarai, Mehrauli, New Delhi, Delhi. The Qutb Minar, also spelled Qutub Minar and Qutab Minar, is a minaret and \"victory tower\" that forms part of the Qutb complex","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"5"}]},"cancellation_terms":[{"cancellation_fee":{"percentage":"10"},"fulfillment_state":{"descriptor":{"code":"CONFIRMED"}},"cancel_by":{"label":"DURATION","duration":"PT1H30M"}},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}},{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":true}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/replacement.html"}}],"quote":{"breakup":[{"title":"BASE_FARE","item":{"id":"I1","price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"350"}},{"title":"BASE_FARE","item":{"id":"I2","price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"150"}},{"title":"TAX","price":{"currency":"INR","value":"0"}},{"title":"ADD_ONS","item":{"id":"I1","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I2","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I5"},"price":{"currency":"INR","value":"100"}}],"price":{"currency":"INR","value":"800"}},"billing":{"name":"John Doe","email":"john.doe@example.com","phone":"+91-9897867564"},"payments":[{"id":"PA1","collected_by":"BAP","status":"NOT-PAID","type":"PRE-ORDER"}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]},{"descriptor":{"code":"BPP_TERMS","name":"BPP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"MANDATORY_ARBITRATION"},"value":"true"},{"descriptor":{"code":"COURT_JURISDICTION"},"value":"New Delhi"},{"descriptor":{"code":"DELAY_INTEREST"},"value":"2.5 %"},{"descriptor":{"code":"SETTLEMENT_AMOUNT"},"value":"7 INR"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_BANK_CODE"},"value":"XXXXXXXX"},{"descriptor":{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER"},"value":"xxxxxxxxxxxxxx"}]}]}}}}},{"summary":"Consumer confirms the booking and provides details.","api":"confirm","details":[{"description":"Consumer platform confirms the booking and provides all information required for confirmation as per the terms of order","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n rect rgb(191, 223, 255)\n Buyer Platform (BAP)->>Seller Platform (BPP): confirm\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n end\n Seller Platform (BPP)->>Buyer Platform (BAP):on_confirm\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK"}],"reference":"if any","example":{"summary":"Confirm ticket booking","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:53:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"6d287e01-59bc-4c6d-b0ab-e07649eae6b2","version":"2.0.0","action":"confirm","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"items":[{"id":"I1","parent_item_id":"I0","quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","quantity":{"selected":{"count":1}}}]},{"id":"I2","parent_item_id":"I0","quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","quantity":{"selected":{"count":1}}}]},{"id":"I5","parent_item_id":"I0","quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","stops":[{"type":"START","time":{"timestamp":"2024-06-28T05:00:16.000Z"}}]}],"billing":{"name":"John Doe","email":"john.doe@example.com","phone":"+91-9897867564"},"provider":{"id":"P1"},"payments":[{"collected_by":"BAP","status":"NOT-PAID","type":"PRE-ORDER","params":{"transaction_id":"61b4be7e-d85c-456a-99e5-ce3d83be135d","currency":"INR","amount":"800"}}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]},{"descriptor":{"code":"BPP_TERMS","name":"BPP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"MANDATORY_ARBITRATION"},"value":"true"},{"descriptor":{"code":"COURT_JURISDICTION"},"value":"New Delhi"},{"descriptor":{"code":"DELAY_INTEREST"},"value":"2.5 %"},{"descriptor":{"code":"SETTLEMENT_AMOUNT"},"value":"7 INR"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_BANK_CODE"},"value":"XXXXXXXX"},{"descriptor":{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER"},"value":"xxxxxxxxxxxxxx"}]}]}}}}},{"summary":"Provider platform confirms the order","api":"on_confirm","details":[{"description":"Provider platform confirms the order and provides details of the journey on confirmation","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n Buyer Platform (BAP)->>Seller Platform (BPP): confirm\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n rect rgb(191, 223, 255)\n Seller Platform (BPP)->>Buyer Platform (BAP):on_confirm\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK\n end"}],"reference":"if any","example":{"summary":"Return confirmed ticket order with payment confirmation","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:53:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"6d287e01-59bc-4c6d-b0ab-e07649eae6b2","version":"2.0.0","action":"on_confirm","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"id":"01","status":"ACTIVE","items":[{"id":"I0","descriptor":{"name":"Parent Item for Culture & Heritage","code":"ABSTRACT","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C2"],"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"tags":[{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I1","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I2","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I5","descriptor":{"name":"Add on item","code":"ADD_ON","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","price":{"currency":"INR","value":"100"},"quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","type":"VISIT","state":{"descriptor":{"code":"CONFIRMED"}},"stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"timestamp":"2024-06-28T05:00:16.000Z"},"authorization":{"type":"QR","token":"iVBORw0KGgoAAAANSUhEUgAAAH0AAAB9AQAAAACn+1GIAAAApklEQVR4Xu2UMQ4EMQgD/QP+/0vK6zjsvayUMmavWxQpMAUBkwS12wcveAAkgNSCD3rR5Lkgoai3GUCMgWqbAEYR3HxAkZlzU/0MyBisYRsgI1ERFfcpBpA+ze6k56Cj7KTdXNigFWZvSOpsgqLfd18i2aAukXh9TXBNmdWt5gzA/oqzWkkN8HtA7G8CNOwYAiZt3wZixUfkA32OHNQq7Bxs9oI/gC/9fV8AVCkPjQAAAABJRU5ErkJggg==","valid_to":"2024-06-30T05:00:16.000Z","status":"UNCLAIMED"}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}}],"provider":{"id":"P1","descriptor":{"name":"Unreserved Entry Pass","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"locations":[{"id":"L1","gps":"28.524596, 77.185577","descriptor":{"name":"Qutab Minar","short_desc":"Seth Sarai, Mehrauli, New Delhi, Delhi. The Qutb Minar, also spelled Qutub Minar and Qutab Minar, is a minaret and \"victory tower\" that forms part of the Qutb complex","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"5"}]},"cancellation_terms":[{"cancellation_fee":{"percentage":"10"},"fulfillment_state":{"descriptor":{"code":"CONFIRMED"}},"cancel_by":{"label":"DURATION","duration":"PT1H30M"}},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}},{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":true}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/replacement.html"}}],"billing":{"name":"John Doe","email":"john.doe@example.com","phone":"+91-9897867564"},"quote":{"breakup":[{"title":"BASE_FARE","item":{"id":"I1","price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"350"}},{"title":"BASE_FARE","item":{"id":"I2","price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"150"}},{"title":"TAX","price":{"currency":"INR","value":"0"}},{"title":"ADD_ONS","item":{"id":"I1","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I2","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I5"},"price":{"currency":"INR","value":"100"}}],"price":{"currency":"INR","value":"800"}},"payments":[{"id":"PA1","collected_by":"BAP","status":"PAID","type":"PRE-ORDER","params":{"transaction_id":"61b4be7e-d85c-456a-99e5-ce3d83be135d","amount":"800","currency":"INR"}}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]},{"descriptor":{"code":"BPP_TERMS","name":"BPP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"MANDATORY_ARBITRATION"},"value":"true"},{"descriptor":{"code":"COURT_JURISDICTION"},"value":"New Delhi"},{"descriptor":{"code":"DELAY_INTEREST"},"value":"2.5 %"},{"descriptor":{"code":"SETTLEMENT_AMOUNT"},"value":"7 INR"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_BANK_CODE"},"value":"XXXXXXXX"},{"descriptor":{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER"},"value":"xxxxxxxxxxxxxx"}]}],"created_at":"2024-06-26T04:53:26.000Z","updated_at":"2024-06-26T04:53:26.000Z"}}}}},{"summary":"Consumer platform requests for latest status","api":"status","details":[{"description":"Consumer platform request the provider platform to provide with latest order status.","mermaid":"sequenceDiagram\n title Order Fulfillment\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n rect rgb(191, 223, 255)\n Buyer Platform (BAP)->>Seller Platform (BPP): status-Request application status\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n end\n Seller Platform (BPP)->>Buyer Platform (BAP):on_status - Provide application status\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK "}],"reference":"if any","example":{"summary":"Fetch the latest status of order","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:55:16.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"213a32eb-b7a4-4877-9f53-bad6a629b167","version":"2.0.0","action":"status","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order_id":"01"}}}},{"summary":"Provider platform provides latest order status","api":"on_status","details":[{"description":"Provider platform provides the updated order status to the consumer.","mermaid":"sequenceDiagram\n title Order Fulfillment\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n Buyer Platform (BAP)->>Seller Platform (BPP): status-Request application status\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n rect rgb(191, 223, 255)\n Seller Platform (BPP)->>Buyer Platform (BAP):on_status - Provide application status\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK\n end "}],"reference":"if any","example":{"summary":"Return confirmed ticket order with payment confirmation","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:53:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"6d287e01-59bc-4c6d-b0ab-e07649eae6b2","version":"2.0.0","action":"on_status","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"id":"01","status":"COMPLETED","items":[{"id":"I0","descriptor":{"name":"Parent Item for Culture & Heritage","code":"ABSTRACT","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C2"],"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"tags":[{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I1","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I2","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I5","descriptor":{"name":"Add on item","code":"ADD_ON","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","price":{"currency":"INR","value":"100"},"quantity":{"selected":{"count":1}}}],"billing":{"name":"John Doe","email":"john.doe@example.com","phone":"+91-9897867564"},"fulfillments":[{"id":"F1","type":"VISIT","state":{"descriptor":{"code":"COMPLETED"}},"stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"timestamp":"2024-06-28T05:00:16.000Z"},"authorization":{"type":"QR","token":"iVBORw0KGgoAAAANSUhEUgAAAH0AAAB9AQAAAACn+1GIAAAApklEQVR4Xu2UMQ4EMQgD/QP+/0vK6zjsvayUMmavWxQpMAUBkwS12wcveAAkgNSCD3rR5Lkgoai3GUCMgWqbAEYR3HxAkZlzU/0MyBisYRsgI1ERFfcpBpA+ze6k56Cj7KTdXNigFWZvSOpsgqLfd18i2aAukXh9TXBNmdWt5gzA/oqzWkkN8HtA7G8CNOwYAiZt3wZixUfkA32OHNQq7Bxs9oI/gC/9fV8AVCkPjQAAAABJRU5ErkJggg==","valid_to":"2024-06-30T05:00:16.000Z","status":"CLAIMED"}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}}],"provider":{"id":"P1","descriptor":{"name":"Unreserved Entry Pass","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"locations":[{"id":"L1","gps":"28.524596, 77.185577","descriptor":{"name":"Qutab Minar","short_desc":"Seth Sarai, Mehrauli, New Delhi, Delhi. The Qutb Minar, also spelled Qutub Minar and Qutab Minar, is a minaret and \"victory tower\" that forms part of the Qutb complex","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"5"}]},"cancellation_terms":[{"cancellation_fee":{"percentage":"10"},"fulfillment_state":{"descriptor":{"code":"CONFIRMED"}},"cancel_by":{"label":"DURATION","duration":"PT1H30M"}},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}},{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":true}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/replacement.html"}}],"quote":{"breakup":[{"title":"BASE_FARE","item":{"id":"I1","price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"350"}},{"title":"BASE_FARE","item":{"id":"I2","price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"150"}},{"title":"TAX","price":{"currency":"INR","value":"0"}},{"title":"ADD_ONS","item":{"id":"I1","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I2","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I5"},"price":{"currency":"INR","value":"100"}}],"price":{"currency":"INR","value":"800"}},"payments":[{"id":"PA1","collected_by":"BAP","status":"PAID","type":"PRE-ORDER","params":{"transaction_id":"61b4be7e-d85c-456a-99e5-ce3d83be135d","amount":"800","currency":"INR"}}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]},{"descriptor":{"code":"BPP_TERMS","name":"BPP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"MANDATORY_ARBITRATION"},"value":"true"},{"descriptor":{"code":"COURT_JURISDICTION"},"value":"New Delhi"},{"descriptor":{"code":"DELAY_INTEREST"},"value":"2.5 %"},{"descriptor":{"code":"SETTLEMENT_AMOUNT"},"value":"7 INR"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_BANK_CODE"},"value":"XXXXXXXX"},{"descriptor":{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER"},"value":"xxxxxxxxxxxxxx"}]}],"created_at":"2024-06-26T04:53:26.000Z","updated_at":"2024-06-26T04:53:26.000Z"}}}}}]},{"summary":"Unreserved Entry Pass - Technical Cancellation Flow","details":[{"description":"Detailed process of cancelling a ticket with soft & confirm status.","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n Seller Platform (BPP)->>Buyer Platform (BAP):on_confirm\n Buyer Platform (BAP)-->>Seller Platform (BPP): NACK \n Buyer Platform (BAP)->>Seller Platform (BPP): status\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK \n Seller Platform (BPP)->>Buyer Platform (BAP):on_status\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK\n Buyer Platform (BAP)->>Seller Platform (BPP): cancel - with soft_cancel request\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n Seller Platform (BPP)->>Buyer Platform (BAP):on_cancel\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK\n Buyer Platform (BAP)->>Seller Platform (BPP): cancel - with confirm_cancel request\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n Seller Platform (BPP)->>Buyer Platform (BAP):on_cancel\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK "}],"steps":[{"summary":"Provider confirms the request","api":"on_confirm","details":[{"description":"The provider has confirmed the request, but the buyer app received the request after the TTL had expired.","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n rect rgb(191, 223, 255)\n Seller Platform (BPP)->>Buyer Platform (BAP):on_confirm\n Buyer Platform (BAP)-->>Seller Platform (BPP): NACK \n end\n Buyer Platform (BAP)->>Seller Platform (BPP): status\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n Seller Platform (BPP)->>Buyer Platform (BAP):on_status\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK "}],"reference":"if any","example":{"summary":"Return confirmed ticket order with payment confirmation","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:53:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"6d287e01-59bc-4c6d-b0ab-e07649eae6b2","version":"2.0.0","action":"on_confirm","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"id":"01","status":"ACTIVE","items":[{"id":"I0","descriptor":{"name":"Parent Item for Culture & Heritage","code":"ABSTRACT","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C2"],"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"tags":[{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I1","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I2","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I5","descriptor":{"name":"Add on item","code":"ADD_ON","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","price":{"currency":"INR","value":"100"},"quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","type":"VISIT","state":{"descriptor":{"code":"CONFIRMED"}},"stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"timestamp":"2024-06-28T05:00:16.000Z"},"authorization":{"type":"QR","token":"iVBORw0KGgoAAAANSUhEUgAAAH0AAAB9AQAAAACn+1GIAAAApklEQVR4Xu2UMQ4EMQgD/QP+/0vK6zjsvayUMmavWxQpMAUBkwS12wcveAAkgNSCD3rR5Lkgoai3GUCMgWqbAEYR3HxAkZlzU/0MyBisYRsgI1ERFfcpBpA+ze6k56Cj7KTdXNigFWZvSOpsgqLfd18i2aAukXh9TXBNmdWt5gzA/oqzWkkN8HtA7G8CNOwYAiZt3wZixUfkA32OHNQq7Bxs9oI/gC/9fV8AVCkPjQAAAABJRU5ErkJggg==","valid_to":"2024-06-30T05:00:16.000Z","status":"UNCLAIMED"}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}}],"provider":{"id":"P1","descriptor":{"name":"Unreserved Entry Pass","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"locations":[{"id":"L1","gps":"28.524596, 77.185577","descriptor":{"name":"Qutab Minar","short_desc":"Seth Sarai, Mehrauli, New Delhi, Delhi. The Qutb Minar, also spelled Qutub Minar and Qutab Minar, is a minaret and \"victory tower\" that forms part of the Qutb complex","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"5"}]},"cancellation_terms":[{"cancellation_fee":{"percentage":"10"},"fulfillment_state":{"descriptor":{"code":"CONFIRMED"}},"cancel_by":{"label":"DURATION","duration":"PT1H30M"}},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}},{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":true}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/replacement.html"}}],"billing":{"name":"John Doe","email":"john.doe@example.com","phone":"+91-9897867564"},"quote":{"breakup":[{"title":"BASE_FARE","item":{"id":"I1","price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"350"}},{"title":"BASE_FARE","item":{"id":"I2","price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"150"}},{"title":"TAX","price":{"currency":"INR","value":"0"}},{"title":"ADD_ONS","item":{"id":"I1","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I2","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I5"},"price":{"currency":"INR","value":"100"}}],"price":{"currency":"INR","value":"800"}},"payments":[{"id":"PA1","collected_by":"BAP","status":"PAID","type":"PRE-ORDER","params":{"transaction_id":"61b4be7e-d85c-456a-99e5-ce3d83be135d","amount":"800","currency":"INR"}}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]},{"descriptor":{"code":"BPP_TERMS","name":"BPP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"MANDATORY_ARBITRATION"},"value":"true"},{"descriptor":{"code":"COURT_JURISDICTION"},"value":"New Delhi"},{"descriptor":{"code":"DELAY_INTEREST"},"value":"2.5 %"},{"descriptor":{"code":"SETTLEMENT_AMOUNT"},"value":"7 INR"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_BANK_CODE"},"value":"XXXXXXXX"},{"descriptor":{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER"},"value":"xxxxxxxxxxxxxx"}]}],"created_at":"2024-06-26T04:53:26.000Z","updated_at":"2024-06-26T04:53:26.000Z"}}}}},{"summary":"Buyer app request for latest order status","api":"status","details":[{"description":"Buyer app request for latest order status","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n Seller Platform (BPP)->>Buyer Platform (BAP):on_confirm\n Buyer Platform (BAP)-->>Seller Platform (BPP): NACK \n rect rgb(191, 223, 255)\n Buyer Platform (BAP)->>Seller Platform (BPP): status\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n end\n Seller Platform (BPP)->>Buyer Platform (BAP):on_status\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK "}],"reference":"if any","example":{"summary":"Return confirmed ticket order with payment confirmation","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:55:16.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"0ca6e299-b980-41c9-8bcc-b6a9a77cbd8d","version":"2.0.0","action":"status","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"ref_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222"}}}},{"summary":"Provider sends the latest order status","api":"on_status","details":[{"description":"Provider sends the latest order status","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n Seller Platform (BPP)->>Buyer Platform (BAP):on_confirm\n Buyer Platform (BAP)-->>Seller Platform (BPP): NACK \n Buyer Platform (BAP)->>Seller Platform (BPP): status\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n rect rgb(191, 223, 255)\n Seller Platform (BPP)->>Buyer Platform (BAP):on_status\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK\n end "}],"reference":"if any","example":{"summary":"Return confirmed ticket order with payment confirmation","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:53:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"0ca6e299-b980-41c9-8bcc-b6a9a77cbd8d","version":"2.0.0","action":"on_status","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"id":"01","status":"ACTIVE","items":[{"id":"I0","descriptor":{"name":"Parent Item for Culture & Heritage","code":"ABSTRACT","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C2"],"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"tags":[{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I1","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I2","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I5","descriptor":{"name":"Add on item","code":"ADD_ON","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","price":{"currency":"INR","value":"100"},"quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","type":"VISIT","state":{"descriptor":{"code":"CONFIRMED"}},"stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"timestamp":"2024-06-28T05:00:16.000Z"},"authorization":{"type":"QR","token":"iVBORw0KGgoAAAANSUhEUgAAAH0AAAB9AQAAAACn+1GIAAAApklEQVR4Xu2UMQ4EMQgD/QP+/0vK6zjsvayUMmavWxQpMAUBkwS12wcveAAkgNSCD3rR5Lkgoai3GUCMgWqbAEYR3HxAkZlzU/0MyBisYRsgI1ERFfcpBpA+ze6k56Cj7KTdXNigFWZvSOpsgqLfd18i2aAukXh9TXBNmdWt5gzA/oqzWkkN8HtA7G8CNOwYAiZt3wZixUfkA32OHNQq7Bxs9oI/gC/9fV8AVCkPjQAAAABJRU5ErkJggg==","valid_to":"2024-06-30T05:00:16.000Z","status":"UNCLAIMED"}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}}],"provider":{"id":"P1","descriptor":{"name":"Unreserved Entry Pass","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"locations":[{"id":"L1","gps":"28.524596, 77.185577","descriptor":{"name":"Qutab Minar","short_desc":"Seth Sarai, Mehrauli, New Delhi, Delhi. The Qutb Minar, also spelled Qutub Minar and Qutab Minar, is a minaret and \"victory tower\" that forms part of the Qutb complex","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"5"}]},"cancellation_terms":[{"cancellation_fee":{"percentage":"10"},"fulfillment_state":{"descriptor":{"code":"CONFIRMED"}},"cancel_by":{"label":"DURATION","duration":"PT1H30M"}},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}},{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":true}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/replacement.html"}}],"billing":{"name":"John Doe","email":"john.doe@example.com","phone":"+91-9897867564"},"quote":{"breakup":[{"title":"BASE_FARE","item":{"id":"I1","price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"350"}},{"title":"BASE_FARE","item":{"id":"I2","price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"150"}},{"title":"TAX","price":{"currency":"INR","value":"0"}},{"title":"ADD_ONS","item":{"id":"I1","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I2","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I5"},"price":{"currency":"INR","value":"100"}}],"price":{"currency":"INR","value":"800"}},"payments":[{"id":"PA1","collected_by":"BAP","status":"PAID","type":"PRE-ORDER","params":{"transaction_id":"61b4be7e-d85c-456a-99e5-ce3d83be135d","amount":"800","currency":"INR"}}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]},{"descriptor":{"code":"BPP_TERMS","name":"BPP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"MANDATORY_ARBITRATION"},"value":"true"},{"descriptor":{"code":"COURT_JURISDICTION"},"value":"New Delhi"},{"descriptor":{"code":"DELAY_INTEREST"},"value":"2.5 %"},{"descriptor":{"code":"SETTLEMENT_AMOUNT"},"value":"7 INR"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_BANK_CODE"},"value":"XXXXXXXX"},{"descriptor":{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER"},"value":"xxxxxxxxxxxxxx"}]}],"created_at":"2024-06-26T04:53:26.000Z","updated_at":"2024-06-26T04:53:26.000Z"}}}}},{"summary":"Buyer app cancels the request for ticket(Optional)","api":"cancel","details":[{"description":"Buyer app requests for cancellation of ticket.","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n rect rgb(191, 223, 255)\n Buyer Platform (BAP)->>Seller Platform (BPP): cancel - with soft_cancel request\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n end\n Seller Platform (BPP)->>Buyer Platform (BAP):on_cancel\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK"}],"reference":"if any","example":{"summary":"Cancel ticket booking","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T05:10:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"83fc2d6c-9d92-4b8a-a0bb-9e410d2b2a1e","version":"2.0.0","action":"cancel","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order_id":"O1","cancellation_reason_id":"0","descriptor":{"name":"Ride Cancellation","code":"SOFT_CANCEL"}}}}},{"summary":"Provider accepts/appends the terms of cancellation(Optional)","api":"on_cancel","details":[{"description":"Provider accepts the terms of order and appends its own terms and provides with latest order update.","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n Buyer Platform (BAP)->>Seller Platform (BPP): cancel - with soft_cancel request\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n rect rgb(191, 223, 255)\n Seller Platform (BPP)->>Buyer Platform (BAP):on_cancel\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK\n end"}],"reference":"if any","example":{"summary":"Cancel ticket booking","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T05:11:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"83fc2d6c-9d92-4b8a-a0bb-9e410d2b2a1e","version":"2.0.0","action":"on_cancel","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"id":"01","status":"SOFT_CANCEL","items":[{"id":"I0","descriptor":{"name":"Parent Item for Culture & Heritage","code":"ABSTRACT","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C2"],"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"tags":[{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I1","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I2","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I5","descriptor":{"name":"Add on item","code":"ADD_ON","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","price":{"currency":"INR","value":"100"},"quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","type":"VISIT","state":{"descriptor":{"code":"CONFIRMED"}},"stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"timestamp":"2024-06-28T05:00:16.000Z"},"authorization":{"type":"QR","token":"iVBORw0KGgoAAAANSUhEUgAAAH0AAAB9AQAAAACn+1GIAAAApklEQVR4Xu2UMQ4EMQgD/QP+/0vK6zjsvayUMmavWxQpMAUBkwS12wcveAAkgNSCD3rR5Lkgoai3GUCMgWqbAEYR3HxAkZlzU/0MyBisYRsgI1ERFfcpBpA+ze6k56Cj7KTdXNigFWZvSOpsgqLfd18i2aAukXh9TXBNmdWt5gzA/oqzWkkN8HtA7G8CNOwYAiZt3wZixUfkA32OHNQq7Bxs9oI/gC/9fV8AVCkPjQAAAABJRU5ErkJggg==","valid_to":"2024-06-30T05:00:16.000Z","status":"UNCLAIMED"}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}}],"provider":{"id":"P1","descriptor":{"name":"Event ticketing","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"locations":[{"id":"L1","gps":"28.524596, 77.185577","descriptor":{"name":"Qutab Minar","short_desc":"Seth Sarai, Mehrauli, New Delhi, Delhi. The Qutb Minar, also spelled Qutub Minar and Qutab Minar, is a minaret and \"victory tower\" that forms part of the Qutb complex","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"5"}]},"cancellation_terms":[{"cancellation_fee":{"percentage":"10"},"fulfillment_state":{"descriptor":{"code":"CONFIRMED"}},"cancel_by":{"label":"DURATION","duration":"PT1H30M"}},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}},{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":true}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/replacement.html"}}],"quote":{"breakup":[{"title":"BASE_FARE","item":{"id":"I1","price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"350"}},{"title":"BASE_FARE","item":{"id":"I2","price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"150"}},{"title":"TAX","price":{"currency":"INR","value":"0"}},{"title":"ADD_ONS","item":{"id":"I1","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I2","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I5"},"price":{"currency":"INR","value":"100"}},{"title":"REFUND","item":{"id":"I1","price":{"currency":"INR","value":"-350"},"quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","price":{"currency":"INR","value":"-100"}}]},"price":{"currency":"INR","value":"-450"}},{"title":"REFUND","item":{"id":"I2","price":{"currency":"INR","value":"-150"},"quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","price":{"currency":"INR","value":"100"}}]},"price":{"currency":"INR","value":"-250"}},{"title":"REFUND","item":{"id":"I5"},"price":{"currency":"INR","value":"-100"}},{"title":"CANCELLATION_CHARGES","price":{"currency":"INR","value":"100"}}],"price":{"currency":"INR","value":"100"}},"payments":[{"id":"PA1","collected_by":"BAP","status":"PAID","type":"PRE-ORDER","params":{"transaction_id":"61b4be7e-d85c-456a-99e5-ce3d83be135d","amount":"800","currency":"INR"}}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]},{"descriptor":{"code":"BPP_TERMS","name":"BPP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"MANDATORY_ARBITRATION"},"value":"true"},{"descriptor":{"code":"COURT_JURISDICTION"},"value":"New Delhi"},{"descriptor":{"code":"DELAY_INTEREST"},"value":"2.5 %"},{"descriptor":{"code":"SETTLEMENT_AMOUNT"},"value":"7 INR"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_BANK_CODE"},"value":"XXXXXXXX"},{"descriptor":{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER"},"value":"xxxxxxxxxxxxxx"}]}]}}}}},{"summary":"Buyer app confirms the cancel request for ticket","api":"cancel","details":[{"description":"Buyer app give the confirmation to cancel the ticket.","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n rect rgb(191, 223, 255)\n Buyer Platform (BAP)->>Seller Platform (BPP): cancel - with confirm_cancel request\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n end\n Seller Platform (BPP)->>Buyer Platform (BAP):on_cancel\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK"}],"reference":"if any","example":{"summary":"Cancel ticket booking","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T05:12:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"af0fb8a7-0ca0-4c40-85f5-f95dcff61215","version":"2.0.0","action":"cancel","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order_id":"O1","cancellation_reason_id":"0","descriptor":{"name":"Ride Cancellation","code":"CONFIRM_CANCEL"}}}}},{"summary":"Provider accepts the terms of cancellation","api":"on_cancel","details":[{"description":"Provider accepts the terms of order and provides with latest order update.","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n Buyer Platform (BAP)->>Seller Platform (BPP): cancel - with confirm_cancel request\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n rect rgb(191, 223, 255)\n Seller Platform (BPP)->>Buyer Platform (BAP):on_cancel\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK\n end "}],"reference":"if any","example":{"summary":"Cancel ticket booking","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T05:11:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"af0fb8a7-0ca0-4c40-85f5-f95dcff61215","version":"2.0.0","action":"on_cancel","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"id":"01","status":"CANCELLED","items":[{"id":"I0","descriptor":{"name":"Parent Item for Culture & Heritage","code":"ABSTRACT","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C2"],"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"tags":[{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I1","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I2","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I5","descriptor":{"name":"Add on item","code":"ADD_ON","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","price":{"currency":"INR","value":"100"},"quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","type":"VISIT","state":{"descriptor":{"code":"CONFIRMED"}},"stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"timestamp":"2024-06-28T05:00:16.000Z"},"authorization":{"type":"QR","token":"iVBORw0KGgoAAAANSUhEUgAAAH0AAAB9AQAAAACn+1GIAAAApklEQVR4Xu2UMQ4EMQgD/QP+/0vK6zjsvayUMmavWxQpMAUBkwS12wcveAAkgNSCD3rR5Lkgoai3GUCMgWqbAEYR3HxAkZlzU/0MyBisYRsgI1ERFfcpBpA+ze6k56Cj7KTdXNigFWZvSOpsgqLfd18i2aAukXh9TXBNmdWt5gzA/oqzWkkN8HtA7G8CNOwYAiZt3wZixUfkA32OHNQq7Bxs9oI/gC/9fV8AVCkPjQAAAABJRU5ErkJggg==","valid_to":"2024-06-30T05:00:16.000Z","status":"UNCLAIMED"}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}}],"provider":{"id":"P1","descriptor":{"name":"Unreserved Entry Pass","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"locations":[{"id":"L1","gps":"28.524596, 77.185577","descriptor":{"name":"Qutab Minar","short_desc":"Seth Sarai, Mehrauli, New Delhi, Delhi. The Qutb Minar, also spelled Qutub Minar and Qutab Minar, is a minaret and \"victory tower\" that forms part of the Qutb complex","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"5"}]},"cancellation_terms":[{"cancellation_fee":{"percentage":"10"},"fulfillment_state":{"descriptor":{"code":"CONFIRMED"}},"cancel_by":{"label":"DURATION","duration":"PT1H30M"}},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}},{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":true}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/replacement.html"}}],"quote":{"breakup":[{"title":"BASE_FARE","item":{"id":"I1","price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"350"}},{"title":"BASE_FARE","item":{"id":"I2","price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"150"}},{"title":"TAX","price":{"currency":"INR","value":"0"}},{"title":"ADD_ONS","item":{"id":"I1","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I2","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I5"},"price":{"currency":"INR","value":"100"}},{"title":"REFUND","item":{"id":"I1","price":{"currency":"INR","value":"-350"},"quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","price":{"currency":"INR","value":"-100"}}]},"price":{"currency":"INR","value":"-450"}},{"title":"REFUND","item":{"id":"I2","price":{"currency":"INR","value":"-150"},"quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","price":{"currency":"INR","value":"100"}}]},"price":{"currency":"INR","value":"-250"}},{"title":"REFUND","item":{"id":"I5"},"price":{"currency":"INR","value":"-100"}},{"title":"CANCELLATION_CHARGES","price":{"currency":"INR","value":"100"}}],"price":{"currency":"INR","value":"100"}},"payments":[{"id":"PA1","collected_by":"BAP","status":"PAID","type":"PRE-ORDER","params":{"transaction_id":"61b4be7e-d85c-456a-99e5-ce3d83be135d","amount":"800","currency":"INR"}}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]},{"descriptor":{"code":"BPP_TERMS","name":"BPP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"MANDATORY_ARBITRATION"},"value":"true"},{"descriptor":{"code":"COURT_JURISDICTION"},"value":"New Delhi"},{"descriptor":{"code":"DELAY_INTEREST"},"value":"2.5 %"},{"descriptor":{"code":"SETTLEMENT_AMOUNT"},"value":"7 INR"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_BANK_CODE"},"value":"XXXXXXXX"},{"descriptor":{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER"},"value":"xxxxxxxxxxxxxx"}]}]}}}}}]},{"summary":"Unreserved Entry Pass - User Cancellation Flow","details":[{"description":"Detailed process of cancelling a ticket with soft & confirm status.","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n Seller Platform (BPP)->>Buyer Platform (BAP):on_confirm\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK \n Buyer Platform (BAP)->>Seller Platform (BPP): status\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK \n Seller Platform (BPP)->>Buyer Platform (BAP):on_status\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK\n Buyer Platform (BAP)->>Seller Platform (BPP): cancel - with soft_cancel request\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n Seller Platform (BPP)->>Buyer Platform (BAP):on_cancel\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK\n Buyer Platform (BAP)->>Seller Platform (BPP): cancel - with confirm_cancel request\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n Seller Platform (BPP)->>Buyer Platform (BAP):on_cancel\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK "}],"steps":[{"summary":"Provider confirms the request","api":"on_confirm","details":[{"description":"Provider platform confirms the order and provides details of the journey on confirmation","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n rect rgb(191, 223, 255)\n Seller Platform (BPP)->>Buyer Platform (BAP):on_confirm\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK \n end\n Buyer Platform (BAP)->>Seller Platform (BPP): cancel - with soft_cancel request\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n Seller Platform (BPP)->>Buyer Platform (BAP):on_cancel\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK"}],"reference":"if any","example":{"summary":"Return confirmed ticket order with payment confirmation","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:53:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"6d287e01-59bc-4c6d-b0ab-e07649eae6b2","version":"2.0.0","action":"on_confirm","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"id":"01","status":"ACTIVE","items":[{"id":"I0","descriptor":{"name":"Parent Item for Culture & Heritage","code":"ABSTRACT","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C2"],"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"tags":[{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I1","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I2","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I5","descriptor":{"name":"Add on item","code":"ADD_ON","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","price":{"currency":"INR","value":"100"},"quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","type":"VISIT","state":{"descriptor":{"code":"CONFIRMED"}},"stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"timestamp":"2024-06-28T05:00:16.000Z"},"authorization":{"type":"QR","token":"iVBORw0KGgoAAAANSUhEUgAAAH0AAAB9AQAAAACn+1GIAAAApklEQVR4Xu2UMQ4EMQgD/QP+/0vK6zjsvayUMmavWxQpMAUBkwS12wcveAAkgNSCD3rR5Lkgoai3GUCMgWqbAEYR3HxAkZlzU/0MyBisYRsgI1ERFfcpBpA+ze6k56Cj7KTdXNigFWZvSOpsgqLfd18i2aAukXh9TXBNmdWt5gzA/oqzWkkN8HtA7G8CNOwYAiZt3wZixUfkA32OHNQq7Bxs9oI/gC/9fV8AVCkPjQAAAABJRU5ErkJggg==","valid_to":"2024-06-30T05:00:16.000Z","status":"UNCLAIMED"}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}}],"provider":{"id":"P1","descriptor":{"name":"Unreserved Entry Pass","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"locations":[{"id":"L1","gps":"28.524596, 77.185577","descriptor":{"name":"Qutab Minar","short_desc":"Seth Sarai, Mehrauli, New Delhi, Delhi. The Qutb Minar, also spelled Qutub Minar and Qutab Minar, is a minaret and \"victory tower\" that forms part of the Qutb complex","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"5"}]},"cancellation_terms":[{"cancellation_fee":{"percentage":"10"},"fulfillment_state":{"descriptor":{"code":"CONFIRMED"}},"cancel_by":{"label":"DURATION","duration":"PT1H30M"}},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}},{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":true}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/replacement.html"}}],"billing":{"name":"John Doe","email":"john.doe@example.com","phone":"+91-9897867564"},"quote":{"breakup":[{"title":"BASE_FARE","item":{"id":"I1","price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"350"}},{"title":"BASE_FARE","item":{"id":"I2","price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"150"}},{"title":"TAX","price":{"currency":"INR","value":"0"}},{"title":"ADD_ONS","item":{"id":"I1","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I2","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I5"},"price":{"currency":"INR","value":"100"}}],"price":{"currency":"INR","value":"800"}},"payments":[{"id":"PA1","collected_by":"BAP","status":"PAID","type":"PRE-ORDER","params":{"transaction_id":"61b4be7e-d85c-456a-99e5-ce3d83be135d","amount":"800","currency":"INR"}}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]},{"descriptor":{"code":"BPP_TERMS","name":"BPP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"MANDATORY_ARBITRATION"},"value":"true"},{"descriptor":{"code":"COURT_JURISDICTION"},"value":"New Delhi"},{"descriptor":{"code":"DELAY_INTEREST"},"value":"2.5 %"},{"descriptor":{"code":"SETTLEMENT_AMOUNT"},"value":"7 INR"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_BANK_CODE"},"value":"XXXXXXXX"},{"descriptor":{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER"},"value":"xxxxxxxxxxxxxx"}]}],"created_at":"2024-06-26T04:53:26.000Z","updated_at":"2024-06-26T04:53:26.000Z"}}}}},{"summary":"Buyer app cancels the request for ticket","api":"cancel","details":[{"description":"Buyer app requests for cancellation of ticket.","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n Seller Platform (BPP)->>Buyer Platform (BAP):on_confirm\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK \n rect rgb(191, 223, 255)\n Buyer Platform (BAP)->>Seller Platform (BPP): cancel - with soft_cancel request\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n end\n Seller Platform (BPP)->>Buyer Platform (BAP):on_cancel\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK"}],"reference":"if any","example":{"summary":"Cancel ticket booking","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T05:10:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"83fc2d6c-9d92-4b8a-a0bb-9e410d2b2a1e","version":"2.0.0","action":"cancel","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order_id":"O1","cancellation_reason_id":"0","descriptor":{"name":"Ride Cancellation","code":"SOFT_CANCEL"}}}}},{"summary":"Provider accepts/appends the terms of cancellation","api":"on_cancel","details":[{"description":"Provider accepts the terms of order and appends its own terms and provides with latest order update.","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n Seller Platform (BPP)->>Buyer Platform (BAP):on_confirm\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK\n Buyer Platform (BAP)->>Seller Platform (BPP): cancel - with soft_cancel request\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n rect rgb(191, 223, 255)\n Seller Platform (BPP)->>Buyer Platform (BAP):on_cancel\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK\n end"}],"reference":"if any","example":{"summary":"Cancel ticket booking","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T05:11:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"af0fb8a7-0ca0-4c40-85f5-f95dcff61215","version":"2.0.0","action":"on_cancel","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"id":"01","status":"CANCELLED","items":[{"id":"I0","descriptor":{"name":"Parent Item for Culture & Heritage","code":"ABSTRACT","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C2"],"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"tags":[{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I1","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I2","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I5","descriptor":{"name":"Add on item","code":"ADD_ON","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","price":{"currency":"INR","value":"100"},"quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","type":"VISIT","state":{"descriptor":{"code":"CONFIRMED"}},"stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"timestamp":"2024-06-28T05:00:16.000Z"},"authorization":{"type":"QR","token":"iVBORw0KGgoAAAANSUhEUgAAAH0AAAB9AQAAAACn+1GIAAAApklEQVR4Xu2UMQ4EMQgD/QP+/0vK6zjsvayUMmavWxQpMAUBkwS12wcveAAkgNSCD3rR5Lkgoai3GUCMgWqbAEYR3HxAkZlzU/0MyBisYRsgI1ERFfcpBpA+ze6k56Cj7KTdXNigFWZvSOpsgqLfd18i2aAukXh9TXBNmdWt5gzA/oqzWkkN8HtA7G8CNOwYAiZt3wZixUfkA32OHNQq7Bxs9oI/gC/9fV8AVCkPjQAAAABJRU5ErkJggg==","valid_to":"2024-06-30T05:00:16.000Z","status":"UNCLAIMED"}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}}],"provider":{"id":"P1","descriptor":{"name":"Unreserved Entry Pass","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"locations":[{"id":"L1","gps":"28.524596, 77.185577","descriptor":{"name":"Qutab Minar","short_desc":"Seth Sarai, Mehrauli, New Delhi, Delhi. The Qutb Minar, also spelled Qutub Minar and Qutab Minar, is a minaret and \"victory tower\" that forms part of the Qutb complex","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"5"}]},"cancellation_terms":[{"cancellation_fee":{"percentage":"10"},"fulfillment_state":{"descriptor":{"code":"CONFIRMED"}},"cancel_by":{"label":"DURATION","duration":"PT1H30M"}},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}},{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":true}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/replacement.html"}}],"quote":{"breakup":[{"title":"BASE_FARE","item":{"id":"I1","price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"350"}},{"title":"BASE_FARE","item":{"id":"I2","price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"150"}},{"title":"TAX","price":{"currency":"INR","value":"0"}},{"title":"ADD_ONS","item":{"id":"I1","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I2","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I5"},"price":{"currency":"INR","value":"100"}},{"title":"REFUND","item":{"id":"I1","price":{"currency":"INR","value":"-350"},"quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","price":{"currency":"INR","value":"-100"}}]},"price":{"currency":"INR","value":"-450"}},{"title":"REFUND","item":{"id":"I2","price":{"currency":"INR","value":"-150"},"quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","price":{"currency":"INR","value":"100"}}]},"price":{"currency":"INR","value":"-250"}},{"title":"REFUND","item":{"id":"I5"},"price":{"currency":"INR","value":"-100"}},{"title":"CANCELLATION_CHARGES","price":{"currency":"INR","value":"100"}}],"price":{"currency":"INR","value":"100"}},"payments":[{"id":"PA1","collected_by":"BAP","status":"PAID","type":"PRE-ORDER","params":{"transaction_id":"61b4be7e-d85c-456a-99e5-ce3d83be135d","amount":"800","currency":"INR"}}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]},{"descriptor":{"code":"BPP_TERMS","name":"BPP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"MANDATORY_ARBITRATION"},"value":"true"},{"descriptor":{"code":"COURT_JURISDICTION"},"value":"New Delhi"},{"descriptor":{"code":"DELAY_INTEREST"},"value":"2.5 %"},{"descriptor":{"code":"SETTLEMENT_AMOUNT"},"value":"7 INR"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_BANK_CODE"},"value":"XXXXXXXX"},{"descriptor":{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER"},"value":"xxxxxxxxxxxxxx"}]}]}}}}},{"summary":"Buyer app confirms the cancel request for ticket","api":"cancel","details":[{"description":"Buyer app give the confirmation to cancel the ticket.","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n rect rgb(191, 223, 255)\n Buyer Platform (BAP)->>Seller Platform (BPP): cancel - with confirm_cancel request\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n end\n Seller Platform (BPP)->>Buyer Platform (BAP):on_cancel\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK"}],"reference":"if any","example":{"summary":"Cancel ticket booking","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T05:12:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"af0fb8a7-0ca0-4c40-85f5-f95dcff61215","version":"2.0.0","action":"cancel","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order_id":"O1","cancellation_reason_id":"0","descriptor":{"name":"Ride Cancellation","code":"CONFIRM_CANCEL"}}}}},{"summary":"Provider accepts the terms of cancellation","api":"on_cancel","details":[{"description":"Provider accepts the terms of order and provides with latest order update.","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n Buyer Platform (BAP)->>Seller Platform (BPP): cancel - with confirm_cancel request\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n rect rgb(191, 223, 255)\n Seller Platform (BPP)->>Buyer Platform (BAP):on_cancel\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK\n end "}],"reference":"if any","example":{"summary":"Cancel ticket booking","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T05:11:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"af0fb8a7-0ca0-4c40-85f5-f95dcff61215","version":"2.0.0","action":"on_cancel","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"id":"01","status":"CANCELLED","items":[{"id":"I0","descriptor":{"name":"Parent Item for Culture & Heritage","code":"ABSTRACT","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C2"],"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"tags":[{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I1","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I2","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I5","descriptor":{"name":"Add on item","code":"ADD_ON","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","price":{"currency":"INR","value":"100"},"quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","type":"VISIT","state":{"descriptor":{"code":"CONFIRMED"}},"stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"timestamp":"2024-06-28T05:00:16.000Z"},"authorization":{"type":"QR","token":"iVBORw0KGgoAAAANSUhEUgAAAH0AAAB9AQAAAACn+1GIAAAApklEQVR4Xu2UMQ4EMQgD/QP+/0vK6zjsvayUMmavWxQpMAUBkwS12wcveAAkgNSCD3rR5Lkgoai3GUCMgWqbAEYR3HxAkZlzU/0MyBisYRsgI1ERFfcpBpA+ze6k56Cj7KTdXNigFWZvSOpsgqLfd18i2aAukXh9TXBNmdWt5gzA/oqzWkkN8HtA7G8CNOwYAiZt3wZixUfkA32OHNQq7Bxs9oI/gC/9fV8AVCkPjQAAAABJRU5ErkJggg==","valid_to":"2024-06-30T05:00:16.000Z","status":"UNCLAIMED"}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}}],"provider":{"id":"P1","descriptor":{"name":"Unreserved Entry Pass","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"locations":[{"id":"L1","gps":"28.524596, 77.185577","descriptor":{"name":"Qutab Minar","short_desc":"Seth Sarai, Mehrauli, New Delhi, Delhi. The Qutb Minar, also spelled Qutub Minar and Qutab Minar, is a minaret and \"victory tower\" that forms part of the Qutb complex","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"5"}]},"cancellation_terms":[{"cancellation_fee":{"percentage":"10"},"fulfillment_state":{"descriptor":{"code":"CONFIRMED"}},"cancel_by":{"label":"DURATION","duration":"PT1H30M"}},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}},{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":true}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/replacement.html"}}],"quote":{"breakup":[{"title":"BASE_FARE","item":{"id":"I1","price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"350"}},{"title":"BASE_FARE","item":{"id":"I2","price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"150"}},{"title":"TAX","price":{"currency":"INR","value":"0"}},{"title":"ADD_ONS","item":{"id":"I1","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I2","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I5"},"price":{"currency":"INR","value":"100"}},{"title":"REFUND","item":{"id":"I1","price":{"currency":"INR","value":"-350"},"quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","price":{"currency":"INR","value":"-100"}}]},"price":{"currency":"INR","value":"-450"}},{"title":"REFUND","item":{"id":"I2","price":{"currency":"INR","value":"-150"},"quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","price":{"currency":"INR","value":"100"}}]},"price":{"currency":"INR","value":"-250"}},{"title":"REFUND","item":{"id":"I5"},"price":{"currency":"INR","value":"-100"}},{"title":"CANCELLATION_CHARGES","price":{"currency":"INR","value":"100"}}],"price":{"currency":"INR","value":"100"}},"payments":[{"id":"PA1","collected_by":"BAP","status":"PAID","type":"PRE-ORDER","params":{"transaction_id":"61b4be7e-d85c-456a-99e5-ce3d83be135d","amount":"800","currency":"INR"}}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]},{"descriptor":{"code":"BPP_TERMS","name":"BPP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"MANDATORY_ARBITRATION"},"value":"true"},{"descriptor":{"code":"COURT_JURISDICTION"},"value":"New Delhi"},{"descriptor":{"code":"DELAY_INTEREST"},"value":"2.5 %"},{"descriptor":{"code":"SETTLEMENT_AMOUNT"},"value":"7 INR"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_BANK_CODE"},"value":"XXXXXXXX"},{"descriptor":{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER"},"value":"xxxxxxxxxxxxxx"}]}]}}}}}]},{"summary":"Unreserved Entry Pass - Partial Cancellation Flow","details":[{"description":"Detailed process of cancelling a ticket with soft & confirm status.","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n Buyer Platform (BAP)->>Seller Platform (BPP): update - with soft_cancel request\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK \n Seller Platform (BPP)->>Buyer Platform (BAP):on_update\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK\n Buyer Platform (BAP)->>Seller Platform (BPP): update - with confirm_cancel request\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n Seller Platform (BPP)->>Buyer Platform (BAP):on_update \n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK "}],"steps":[{"summary":"Buyer app sends the request for partial cancel","api":"update","details":[{"description":"Buyer app sends the request for partial cancel with soft cancel request","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n rect rgb(191, 223, 255)\n Buyer Platform (BAP)->>Seller Platform (BPP): update - with soft_cancel request\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK \n end\n Seller Platform (BPP)->>Buyer Platform (BAP):on_update\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK"}],"reference":"if any","example":{"summary":"Return confirmed ticket order with payment confirmation","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:53:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"5805a26e-f0b0-423d-8913-acb5a7744acf","version":"2.0.0","action":"update","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"update_target":"order.items[1]","order":{"cancellation":{"reason":{"id":"0","descriptor":{"code":"SOFT_CANCEL"}}},"items":[{"id":"I2","quantity":{"selected":{"count":0}}}]}}}}},{"summary":"Provider app return the updated order with soft_cancel status","api":"on_update","details":[{"description":"Provider app return the updated order with soft_cancel status.","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n Buyer Platform (BAP)->>Seller Platform (BPP): update - with soft_cancel request\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK \n rect rgb(191, 223, 255)\n Seller Platform (BPP)->>Buyer Platform (BAP):on_update\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK\n end"}],"reference":"if any","example":{"summary":"Cancel ticket booking","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:53:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"5805a26e-f0b0-423d-8913-acb5a7744acf","version":"2.0.0","action":"on_update","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"id":"01","status":"SOFT_CANCEL","items":[{"id":"I0","descriptor":{"name":"Parent Item for Culture & Heritage","code":"ABSTRACT","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C2"],"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"tags":[{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I1","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I2","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":0}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I5","descriptor":{"name":"Add on item","code":"ADD_ON","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","price":{"currency":"INR","value":"100"},"quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","type":"VISIT","state":{"descriptor":{"code":"CONFIRMED"}},"stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"timestamp":"2024-06-28T05:00:16.000Z"},"authorization":{"type":"QR","token":"iVBORw0KGgoAAAANSUhEUgAAAH0AAAB9AQAAAACn+1GIAAAApklEQVR4Xu2UMQ4EMQgD/QP+/0vK6zjsvayUMmavWxQpMAUBkwS12wcveAAkgNSCD3rR5Lkgoai3GUCMgWqbAEYR3HxAkZlzU/0MyBisYRsgI1ERFfcpBpA+ze6k56Cj7KTdXNigFWZvSOpsgqLfd18i2aAukXh9TXBNmdWt5gzA/oqzWkkN8HtA7G8CNOwYAiZt3wZixUfkA32OHNQq7Bxs9oI/gC/9fV8AVCkPjQAAAABJRU5ErkJggg==","valid_to":"2024-06-30T05:00:16.000Z","status":"UNCLAIMED"}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}}],"provider":{"id":"P1","descriptor":{"name":"Unreserved Entry Pass","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"locations":[{"id":"L1","gps":"28.524596, 77.185577","descriptor":{"name":"Qutab Minar","short_desc":"Seth Sarai, Mehrauli, New Delhi, Delhi. The Qutb Minar, also spelled Qutub Minar and Qutab Minar, is a minaret and \"victory tower\" that forms part of the Qutb complex","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"5"}]},"cancellation_terms":[{"cancellation_fee":{"percentage":"10"},"fulfillment_state":{"descriptor":{"code":"CONFIRMED"}},"cancel_by":{"label":"DURATION","duration":"PT1H30M"}},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}},{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":true}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/replacement.html"}}],"billing":{"name":"John Doe","email":"john.doe@example.com","phone":"+91-9897867564"},"quote":{"breakup":[{"title":"BASE_FARE","item":{"id":"I1","price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"350"}},{"title":"BASE_FARE","item":{"id":"I2","price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"150"}},{"title":"TAX","price":{"currency":"INR","value":"0"}},{"title":"ADD_ONS","item":{"id":"I1","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I2","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I5"},"price":{"currency":"INR","value":"100"}},{"title":"REFUND","item":{"id":"I2","price":{"currency":"INR","value":"-150"},"quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","price":{"currency":"INR","value":"100"}}]},"price":{"currency":"INR","value":"-250"}},{"title":"CANCELLATION_CHARGES","price":{"currency":"INR","value":"0"}}],"price":{"currency":"INR","value":"550"}},"payments":[{"id":"PA1","collected_by":"BAP","status":"PAID","type":"PRE-ORDER","params":{"transaction_id":"61b4be7e-d85c-456a-99e5-ce3d83be135d","amount":"800","currency":"INR"}}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]},{"descriptor":{"code":"BPP_TERMS","name":"BPP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"MANDATORY_ARBITRATION"},"value":"true"},{"descriptor":{"code":"COURT_JURISDICTION"},"value":"New Delhi"},{"descriptor":{"code":"DELAY_INTEREST"},"value":"2.5 %"},{"descriptor":{"code":"SETTLEMENT_AMOUNT"},"value":"7 INR"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_BANK_CODE"},"value":"XXXXXXXX"},{"descriptor":{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER"},"value":"xxxxxxxxxxxxxx"}]}],"created_at":"2024-06-26T04:53:26.000Z","updated_at":"2024-06-26T04:53:26.000Z"}}}}},{"summary":"Buyer app sends the request for partial cancel","api":"update","details":[{"description":"Buyer app sends the request for partial cancel with confirm cancel request","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n rect rgb(191, 223, 255)\n Buyer Platform (BAP)->>Seller Platform (BPP): update - with soft_cancel request\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK \n end\n Seller Platform (BPP)->>Buyer Platform (BAP):on_update\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK"}],"reference":"if any","example":{"summary":"Return confirmed ticket order with payment confirmation","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:53:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"29e8528f-e679-4264-995b-0f6b9a4ffc0d","version":"2.0.0","action":"update","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"update_target":"order.items[1]","order":{"cancellation":{"reason":{"id":"0","descriptor":{"code":"CONFIRM_CANCEL"}}},"items":[{"id":"I2","quantity":{"selected":{"count":0}}}]}}}}},{"summary":"Provider app return the updated order with soft_cancel status","api":"on_update","details":[{"description":"Provider app return the order with updated status.","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n Buyer Platform (BAP)->>Seller Platform (BPP): update - with soft_cancel request\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK \n rect rgb(191, 223, 255)\n Seller Platform (BPP)->>Buyer Platform (BAP):on_update\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK\n end"}],"reference":"if any","example":{"summary":"Cancel ticket booking","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:53:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"29e8528f-e679-4264-995b-0f6b9a4ffc0d","version":"2.0.0","action":"on_update","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"id":"01","status":"ACTIVE","items":[{"id":"I0","descriptor":{"name":"Parent Item for Culture & Heritage","code":"ABSTRACT","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C2"],"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"tags":[{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I1","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I2","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":0}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I5","descriptor":{"name":"Add on item","code":"ADD_ON","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","price":{"currency":"INR","value":"100"},"quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","type":"VISIT","state":{"descriptor":{"code":"CONFIRMED"}},"stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"timestamp":"2024-06-28T05:00:16.000Z"},"authorization":{"type":"QR","token":"iVBORw0KGgoAAAANSUhEUgAAAH0AAAB9AQAAAACn+1GIAAAApklEQVR4Xu2UMQ4EMQgD/QP+/0vK6zjsvayUMmavWxQpMAUBkwS12wcveAAkgNSCD3rR5Lkgoai3GUCMgWqbAEYR3HxAkZlzU/0MyBisYRsgI1ERFfcpBpA+ze6k56Cj7KTdXNigFWZvSOpsgqLfd18i2aAukXh9TXBNmdWt5gzA/oqzWkkN8HtA7G8CNOwYAiZt3wZixUfkA32OHNQq7Bxs9oI/gC/9fV8AVCkPjQAAAABJRU5ErkJggg==","valid_to":"2024-06-30T05:00:16.000Z","status":"UNCLAIMED"}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}}],"provider":{"id":"P1","descriptor":{"name":"Unreserved Entry Pass","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"locations":[{"id":"L1","gps":"28.524596, 77.185577","descriptor":{"name":"Qutab Minar","short_desc":"Seth Sarai, Mehrauli, New Delhi, Delhi. The Qutb Minar, also spelled Qutub Minar and Qutab Minar, is a minaret and \"victory tower\" that forms part of the Qutb complex","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"5"}]},"cancellation_terms":[{"cancellation_fee":{"percentage":"10"},"fulfillment_state":{"descriptor":{"code":"CONFIRMED"}},"cancel_by":{"label":"DURATION","duration":"PT1H30M"}},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}},{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":true}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/replacement.html"}}],"billing":{"name":"John Doe","email":"john.doe@example.com","phone":"+91-9897867564"},"quote":{"breakup":[{"title":"BASE_FARE","item":{"id":"I1","price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"350"}},{"title":"BASE_FARE","item":{"id":"I2","price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"150"}},{"title":"TAX","price":{"currency":"INR","value":"0"}},{"title":"ADD_ONS","item":{"id":"I1","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I2","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I5"},"price":{"currency":"INR","value":"100"}},{"title":"REFUND","item":{"id":"I2","price":{"currency":"INR","value":"-150"},"quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","price":{"currency":"INR","value":"100"}}]},"price":{"currency":"INR","value":"-250"}},{"title":"CANCELLATION_CHARGES","price":{"currency":"INR","value":"0"}}],"price":{"currency":"INR","value":"550"}},"payments":[{"id":"PA1","collected_by":"BAP","status":"PAID","type":"PRE-ORDER","params":{"transaction_id":"61b4be7e-d85c-456a-99e5-ce3d83be135d","amount":"800","currency":"INR"}}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]},{"descriptor":{"code":"BPP_TERMS","name":"BPP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"MANDATORY_ARBITRATION"},"value":"true"},{"descriptor":{"code":"COURT_JURISDICTION"},"value":"New Delhi"},{"descriptor":{"code":"DELAY_INTEREST"},"value":"2.5 %"},{"descriptor":{"code":"SETTLEMENT_AMOUNT"},"value":"7 INR"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_BANK_CODE"},"value":"XXXXXXXX"},{"descriptor":{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER"},"value":"xxxxxxxxxxxxxx"}]}],"created_at":"2024-06-26T04:53:26.000Z","updated_at":"2024-06-26T04:53:26.000Z"}}}}}]}],"x-examples":{"unreserved-entry-pass":{"summary":"Unreserved Entry Pass Use Case Specification","description":"Unreserved Entry Pass use case on the network would enable NPs to create an ecosystem where entry tickets/ passes can be bought and sold over the network.","example_set":{"search":{"examples":[{"summary":"Search_for_unreserved_entry_pass","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:41:16.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"3cc45230-9250-4ef5-9100-6f5ba980d7d2","version":"2.0.0","action":"search","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S"},"message":{"intent":{"category":{"descriptor":{"code":"CULTURE_HERITAGE"}},"fulfillment":{"stops":[{"type":"START","location":{"gps":"28.666576, 77.233332","circle":{"radius":{"value":"10.12"}}},"time":{"timestamp":"2024-06-27T04:41:16.000Z"}}],"vehicle":{"category":"SITE"}},"payment":{"collected_by":"BAP"},"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]}]}}}},{"summary":"Search_for_unreserved_entry_pass_2","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:41:16.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"5fd86e70-3465-4759-ac6c-910ab16e2db9","version":"2.0.0","action":"search","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S"},"message":{"intent":{"category":{"descriptor":{"code":"CULTURE_HERITAGE"}},"fulfillment":{"stops":[{"type":"START","location":{"city":{"code":"std:040"}},"time":{"timestamp":"2024-06-27T04:41:16.000Z"}}],"vehicle":{"category":"SITE"}},"payment":{"collected_by":"BAP"},"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]}]}}}},{"summary":"Search_for_unreserved_entry_pass_without_timestamp(FOOD_DINING)","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:41:16.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"5fd86e70-3465-4759-ac6c-910ab16e2db9","version":"2.0.0","action":"search","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S"},"message":{"intent":{"category":{"descriptor":{"code":"FOOD_DINING"}},"fulfillment":{"stops":[{"type":"START","location":{"city":{"code":"std:011"}}}],"vehicle":{"category":"SITE"}},"payment":{"collected_by":"BAP"},"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]}]}}}}]},"select":{"examples":[{"summary":"Select_a_an_item_for_unreserved-entry-pass","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:50:16.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"7b355323-11aa-4be9-9648-9628618b1157","version":"2.0.0","action":"select","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"items":[{"id":"I1","parent_item_id":"I0","quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","quantity":{"selected":{"count":1}}}]},{"id":"I2","parent_item_id":"I0","quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","quantity":{"selected":{"count":1}}}]},{"id":"I5","parent_item_id":"I0","quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","stops":[{"type":"START","time":{"timestamp":"2024-06-28T05:00:16.000Z"}}]}],"provider":{"id":"P1"}}}}}]},"init":{"examples":[{"summary":"Initialize_the_order_by_providing_billing_details","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:52:16.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"764b4322-8f7c-402c-b907-80484e9ad40c","version":"2.0.0","action":"init","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"items":[{"id":"I1","parent_item_id":"I0","quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","quantity":{"selected":{"count":1}}}]},{"id":"I2","parent_item_id":"I0","quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","quantity":{"selected":{"count":1}}}]},{"id":"I5","parent_item_id":"I0","quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","stops":[{"type":"START","time":{"timestamp":"2024-06-28T05:00:16.000Z"}}]}],"billing":{"name":"John Doe","email":"john.doe@example.com","phone":"+91-9897867564"},"provider":{"id":"P1"},"payments":[{"collected_by":"BAP","status":"NOT-PAID","type":"PRE-ORDER"}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]}]}}}}]},"confirm":{"examples":[{"summary":"Confirm_ticket_booking","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:53:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"6d287e01-59bc-4c6d-b0ab-e07649eae6b2","version":"2.0.0","action":"confirm","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"items":[{"id":"I1","parent_item_id":"I0","quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","quantity":{"selected":{"count":1}}}]},{"id":"I2","parent_item_id":"I0","quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","quantity":{"selected":{"count":1}}}]},{"id":"I5","parent_item_id":"I0","quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","stops":[{"type":"START","time":{"timestamp":"2024-06-28T05:00:16.000Z"}}]}],"billing":{"name":"John Doe","email":"john.doe@example.com","phone":"+91-9897867564"},"provider":{"id":"P1"},"payments":[{"collected_by":"BAP","status":"NOT-PAID","type":"PRE-ORDER","params":{"transaction_id":"61b4be7e-d85c-456a-99e5-ce3d83be135d","currency":"INR","amount":"800"}}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]},{"descriptor":{"code":"BPP_TERMS","name":"BPP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"MANDATORY_ARBITRATION"},"value":"true"},{"descriptor":{"code":"COURT_JURISDICTION"},"value":"New Delhi"},{"descriptor":{"code":"DELAY_INTEREST"},"value":"2.5 %"},{"descriptor":{"code":"SETTLEMENT_AMOUNT"},"value":"7 INR"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_BANK_CODE"},"value":"XXXXXXXX"},{"descriptor":{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER"},"value":"xxxxxxxxxxxxxx"}]}]}}}}]},"cancel":{"examples":[{"summary":"Cancel_ticket_booking","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T05:10:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"83fc2d6c-9d92-4b8a-a0bb-9e410d2b2a1e","version":"2.0.0","action":"cancel","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order_id":"O1","cancellation_reason_id":"0","descriptor":{"name":"Ride Cancellation","code":"SOFT_CANCEL"}}}},{"summary":"Cancel_ticket_booking_2","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T05:12:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"af0fb8a7-0ca0-4c40-85f5-f95dcff61215","version":"2.0.0","action":"cancel","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order_id":"O1","cancellation_reason_id":"0","descriptor":{"name":"Ride Cancellation","code":"CONFIRM_CANCEL"}}}}]},"status":{"examples":[{"summary":"Fetch_the_latest_status_of_order","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:55:16.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"213a32eb-b7a4-4877-9f53-bad6a629b167","version":"2.0.0","action":"status","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order_id":"01"}}}]},"on_search":{"examples":[{"summary":"Return_a_catalog_for_unreserved_entry_pass","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:43:16.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"84e573df-0f06-449b-9f02-7bf1f1694d83","version":"2.0.0","action":"on_search","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"catalog":{"descriptor":{"name":"India tourism","long_desc":"Online ticket booking service","images":[{"url":"https://api.unreserved-entry-pass.com/logos/logo.ico","size_type":"xs"}]},"providers":[{"id":"P1","descriptor":{"name":"India tourism","short_desc":"Online Ticket Booking Service","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"categories":[{"descriptor":{"name":"Culture & Heritage","code":"CULTURE_HERITAGE"},"id":"C1"},{"descriptor":{"name":"Standard"},"parent_category_id":"C1","id":"C2"},{"descriptor":{"name":"Premium"},"parent_category_id":"C1","id":"C3"}],"time":{"range":{"start":"2024-06-14T05:30:00.000Z","end":"2024-06-14T23:30:00.000Z"}},"locations":[{"id":"L1","gps":"28.524596, 77.185577","descriptor":{"name":"Qutab Minar","short_desc":"Seth Sarai, Mehrauli, New Delhi, Delhi. The Qutb Minar, also spelled Qutub Minar and Qutab Minar, is a minaret and \"victory tower\" that forms part of the Qutb complex","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"5"},{"id":"L2","gps":"28.5244946, 77.1855177","descriptor":{"name":"Red Fort","short_desc":"Red Fort, Mughal fort in Old Delhi, India. It was built by Shah Jahān in the mid-17th century and remains a major tourist attraction.","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"4"}],"items":[{"id":"I0","descriptor":{"name":"Parent Item for Culture & Heritage","code":"ABSTRACT","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C2"],"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"cancellation_terms":[{"cancellation_fee":{"percentage":"10"},"fulfillment_state":{"descriptor":{"code":"CONFIRMED"}},"cancel_by":{"label":"DURATION","duration":"PT1H30M"}},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}},{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":true}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass/beckn/replacement.html"}}],"tags":[{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I1","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1","C2"],"price":{"currency":"INR","value":"350"},"quantity":{"maximum":{"count":6},"minimum":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"available":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"18"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I2","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1","C2"],"price":{"currency":"INR","value":"150"},"quantity":{"maximum":{"count":4},"minimum":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"available":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I3","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C3"],"price":{"currency":"INR","value":"400"},"quantity":{"maximum":{"count":6},"minimum":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"available":{"count":1}},"price":{"value":"100","currency":"INR"}}],"cancellation_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":false},{"cancellation_fee":{"percentage":"10"},"cancel_by":{"label":"TIMESTAMP","timestamp":"2024-07-26T04:43:16.000Z"},"cancellation_eligible":false}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass/beckn/replacement.html"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"18"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]},{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"},{"value":"guide_tour"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I4","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C3"],"price":{"currency":"INR","value":"250"},"quantity":{"maximum":{"count":4},"minimum":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"available":{"count":1}},"price":{"value":"100","currency":"INR"}}],"cancellation_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":false},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass/beckn/replacement.html"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]},{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"},{"value":"guide_tour"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I5","descriptor":{"name":"Add on item","code":"ADD_ON","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"price":{"currency":"INR","value":"100"},"quantity":{"maximum":{"count":3},"minimum":{"count":1}}}],"fulfillments":[{"id":"F1","type":"VISIT","stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"timestamp":"2024-06-28T05:00:16.000Z"}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}},{"id":"F2","type":"VISIT","stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"range":{"start":"2024-06-14T05:30:00.000Z","end":"2024-06-14T05:45:00.000Z"}}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}}],"payments":[{"collected_by":"BAP"}]}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]},{"descriptor":{"code":"BPP_TERMS","name":"BPP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"MANDATORY_ARBITRATION"},"value":"true"},{"descriptor":{"code":"COURT_JURISDICTION"},"value":"New Delhi"},{"descriptor":{"code":"DELAY_INTEREST"},"value":"2.5 %"}]},{"descriptor":{"code":"PAGINATION","name":"Pagination"},"display":true,"list":[{"descriptor":{"code":"PAGINATION_ID"},"value":"P1"},{"descriptor":{"code":"CURRENT_PAGE_NUMBER"},"value":"1"},{"descriptor":{"code":"MAX_PAGE_NUMBER"},"value":"2"}]}]}}}}]},"on_select":{"examples":[{"summary":"Return_a_selected_item_for_unreserved-entry-pass","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:51:16.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"7b355323-11aa-4be9-9648-9628618b1157","version":"2.0.0","action":"on_select","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"items":[{"id":"I0","descriptor":{"name":"Parent Item for Culture & Heritage","code":"ABSTRACT","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C2"],"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"tags":[{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I1","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]},{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"},{"value":"guide_tour"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}],"xinput":{"head":{"descriptor":{"name":"Additional Details"},"index":{"min":0,"cur":0,"max":0},"headings":["ADDITIONAL_DETAILS"]},"form":{"id":"F01","mime_type":"text/html","url":"https://api.unreserved-entry-pass.com/xinput/additonal-details/F01","resubmit":false,"multiple_sumbissions":false},"required":true}},{"id":"I2","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"xinput":{"head":{"descriptor":{"name":"Additional Details"},"index":{"min":0,"cur":0,"max":0},"headings":["ADDITIONAL_DETAILS"]},"form":{"id":"F01","mime_type":"text/html","url":"https://api.unreserved-entry-pass.com/xinput/additonal-details/F01","resubmit":false,"multiple_sumbissions":false},"required":true},"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]},{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"},{"value":"guide_tour"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I5","descriptor":{"name":"Add on item","code":"ADD_ON","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","price":{"currency":"INR","value":"100"},"quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","type":"VISIT","stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"timestamp":"2024-06-28T05:00:16.000Z"}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}}],"provider":{"id":"P1","descriptor":{"name":"Unreserved Entry Pass","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"locations":[{"id":"L1","gps":"28.524596, 77.185577","descriptor":{"name":"Qutab Minar","short_desc":"Seth Sarai, Mehrauli, New Delhi, Delhi. The Qutb Minar, also spelled Qutub Minar and Qutab Minar, is a minaret and \"victory tower\" that forms part of the Qutb complex","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"5"}]},"cancellation_terms":[{"cancellation_fee":{"percentage":"10"},"fulfillment_state":{"descriptor":{"code":"CONFIRMED"}},"cancel_by":{"label":"DURATION","duration":"PT1H30M"}},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}},{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":true}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/replacement.html"}}],"quote":{"breakup":[{"title":"BASE_FARE","item":{"id":"I1","price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"350"}},{"title":"BASE_FARE","item":{"id":"I2","price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"150"}},{"title":"TAX","price":{"currency":"INR","value":"0"}},{"title":"ADD_ONS","item":{"id":"I1","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I2","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I5"},"price":{"currency":"INR","value":"100"}}],"price":{"currency":"INR","value":"800"}}}}}}]},"on_init":{"examples":[{"summary":"Return_draft_order_for_transit_ticket_with_settlement_details","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:52:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"036eedaf-7af0-42b5-8764-5b00b5b55a5d","version":"2.0.0","action":"on_init","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"items":[{"id":"I0","descriptor":{"name":"Parent Item for Culture & Heritage","code":"ABSTRACT","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C2"],"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"tags":[{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I1","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I2","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I5","descriptor":{"name":"Add on item","code":"ADD_ON","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","price":{"currency":"INR","value":"100"},"quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","type":"VISIT","stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"timestamp":"2024-06-28T05:00:16.000Z"}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}}],"provider":{"id":"P1","descriptor":{"name":"Unreserved Entry Pass","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"locations":[{"id":"L1","gps":"28.524596, 77.185577","descriptor":{"name":"Qutab Minar","short_desc":"Seth Sarai, Mehrauli, New Delhi, Delhi. The Qutb Minar, also spelled Qutub Minar and Qutab Minar, is a minaret and \"victory tower\" that forms part of the Qutb complex","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"5"}]},"cancellation_terms":[{"cancellation_fee":{"percentage":"10"},"fulfillment_state":{"descriptor":{"code":"CONFIRMED"}},"cancel_by":{"label":"DURATION","duration":"PT1H30M"}},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}},{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":true}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/replacement.html"}}],"quote":{"breakup":[{"title":"BASE_FARE","item":{"id":"I1","price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"350"}},{"title":"BASE_FARE","item":{"id":"I2","price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"150"}},{"title":"TAX","price":{"currency":"INR","value":"0"}},{"title":"ADD_ONS","item":{"id":"I1","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I2","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I5"},"price":{"currency":"INR","value":"100"}}],"price":{"currency":"INR","value":"800"}},"billing":{"name":"John Doe","email":"john.doe@example.com","phone":"+91-9897867564"},"payments":[{"id":"PA1","collected_by":"BAP","status":"NOT-PAID","type":"PRE-ORDER"}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]},{"descriptor":{"code":"BPP_TERMS","name":"BPP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"MANDATORY_ARBITRATION"},"value":"true"},{"descriptor":{"code":"COURT_JURISDICTION"},"value":"New Delhi"},{"descriptor":{"code":"DELAY_INTEREST"},"value":"2.5 %"},{"descriptor":{"code":"SETTLEMENT_AMOUNT"},"value":"7 INR"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_BANK_CODE"},"value":"XXXXXXXX"},{"descriptor":{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER"},"value":"xxxxxxxxxxxxxx"}]}]}}}}]},"on_confirm":{"examples":[{"summary":"Return_confirmed_ticket_order_with_payment_confirmation","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:53:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"6d287e01-59bc-4c6d-b0ab-e07649eae6b2","version":"2.0.0","action":"on_confirm","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"id":"01","status":"ACTIVE","items":[{"id":"I0","descriptor":{"name":"Parent Item for Culture & Heritage","code":"ABSTRACT","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C2"],"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"tags":[{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I1","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I2","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I5","descriptor":{"name":"Add on item","code":"ADD_ON","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","price":{"currency":"INR","value":"100"},"quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","type":"VISIT","state":{"descriptor":{"code":"CONFIRMED"}},"stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"timestamp":"2024-06-28T05:00:16.000Z"},"authorization":{"type":"QR","token":"iVBORw0KGgoAAAANSUhEUgAAAH0AAAB9AQAAAACn+1GIAAAApklEQVR4Xu2UMQ4EMQgD/QP+/0vK6zjsvayUMmavWxQpMAUBkwS12wcveAAkgNSCD3rR5Lkgoai3GUCMgWqbAEYR3HxAkZlzU/0MyBisYRsgI1ERFfcpBpA+ze6k56Cj7KTdXNigFWZvSOpsgqLfd18i2aAukXh9TXBNmdWt5gzA/oqzWkkN8HtA7G8CNOwYAiZt3wZixUfkA32OHNQq7Bxs9oI/gC/9fV8AVCkPjQAAAABJRU5ErkJggg==","valid_to":"2024-06-30T05:00:16.000Z","status":"UNCLAIMED"}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}}],"provider":{"id":"P1","descriptor":{"name":"Unreserved Entry Pass","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"locations":[{"id":"L1","gps":"28.524596, 77.185577","descriptor":{"name":"Qutab Minar","short_desc":"Seth Sarai, Mehrauli, New Delhi, Delhi. The Qutb Minar, also spelled Qutub Minar and Qutab Minar, is a minaret and \"victory tower\" that forms part of the Qutb complex","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"5"}]},"cancellation_terms":[{"cancellation_fee":{"percentage":"10"},"fulfillment_state":{"descriptor":{"code":"CONFIRMED"}},"cancel_by":{"label":"DURATION","duration":"PT1H30M"}},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}},{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":true}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/replacement.html"}}],"billing":{"name":"John Doe","email":"john.doe@example.com","phone":"+91-9897867564"},"quote":{"breakup":[{"title":"BASE_FARE","item":{"id":"I1","price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"350"}},{"title":"BASE_FARE","item":{"id":"I2","price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"150"}},{"title":"TAX","price":{"currency":"INR","value":"0"}},{"title":"ADD_ONS","item":{"id":"I1","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I2","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I5"},"price":{"currency":"INR","value":"100"}}],"price":{"currency":"INR","value":"800"}},"payments":[{"id":"PA1","collected_by":"BAP","status":"PAID","type":"PRE-ORDER","params":{"transaction_id":"61b4be7e-d85c-456a-99e5-ce3d83be135d","amount":"800","currency":"INR"}}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]},{"descriptor":{"code":"BPP_TERMS","name":"BPP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"MANDATORY_ARBITRATION"},"value":"true"},{"descriptor":{"code":"COURT_JURISDICTION"},"value":"New Delhi"},{"descriptor":{"code":"DELAY_INTEREST"},"value":"2.5 %"},{"descriptor":{"code":"SETTLEMENT_AMOUNT"},"value":"7 INR"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_BANK_CODE"},"value":"XXXXXXXX"},{"descriptor":{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER"},"value":"xxxxxxxxxxxxxx"}]}],"created_at":"2024-06-26T04:53:26.000Z","updated_at":"2024-06-26T04:53:26.000Z"}}}}]},"on_cancel":{"examples":[{"summary":"Cancel_ticket_booking_1","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T05:11:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"83fc2d6c-9d92-4b8a-a0bb-9e410d2b2a1e","version":"2.0.0","action":"on_cancel","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"id":"01","status":"SOFT_CANCEL","items":[{"id":"I0","descriptor":{"name":"Parent Item for Culture & Heritage","code":"ABSTRACT","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C2"],"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"tags":[{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I1","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I2","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I5","descriptor":{"name":"Add on item","code":"ADD_ON","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","price":{"currency":"INR","value":"100"},"quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","type":"VISIT","state":{"descriptor":{"code":"CONFIRMED"}},"stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"timestamp":"2024-06-28T05:00:16.000Z"},"authorization":{"type":"QR","token":"iVBORw0KGgoAAAANSUhEUgAAAH0AAAB9AQAAAACn+1GIAAAApklEQVR4Xu2UMQ4EMQgD/QP+/0vK6zjsvayUMmavWxQpMAUBkwS12wcveAAkgNSCD3rR5Lkgoai3GUCMgWqbAEYR3HxAkZlzU/0MyBisYRsgI1ERFfcpBpA+ze6k56Cj7KTdXNigFWZvSOpsgqLfd18i2aAukXh9TXBNmdWt5gzA/oqzWkkN8HtA7G8CNOwYAiZt3wZixUfkA32OHNQq7Bxs9oI/gC/9fV8AVCkPjQAAAABJRU5ErkJggg==","valid_to":"2024-06-30T05:00:16.000Z","status":"UNCLAIMED"}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}}],"provider":{"id":"P1","descriptor":{"name":"Event ticketing","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"locations":[{"id":"L1","gps":"28.524596, 77.185577","descriptor":{"name":"Qutab Minar","short_desc":"Seth Sarai, Mehrauli, New Delhi, Delhi. The Qutb Minar, also spelled Qutub Minar and Qutab Minar, is a minaret and \"victory tower\" that forms part of the Qutb complex","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"5"}]},"cancellation_terms":[{"cancellation_fee":{"percentage":"10"},"fulfillment_state":{"descriptor":{"code":"CONFIRMED"}},"cancel_by":{"label":"DURATION","duration":"PT1H30M"}},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}},{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":true}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/replacement.html"}}],"quote":{"breakup":[{"title":"BASE_FARE","item":{"id":"I1","price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"350"}},{"title":"BASE_FARE","item":{"id":"I2","price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"150"}},{"title":"TAX","price":{"currency":"INR","value":"0"}},{"title":"ADD_ONS","item":{"id":"I1","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I2","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I5"},"price":{"currency":"INR","value":"100"}},{"title":"REFUND","item":{"id":"I1","price":{"currency":"INR","value":"-350"},"quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","price":{"currency":"INR","value":"-100"}}]},"price":{"currency":"INR","value":"-450"}},{"title":"REFUND","item":{"id":"I2","price":{"currency":"INR","value":"-150"},"quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","price":{"currency":"INR","value":"100"}}]},"price":{"currency":"INR","value":"-250"}},{"title":"REFUND","item":{"id":"I5"},"price":{"currency":"INR","value":"-100"}},{"title":"CANCELLATION_CHARGES","price":{"currency":"INR","value":"100"}}],"price":{"currency":"INR","value":"100"}},"payments":[{"id":"PA1","collected_by":"BAP","status":"PAID","type":"PRE-ORDER","params":{"transaction_id":"61b4be7e-d85c-456a-99e5-ce3d83be135d","amount":"800","currency":"INR"}}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]},{"descriptor":{"code":"BPP_TERMS","name":"BPP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"MANDATORY_ARBITRATION"},"value":"true"},{"descriptor":{"code":"COURT_JURISDICTION"},"value":"New Delhi"},{"descriptor":{"code":"DELAY_INTEREST"},"value":"2.5 %"},{"descriptor":{"code":"SETTLEMENT_AMOUNT"},"value":"7 INR"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_BANK_CODE"},"value":"XXXXXXXX"},{"descriptor":{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER"},"value":"xxxxxxxxxxxxxx"}]}]}}}},{"summary":"Cancel_ticket_booking_2","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T05:11:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"af0fb8a7-0ca0-4c40-85f5-f95dcff61215","version":"2.0.0","action":"on_cancel","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"id":"01","status":"CANCELLED","items":[{"id":"I0","descriptor":{"name":"Parent Item for Culture & Heritage","code":"ABSTRACT","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C2"],"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"tags":[{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I1","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I2","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I5","descriptor":{"name":"Add on item","code":"ADD_ON","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","price":{"currency":"INR","value":"100"},"quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","type":"VISIT","state":{"descriptor":{"code":"CONFIRMED"}},"stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"timestamp":"2024-06-28T05:00:16.000Z"},"authorization":{"type":"QR","token":"iVBORw0KGgoAAAANSUhEUgAAAH0AAAB9AQAAAACn+1GIAAAApklEQVR4Xu2UMQ4EMQgD/QP+/0vK6zjsvayUMmavWxQpMAUBkwS12wcveAAkgNSCD3rR5Lkgoai3GUCMgWqbAEYR3HxAkZlzU/0MyBisYRsgI1ERFfcpBpA+ze6k56Cj7KTdXNigFWZvSOpsgqLfd18i2aAukXh9TXBNmdWt5gzA/oqzWkkN8HtA7G8CNOwYAiZt3wZixUfkA32OHNQq7Bxs9oI/gC/9fV8AVCkPjQAAAABJRU5ErkJggg==","valid_to":"2024-06-30T05:00:16.000Z","status":"UNCLAIMED"}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}}],"provider":{"id":"P1","descriptor":{"name":"Unreserved Entry Pass","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"locations":[{"id":"L1","gps":"28.524596, 77.185577","descriptor":{"name":"Qutab Minar","short_desc":"Seth Sarai, Mehrauli, New Delhi, Delhi. The Qutb Minar, also spelled Qutub Minar and Qutab Minar, is a minaret and \"victory tower\" that forms part of the Qutb complex","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"5"}]},"cancellation_terms":[{"cancellation_fee":{"percentage":"10"},"fulfillment_state":{"descriptor":{"code":"CONFIRMED"}},"cancel_by":{"label":"DURATION","duration":"PT1H30M"}},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}},{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":true}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/replacement.html"}}],"quote":{"breakup":[{"title":"BASE_FARE","item":{"id":"I1","price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"350"}},{"title":"BASE_FARE","item":{"id":"I2","price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"150"}},{"title":"TAX","price":{"currency":"INR","value":"0"}},{"title":"ADD_ONS","item":{"id":"I1","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I2","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I5"},"price":{"currency":"INR","value":"100"}},{"title":"REFUND","item":{"id":"I1","price":{"currency":"INR","value":"-350"},"quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","price":{"currency":"INR","value":"-100"}}]},"price":{"currency":"INR","value":"-450"}},{"title":"REFUND","item":{"id":"I2","price":{"currency":"INR","value":"-150"},"quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","price":{"currency":"INR","value":"100"}}]},"price":{"currency":"INR","value":"-250"}},{"title":"REFUND","item":{"id":"I5"},"price":{"currency":"INR","value":"-100"}},{"title":"CANCELLATION_CHARGES","price":{"currency":"INR","value":"100"}}],"price":{"currency":"INR","value":"100"}},"payments":[{"id":"PA1","collected_by":"BAP","status":"PAID","type":"PRE-ORDER","params":{"transaction_id":"61b4be7e-d85c-456a-99e5-ce3d83be135d","amount":"800","currency":"INR"}}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]},{"descriptor":{"code":"BPP_TERMS","name":"BPP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"MANDATORY_ARBITRATION"},"value":"true"},{"descriptor":{"code":"COURT_JURISDICTION"},"value":"New Delhi"},{"descriptor":{"code":"DELAY_INTEREST"},"value":"2.5 %"},{"descriptor":{"code":"SETTLEMENT_AMOUNT"},"value":"7 INR"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_BANK_CODE"},"value":"XXXXXXXX"},{"descriptor":{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER"},"value":"xxxxxxxxxxxxxx"}]}]}}}}]},"on_status":{"examples":[{"summary":"Return_confirmed_ticket_order_with_payment_confirmation_1","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:53:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"6d287e01-59bc-4c6d-b0ab-e07649eae6b2","version":"2.0.0","action":"on_status","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"id":"01","status":"COMPLETED","items":[{"id":"I0","descriptor":{"name":"Parent Item for Culture & Heritage","code":"ABSTRACT","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C2"],"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"tags":[{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I1","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I2","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I5","descriptor":{"name":"Add on item","code":"ADD_ON","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","price":{"currency":"INR","value":"100"},"quantity":{"selected":{"count":1}}}],"billing":{"name":"John Doe","email":"john.doe@example.com","phone":"+91-9897867564"},"fulfillments":[{"id":"F1","type":"VISIT","state":{"descriptor":{"code":"COMPLETED"}},"stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"timestamp":"2024-06-28T05:00:16.000Z"},"authorization":{"type":"QR","token":"iVBORw0KGgoAAAANSUhEUgAAAH0AAAB9AQAAAACn+1GIAAAApklEQVR4Xu2UMQ4EMQgD/QP+/0vK6zjsvayUMmavWxQpMAUBkwS12wcveAAkgNSCD3rR5Lkgoai3GUCMgWqbAEYR3HxAkZlzU/0MyBisYRsgI1ERFfcpBpA+ze6k56Cj7KTdXNigFWZvSOpsgqLfd18i2aAukXh9TXBNmdWt5gzA/oqzWkkN8HtA7G8CNOwYAiZt3wZixUfkA32OHNQq7Bxs9oI/gC/9fV8AVCkPjQAAAABJRU5ErkJggg==","valid_to":"2024-06-30T05:00:16.000Z","status":"CLAIMED"}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}}],"provider":{"id":"P1","descriptor":{"name":"Unreserved Entry Pass","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"locations":[{"id":"L1","gps":"28.524596, 77.185577","descriptor":{"name":"Qutab Minar","short_desc":"Seth Sarai, Mehrauli, New Delhi, Delhi. The Qutb Minar, also spelled Qutub Minar and Qutab Minar, is a minaret and \"victory tower\" that forms part of the Qutb complex","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"5"}]},"cancellation_terms":[{"cancellation_fee":{"percentage":"10"},"fulfillment_state":{"descriptor":{"code":"CONFIRMED"}},"cancel_by":{"label":"DURATION","duration":"PT1H30M"}},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}},{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":true}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/replacement.html"}}],"quote":{"breakup":[{"title":"BASE_FARE","item":{"id":"I1","price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"350"}},{"title":"BASE_FARE","item":{"id":"I2","price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"150"}},{"title":"TAX","price":{"currency":"INR","value":"0"}},{"title":"ADD_ONS","item":{"id":"I1","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I2","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I5"},"price":{"currency":"INR","value":"100"}}],"price":{"currency":"INR","value":"800"}},"payments":[{"id":"PA1","collected_by":"BAP","status":"PAID","type":"PRE-ORDER","params":{"transaction_id":"61b4be7e-d85c-456a-99e5-ce3d83be135d","amount":"800","currency":"INR"}}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]},{"descriptor":{"code":"BPP_TERMS","name":"BPP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"MANDATORY_ARBITRATION"},"value":"true"},{"descriptor":{"code":"COURT_JURISDICTION"},"value":"New Delhi"},{"descriptor":{"code":"DELAY_INTEREST"},"value":"2.5 %"},{"descriptor":{"code":"SETTLEMENT_AMOUNT"},"value":"7 INR"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_BANK_CODE"},"value":"XXXXXXXX"},{"descriptor":{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER"},"value":"xxxxxxxxxxxxxx"}]}],"created_at":"2024-06-26T04:53:26.000Z","updated_at":"2024-06-26T04:53:26.000Z"}}}}]}}}},"x-attributes":{"unreserved-entry-pass":{"attribute_set":{"search":{"context":{"location":{"country":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"IND","description":"Describes country code as per ISO 3166-1 and ISO 3166-2 format"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes the country"}},"city":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"*","description":"Describes the city code this location is, or is located within"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes the city "}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes the location"}},"domain":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"ONDC:FIS13","description":"Describes domain code that is relevant to this transaction context"},"timestamp":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"2023-03-23T04:41:16.000Z","description":"Describes tme of request generation in RFC3339 format"},"bap_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"fis.test.bap.io","description":"Describes subscriber ID of the BAP"},"transaction_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"6743e9e2","description":"Describes a unique value which persists across all API calls"},"message_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"13ba8018f176","description":"Describes a unique value which persists during a request / callback cycle."},"version":{"required":"MANDATORY","type":"integer","owner":"BAP","usage":"2.0.0","description":"Describes the version of transaction protocol being used by the sender."},"action":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"search","description":"Describes the Beckn protocol method being called by the sender and executed at the receiver."},"bap_uri":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"https://fis.test.bap.io/","description":"Describes subscriber URL of the BAP for accepting callbacks from BPPs."},"ttl":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"PT30S","description":"Describes the duration in ISO8601 format after timestamp for which this message holds valid"}},"message":{"intent":{"category":{"descriptor":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"CULTURE_HERITAGE","description":"Describes the intent category"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes the intent category code"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes the intent category"}},"fulfillment":{"stops":{"type":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"START","description":"Describes the fulfillment type"},"location":{"gps":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"28.666576, 77.233332","description":"Describes the locaiton cordiantes"},"circle":{"radius":{"value":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":10.12,"description":"Describes the locaiton radius"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the info about the location raidus."}},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the info about the location descriptor."}},"city":{"code":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"std:040","description":"Describes the locaiton city code."},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the info about the location city."}},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the info about the fulfillment location."}},"time":{"timestamp":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"2024-06-27T04:41:16.000Z","description":"Describes the timestamp for fulfillment"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the info about the stops time."}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes the info about the fulfillment stops."}},"vehicle":{"category":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"SITE","description":"Describes the vechilce category"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes the info about the vechicle."}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes the info about the fulfillments."}},"payment":{"collected_by":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"BAP","description":"Describes the payment collector"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"The terms of settlement for this order. It describes that how the customer wants to pay for the order."}},"tags":{"BAP_TERMS":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes the BAP terms","list":{"BUYER_FINDER_FEES_PERCENTAGE":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes the Buyer finder fee percentage"},"BUYER_FINDER_FEES_TYPE":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes the Buyer finder fee type"},"STATIC_TERMS":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the static terms"},"SETTLEMENT_BASIS":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"--","description":"Describes the settlement basis"},"SETTLEMENT_WINDOW":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"--","description":"Describes the sttlement window"}}}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describe the intent to buy or avail a product or a service."}}}},"on_search":{"context":{"location":{"country":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"IND","description":"Describes country code as per ISO 3166-1 and ISO 3166-2 format"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes the country"}},"city":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"*","description":"Describes the city code this location is, or is located within"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes the city "}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes the location"}},"domain":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"ONDC:FIS13","description":"Describes domain code that is relevant to this transaction context"},"timestamp":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"2023-03-23T04:41:16.000Z","description":"Describes tme of request generation in RFC3339 format"},"bap_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"fis.test.bap.io","description":"Describes subscriber ID of the BAP"},"transaction_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"6743e9e2","description":"Describes a unique value which persists across all API calls"},"message_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"13ba8018f176","description":"Describes a unique value which persists during a request / callback cycle."},"version":{"required":"MANDATORY","type":"integer","owner":"BAP","usage":"2.0.0","description":"Describes the version of transaction protocol being used by the sender."},"action":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"on_search","description":"Describes the Beckn protocol method being called by the sender and executed at the receiver."},"bap_uri":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"https://fis.test.bap.io/","description":"Describes subscriber URL of the BAP for accepting callbacks from BPPs."},"ttl":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"PT30S","description":"Describes the duration in ISO8601 format after timestamp for which this message holds valid"},"bpp_id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"fis.test.bpp.io","description":"Describes subscriber ID of the BPP"},"bpp_uri":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://fis.test.bpp.io/","description":"Describes subscriber URL of the BPP for accepting calls from BAPs."}},"message":{"catalog":{"descriptor":{"name":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"India tourism","description":"Describes name of the name of catalog"},"long_desc":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"Online ticket booking service","description":"Describes long description of the of catalog"},"images":{"url":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/logos/logo.ico","description":"Describes images for catalog"},"size_type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"xs","description":"Describes images type for catalog"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the images's description."}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the catalog's descriptor."}},"providers":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"P1","description":"Describes unique id of provider"},"categories":{"descriptor":{"name":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"Culture & Heritage","description":"Describes category name of the provider"},"code":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"CULTURE_HERITAGE","description":"Describes category code of the provider"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the provider's categories description."}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the provider's categories."}},"descriptor":{"name":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"India tourism","description":"Describes the provider name"},"images":{"url":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://www.abcinsurance.com/content/dam/abc/india/assets/images/header/logo.png","description":"Describes images for provider"},"size_type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"xs","description":"Describes images size type for provider"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes images for provider"}},"short_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Online ticket booking service","description":"Describes short description of the of provider"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the provider's description."}},"time":{"range":{"start":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"2024-06-14T05:30:00.000Z","description":"Describes start time for operational hours of provider"},"end":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"2024-06-14T05:30:00.000Z","description":"Describes end time for operational hours of provider"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes start time range for operational hours of provider"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes start time for operational hours of provider"}},"locations":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"4r3e9e2","description":"Describes provider locations unique id"},"gps":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"28.524596, 77.185577","description":"Describes provider gps locations "},"descriptor":{"name":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"Qutab Minar","description":"Describes provider locations descriptor"},"short_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Seth Sarai, Mehrauli, New Delhi, Delhi.","description":"Describes provider's short description"},"additional_desc":{"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/sites/additional-info","description":"Describes url for additional desc"},"content_type":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/plain","description":"Describes content type for additional desc"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes additional desc for locations"}},"_description":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes provider locations descriptor"}},"_description":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes provider locations"}},"items":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"1r3e9e2","description":"Describes unique id of item"},"descriptor":{"name":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"Adult-Ticket Culture & Heritage Item","description":"Describes name of item"},"code":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"ENTRY_PASS","description":"Describes code of item"},"short_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Ticket for Qutab Minar","description":"Describes short_desc of item"},"long_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"This ticket grants entry to the Qutab Minar.","description":"Describes long_desc of item"},"images":{"url":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","description":"Describes images url for item"},"size_type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"xs","description":"Describes images type for item"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes images url for item"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the items description."}},"location_ids":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"13r3e9e2","description":"Describes lcoation id"},"category_ids":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"c3r3e9e2","description":"Describes category id"},"price":{"value":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":350,"description":"Describes price value"},"currency":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":350,"description":"Describes price currency"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the price of an item."}},"quantity":{"maximum":{"count":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":6,"description":"Describes maximum count for item"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the maximum quantity of an item."}},"minimum":{"count":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":1,"description":"Describes minimum count for item"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the mimimum quantity of an item."}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the quantity info of an item."}},"time":{"label":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"VALIDITY","description":"Describes time label"},"duration":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"P2D","description":"Describes time duration"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes time label"}},"fulfillment_ids":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"cs3r3e9e2","description":"Describes fulfillments id assoicated to an item."},"add_ons":{"id":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"93r3e9e2","description":"Describes add_ons id."},"descriptor":{"name":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Audio Assistance","description":"Describes add_ons name."},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the add_ons description assocaited with an item."}},"quantity":{"available":{"count":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":1,"description":"Describes add_ons available count."},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the add_ons quantity available assocaited with an item."}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the add_ons quantity assocaited with an item."}},"price":{"value":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":100,"description":"Describes add_ons price value."},"currency":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"INR","description":"Describes add_ons price currency."},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the add_ons price assocaited with an item."}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the add_ons assocaited with an item."}},"cancellation_terms":{"external_ref":{"mimetype":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/html","description":"Describes mimetype for cancellation_terms"},"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/beckn/tnc.html","description":"Describes url for cancellation_terms"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes external_ref for cancellation_terms"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes cancellation_terms"}},"replacement_terms":{"external_ref":{"mimetype":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/html","description":"Describes mimetype for cancellation_terms"},"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass/beckn/replacement.html","description":"Describes url for cancellation_terms"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes external_ref for replacement terms"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes replacement terms"}},"tags":{"FARE_POLICY":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes fair policy tag group","list":{"MIN_AGE":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes min_age tag"},"MAX_AGE":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes max_age tag"},"GENDER":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes gender tag"},"NATIONALITY":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes nationality tag"}}},"INCLUSIONS":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes inclusion tag group"},"EXCLUSIONS":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes exclusion tag group"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes a product or a service offered to the end consumer by the provider. In the mobility sector, it can represent a fare product like one way journey. In the logistics sector, it can represent the delivery service offering. In the retail domain it can represent a product like a grocery item."}},"fulfillments":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"83r3e9e2","description":"Describes unique id of fulfillment"},"type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"VISIT","description":"Describes type of fulfillment"},"stops":{"type":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"START","description":"Describes type of stop"},"instructions":{"additional_desc":{"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/sites/additional-info","description":"Describes additional_desc url"},"content_type":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/plain","description":"Describes additional_desc mime type"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes additional_desc instructions"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes stops instructions"}},"time":{"timestamp":{"required":"OPTIONAL","type":"string","owner":"BAP/BPP","usage":"2024-06-28T05:00:16.000Z","description":"Describes time for fulfillments"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes the time of location."}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes the fulfillments stops."}},"agent":{"organization":{"contact":{"phone":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":-9999999908,"description":"Describes organization contact for fulfillments"},"email":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"john.doe@example.com","description":"Describes organization email for fulfillments"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes organization contact for fulfillments"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes organization contact for fulfillments"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes organization details for fulfillments"}},"vehicle":{"category":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"SITE","description":"Describes vehicle category for fulfillments"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes the vehicle type."}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes how a an order will be rendered/fulfilled to the end-customer"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the provider's description."}},"tags":{"BAP_TERMS":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes bap terms tag group","list":{"BUYER_FINDER_FEES_PERCENTAGE":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes buyer finder fee percentage"},"BUYER_FINDER_FEES_TYPE":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes buyer finder fee type"},"STATIC_TERMS":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"--","description":"Describes the static terms"},"SETTLEMENT_BASIS":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"--","description":"Describes the settlement basis "},"SETTLEMENT_WINDOW":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"--","description":"Describes the settlement window"}}},"BPP_TERMS":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes bpp terms tag group","list":{"BUYER_FINDER_FEES_PERCENTAGE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes buyer finder fee percentage"},"BUYER_FINDER_FEES_TYPE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes buyer finder fee type"},"STATIC_TERMS":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes the static terms"},"MANDATORY_ARBITRATION":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes the mandatory arbitration"},"COURT_JURISDICTION":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes the court jurisdiction"},"DELAY_INTEREST":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes the delay interest"}}}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the catalog's description."}}}},"select":{"context":{"location":{"country":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"IND","description":"Describes country code as per ISO 3166-1 and ISO 3166-2 format"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the country of location where the transaction is meant to be completed."}},"city":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"*","description":"Describes the city code this location is, or is located within"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the city of location where the transaction is meant to be completed."}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the location where the transaction is meant to be completed."}},"domain":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"ONDC:FIS13","description":"Describes domain code that is relevant to this transaction context"},"timestamp":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"2023-03-23T04:41:16.000Z","description":"Describes tme of request generation in RFC3339 format"},"bap_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"fis.test.bap.io","description":"Describes subscriber ID of the BAP"},"transaction_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"6743e9e2","description":"Describes a unique value which persists across all API calls"},"message_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"13ba8018f176","description":"Describes a unique value which persists during a request / callback cycle."},"version":{"required":"MANDATORY","type":"integer","owner":"BAP","usage":"2.0.0","description":"Describes the version of transaction protocol being used by the sender."},"action":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"select","description":"Describes the Beckn protocol method being called by the sender and executed at the receiver."},"bap_uri":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"https://fis.test.bap.io/","description":"Describes subscriber URL of the BAP for accepting callbacks from BPPs."},"ttl":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"PT30S","description":"Describes the duration in ISO8601 format after timestamp for which this message holds valid"},"bpp_id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"fis.test.bpp.io","description":"Describes subscriber ID of the BPP"},"bpp_uri":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://fis.test.bpp.io/","description":"Describes subscriber URL of the BPP for accepting calls from BAPs."}},"message":{"order":{"items":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"1r3e9e2","description":"Describes unique id of item"},"quantity":{"selected":{"count":{"required":"MANDATORY","type":"string","owner":"BAP","usage":1,"description":"Describes the selected count"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes items selected quantity"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes items quantity"}},"add_ons":{"id":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"2r3e9e2","description":"Describes the add_ons id"},"quantity":{"selected":{"count":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":2,"description":"Describes the add_ons selected count"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes add_ons selected quantity"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes add_ons quantity"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes the add_ons description"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes a product or a service offered to the end consumer by the provider. In the mobility sector, it can represent a fare product like one way journey. In the logistics sector, it can represent the delivery service offering. In the retail domain it can represent a product like a grocery item."}},"fulfillments":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"2vr3e9e2","description":"Describes the fulfillment Id"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the fulfillment"}},"provider":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"8vr3e9e2","description":"Describes the provider Id"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes provider details"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes order details"}}}},"on_select":{"context":{"location":{"country":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"IND","description":"Describes country code as per ISO 3166-1 and ISO 3166-2 format"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the country of location where the transaction is meant to be completed."}},"city":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"*","description":"Describes the city code this location is, or is located within"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the city of location where the transaction is meant to be completed."}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the location where the transaction is meant to be completed."}},"domain":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"ONDC:FIS13","description":"Describes domain code that is relevant to this transaction context"},"timestamp":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"2023-03-23T04:41:16.000Z","description":"Describes tme of request generation in RFC3339 format"},"bap_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"fis.test.bap.io","description":"Describes subscriber ID of the BAP"},"transaction_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"6743e9e2","description":"Describes a unique value which persists across all API calls"},"message_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"13ba8018f176","description":"Describes a unique value which persists during a request / callback cycle."},"version":{"required":"MANDATORY","type":"integer","owner":"BAP","usage":"2.0.0","description":"Describes the version of transaction protocol being used by the sender."},"action":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"on_select","description":"Describes the Beckn protocol method being called by the sender and executed at the receiver."},"bap_uri":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"https://fis.test.bap.io/","description":"Describes subscriber URL of the BAP for accepting callbacks from BPPs."},"ttl":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"PT30S","description":"Describes the duration in ISO8601 format after timestamp for which this message holds valid"},"bpp_id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"fis.test.bpp.io","description":"Describes subscriber ID of the BPP"},"bpp_uri":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://fis.test.bpp.io/","description":"Describes subscriber URL of the BPP for accepting calls from BAPs."}},"message":{"order":{"items":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"1r3e9e2","description":"Describes unique id of item"},"quantity":{"selected":{"count":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":1,"description":"Describes the selected count"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the items selected count"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the item quantity."}},"descriptor":{"name":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"Adult-Ticket Culture & Heritage Item","description":"Describes name of item"},"code":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"ENTRY_PASS","description":"Describes code of item"},"short_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Ticket for Qutab Minar","description":"Describes short_desc of item"},"long_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"This ticket grants entry to the Qutab Minar.","description":"Describes long_desc of item"},"images":{"url":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","description":"Describes images url for item"},"size_type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"xs","description":"Describes images type for item"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes images item"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the item descriptor"}},"location_ids":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"13r3e9e2","description":"Describes lcoation id"},"category_ids":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"c3r3e9e2","description":"Describes category id"},"price":{"value":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":350,"description":"Describes price value"},"currency":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":350,"description":"Describes price currency"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes price value"}},"time":{"label":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"VALIDITY","description":"Describes time label"},"duration":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"P2D","description":"Describes time duration"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes time label"}},"fulfillment_ids":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"cs3r3e9e2","description":"Describes fulfillments id assoicated to an item."},"add_ons":{"descriptor":{"name":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Audio Assistance","description":"Describes add_ons name."},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes add_ons descriptor."}},"price":{"value":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":100,"description":"Describes add_ons price value."},"currency":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"INR","description":"Describes add_ons price currency."},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes add_ons price value."}},"id":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"2r3e9e2","description":"Describes the add_ons id"},"quantity":{"selected":{"count":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":2,"description":"Describes the add_ons selected count"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the add_ons selected count"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the add_ons quantity"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes add_ons."}},"tags":{"FARE_POLICY":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes fair policy tag group","list":{"MIN_AGE":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes min_age tag"},"MAX_AGE":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes max_age tag"},"GENDER":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes gender tag"},"NATIONALITY":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes nationality tag"}}},"INCLUSIONS":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes inclusion tag group"},"EXCLUSIONS":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes exclusion tag group"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP/BPP","usage":"--","description":"This decription refers to the comprehensive list of the products or services selected and obtained within the specified order."}},"fulfillments":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"83r3e9e2","description":"Describes unique id of fulfillment"},"type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"VISIT","description":"Describes type of fulfillment"},"stops":{"type":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"START","description":"Describes type of stop"},"instructions":{"additional_desc":{"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/sites/additional-info","description":"Describes additional_desc url"},"content_type":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/plain","description":"Describes additional_desc mime type"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes additional_desc url"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes additional_desc instructin"}},"time":{"timestamp":{"required":"OPTIONAL","type":"string","owner":"BAP/BPP","usage":"2024-06-28T05:00:16.000Z","description":"Describes time for fulfillments"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes time for fulfillments"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes type of stop"}},"agent":{"organization":{"contact":{"phone":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":-9999999908,"description":"Describes organization contact for fulfillments"},"email":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"john.doe@example.com","description":"Describes organization email for fulfillments"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes organization contact for fulfillments"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes organization details for fulfillments"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes organization agent details"}},"vehicle":{"category":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"SITE","description":"Describes vehicle category for fulfillments"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes vehicle category for fulfillments"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes order fulfillment"}},"provider":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"8vr3e9e2","description":"Describes the provider Id"},"descriptor":{"name":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"India tourism","description":"Describes the provider name"},"images":{"url":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://www.abcinsurance.com/content/dam/abc/india/assets/images/header/logo.png","description":"Describes images for provider"},"size_type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"xs","description":"Describes images size type for provider"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes images for provider"}},"short_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Online ticket booking service","description":"Describes short description of the of provider"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the provider name"}},"locations":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"4r3e9e2","description":"Describes provider locations unique id"},"gps":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"28.524596, 77.185577","description":"Describes provider gps locations "},"descriptor":{"name":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"Qutab Minar","description":"Describes provider locations descriptor"},"short_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Seth Sarai, Mehrauli, New Delhi, Delhi.","description":"Describes provider's short description"},"additional_desc":{"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/sites/additional-info","description":"Describes url for additional desc"},"content_type":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/plain","description":"Describes content type for additional desc"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes url for additional desc"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes provider locations descriptor"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes provider locations"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"This describes the complete formulated description of the loan provider whose catalog items have been selected."}},"cancellation_terms":{"external_ref":{"mimetype":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/html","description":"Describes mimetype for cancellation_terms"},"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/beckn/tnc.html","description":"Describes url for cancellation_terms"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes external ref for cancellation_terms"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the cancellation_terms"}},"replacement_terms":{"external_ref":{"mimetype":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/html","description":"Describes mimetype for cancellation_terms"},"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass/beckn/replacement.html","description":"Describes url for cancellation_terms"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes external ref for replacement terms"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes replacement terms"}},"quote":{"breakup":{"title":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"BASE_FARE","description":"Describes breakup title"},"item":{"id":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"1r3e9e2","description":"Describes item id for breakup"},"price":{"value":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":100,"description":"Describes item price value."},"currency":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"INR","description":"Describes item price currency."},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes item price for breakup."}},"quantity":{"selected":{"count":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":2,"description":"Describes the item selected count"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the item selected count"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the item quantity."}},"add_ons":{"id":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"5r3e9e2","description":"Describes add_ons id for breakup"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes item for breakup"}},"price":{"currency":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"INR","description":"Describes item price currency."},"value":{"required":"MANDATORY","type":"string","owner":"BPP","usage":400,"description":"Describes item price currency."},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes breakup price."}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes breakup for quote"}},"price":{"value":{"required":"MANDATORY","type":"string","owner":"BPP","usage":400,"description":"Describes item price currency."},"currency":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"INR","description":"Describes item price currency."},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes quote price."}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes order quote"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP/BPP","usage":"--","description":"This refers to the complete description of the legal contract created between the buyer and the seller."}}}},"init":{"context":{"location":{"country":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"IND","description":"Describes country code as per ISO 3166-1 and ISO 3166-2 format"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the country of location where the transaction is meant to be completed."}},"city":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"*","description":"Describes the city code this location is, or is located within"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the city of location where the transaction is meant to be completed."}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the location where the transaction is meant to be completed."}},"domain":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"ONDC:FIS13","description":"Describes domain code that is relevant to this transaction context"},"timestamp":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"2023-03-23T04:41:16.000Z","description":"Describes tme of request generation in RFC3339 format"},"bap_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"fis.test.bap.io","description":"Describes subscriber ID of the BAP"},"transaction_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"6743e9e2","description":"Describes a unique value which persists across all API calls"},"message_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"13ba8018f176","description":"Describes a unique value which persists during a request / callback cycle."},"version":{"required":"MANDATORY","type":"integer","owner":"BAP","usage":"2.0.0","description":"Describes the version of transaction protocol being used by the sender."},"action":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"init","description":"Describes the Beckn protocol method being called by the sender and executed at the receiver."},"bap_uri":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"https://fis.test.bap.io/","description":"Describes subscriber URL of the BAP for accepting callbacks from BPPs."},"ttl":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"PT30S","description":"Describes the duration in ISO8601 format after timestamp for which this message holds valid"},"bpp_id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"fis.test.bpp.io","description":"Describes subscriber ID of the BPP"},"bpp_uri":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://fis.test.bpp.io/","description":"Describes subscriber URL of the BPP for accepting calls from BAPs."}},"message":{"order":{"items":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"1r3e9e2","description":"Describes unique id of item"},"quantity":{"selected":{"count":{"required":"MANDATORY","type":"string","owner":"BAP","usage":1,"description":"Describes the selected count"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes items selected quantity"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes items quantity"}},"add_ons":{"id":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"2r3e9e2","description":"Describes the add_ons id"},"quantity":{"selected":{"count":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":2,"description":"Describes the add_ons selected count"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes add_ons selected quantity"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes add_ons quantity"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes the add_ons description"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes a product or a service offered to the end consumer by the provider. In the mobility sector, it can represent a fare product like one way journey. In the logistics sector, it can represent the delivery service offering. In the retail domain it can represent a product like a grocery item."}},"fulfillments":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"2vr3e9e2","description":"Describes the fulfillment Id"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the fulfillment"}},"provider":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"8vr3e9e2","description":"Describes the provider Id"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes provider details"}},"payments":{"collected_by":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"BAP","description":"Describes the payment collector"},"status":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"NOT-PAID","description":"Describes the payment status"},"type":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"PRE-ORDER","description":"Describes the payment type"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes the payments details"}},"tags":{"BAP_TERMS":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes bap terms tag group","list":{"BUYER_FINDER_FEES_PERCENTAGE":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes buyer finder fee percentage"},"BUYER_FINDER_FEES_TYPE":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes buyer finder fee type"},"STATIC_TERMS":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"--","description":"Describes the static terms"},"SETTLEMENT_BASIS":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"--","description":"Describes the settlement basis "},"SETTLEMENT_WINDOW":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"--","description":"Describes the settlement window"}}}},"billing":{"name":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"john.doe","description":"Describes the billing name"},"email":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"john.doe@example.com","description":"Describes the billing email"},"phone":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":-9897867473,"description":"Describes the billing phone"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the billing details"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes order details"}}}},"on_init":{"context":{"location":{"country":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"IND","description":"Describes country code as per ISO 3166-1 and ISO 3166-2 format"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the country of location where the transaction is meant to be completed."}},"city":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"*","description":"Describes the city code this location is, or is located within"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the city of location where the transaction is meant to be completed."}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the location where the transaction is meant to be completed."}},"domain":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"ONDC:FIS13","description":"Describes domain code that is relevant to this transaction context"},"timestamp":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"2023-03-23T04:41:16.000Z","description":"Describes tme of request generation in RFC3339 format"},"bap_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"fis.test.bap.io","description":"Describes subscriber ID of the BAP"},"transaction_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"6743e9e2","description":"Describes a unique value which persists across all API calls"},"message_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"13ba8018f176","description":"Describes a unique value which persists during a request / callback cycle."},"version":{"required":"MANDATORY","type":"integer","owner":"BAP","usage":"2.0.0","description":"Describes the version of transaction protocol being used by the sender."},"action":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"on_init","description":"Describes the Beckn protocol method being called by the sender and executed at the receiver."},"bap_uri":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"https://fis.test.bap.io/","description":"Describes subscriber URL of the BAP for accepting callbacks from BPPs."},"ttl":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"PT30S","description":"Describes the duration in ISO8601 format after timestamp for which this message holds valid"},"bpp_id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"fis.test.bpp.io","description":"Describes subscriber ID of the BPP"},"bpp_uri":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://fis.test.bpp.io/","description":"Describes subscriber URL of the BPP for accepting calls from BAPs."}},"message":{"order":{"items":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"1r3e9e2","description":"Describes unique id of item"},"quantity":{"selected":{"count":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":1,"description":"Describes the selected count"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the items selected count"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the item quantity."}},"descriptor":{"name":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"Adult-Ticket Culture & Heritage Item","description":"Describes name of item"},"code":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"ENTRY_PASS","description":"Describes code of item"},"short_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Ticket for Qutab Minar","description":"Describes short_desc of item"},"long_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"This ticket grants entry to the Qutab Minar.","description":"Describes long_desc of item"},"images":{"url":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","description":"Describes images url for item"},"size_type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"xs","description":"Describes images type for item"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes images item"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the item descriptor"}},"location_ids":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"13r3e9e2","description":"Describes lcoation id"},"category_ids":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"c3r3e9e2","description":"Describes category id"},"price":{"value":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":350,"description":"Describes price value"},"currency":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":350,"description":"Describes price currency"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes price value"}},"time":{"label":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"VALIDITY","description":"Describes time label"},"duration":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"P2D","description":"Describes time duration"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes time label"}},"fulfillment_ids":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"cs3r3e9e2","description":"Describes fulfillments id assoicated to an item."},"add_ons":{"descriptor":{"name":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Audio Assistance","description":"Describes add_ons name."},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes add_ons descriptor."}},"price":{"value":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":100,"description":"Describes add_ons price value."},"currency":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"INR","description":"Describes add_ons price currency."},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes add_ons price value."}},"id":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"2r3e9e2","description":"Describes the add_ons id"},"quantity":{"selected":{"count":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":2,"description":"Describes the add_ons selected count"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the add_ons selected count"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the add_ons quantity"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes add_ons."}},"tags":{"FARE_POLICY":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes fair policy tag group","list":{"MIN_AGE":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes min_age tag"},"MAX_AGE":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes max_age tag"},"GENDER":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes gender tag"},"NATIONALITY":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes nationality tag"}}},"INCLUSIONS":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes inclusion tag group"},"EXCLUSIONS":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes exclusion tag group"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP/BPP","usage":"--","description":"This decription refers to the comprehensive list of the products or services selected and obtained within the specified order."}},"fulfillments":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"83r3e9e2","description":"Describes unique id of fulfillment"},"type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"VISIT","description":"Describes type of fulfillment"},"stops":{"type":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"START","description":"Describes type of stop"},"instructions":{"additional_desc":{"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/sites/additional-info","description":"Describes additional_desc url"},"content_type":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/plain","description":"Describes additional_desc mime type"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes additional_desc url"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes additional_desc instructin"}},"time":{"timestamp":{"required":"OPTIONAL","type":"string","owner":"BAP/BPP","usage":"2024-06-28T05:00:16.000Z","description":"Describes time for fulfillments"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes time for fulfillments"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes type of stop"}},"agent":{"organization":{"contact":{"phone":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":-9999999908,"description":"Describes organization contact for fulfillments"},"email":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"john.doe@example.com","description":"Describes organization email for fulfillments"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes organization contact for fulfillments"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes organization details for fulfillments"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes organization agent details"}},"vehicle":{"category":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"SITE","description":"Describes vehicle category for fulfillments"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes vehicle category for fulfillments"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes order fulfillment"}},"provider":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"8vr3e9e2","description":"Describes the provider Id"},"descriptor":{"name":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"India tourism","description":"Describes the provider name"},"images":{"url":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://www.abcinsurance.com/content/dam/abc/india/assets/images/header/logo.png","description":"Describes images for provider"},"size_type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"xs","description":"Describes images size type for provider"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes images for provider"}},"short_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Online ticket booking service","description":"Describes short description of the of provider"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the provider name"}},"locations":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"4r3e9e2","description":"Describes provider locations unique id"},"gps":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"28.524596, 77.185577","description":"Describes provider gps locations "},"descriptor":{"name":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"Qutab Minar","description":"Describes provider locations descriptor"},"short_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Seth Sarai, Mehrauli, New Delhi, Delhi.","description":"Describes provider's short description"},"additional_desc":{"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/sites/additional-info","description":"Describes url for additional desc"},"content_type":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/plain","description":"Describes content type for additional desc"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes url for additional desc"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes provider locations descriptor"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes provider locations"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"This describes the complete formulated description of the loan provider whose catalog items have been selected."}},"cancellation_terms":{"external_ref":{"mimetype":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/html","description":"Describes mimetype for cancellation_terms"},"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/beckn/tnc.html","description":"Describes url for cancellation_terms"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes external ref for cancellation_terms"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the cancellation_terms"}},"replacement_terms":{"external_ref":{"mimetype":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/html","description":"Describes mimetype for cancellation_terms"},"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass/beckn/replacement.html","description":"Describes url for cancellation_terms"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes external ref for replacement terms"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes replacement terms"}},"quote":{"breakup":{"title":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"BASE_FARE","description":"Describes breakup title"},"item":{"id":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"1r3e9e2","description":"Describes item id for breakup"},"price":{"value":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":100,"description":"Describes item price value."},"currency":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"INR","description":"Describes item price currency."},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes item price for breakup."}},"quantity":{"selected":{"count":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":2,"description":"Describes the item selected count"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the item selected count"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the item quantity."}},"add_ons":{"id":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"5r3e9e2","description":"Describes add_ons id for breakup"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes item for breakup"}},"price":{"currency":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"INR","description":"Describes item price currency."},"value":{"required":"MANDATORY","type":"string","owner":"BPP","usage":400,"description":"Describes item price currency."},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes breakup price."}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes breakup for quote"}},"price":{"value":{"required":"MANDATORY","type":"string","owner":"BPP","usage":400,"description":"Describes item price currency."},"currency":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"INR","description":"Describes item price currency."},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes quote price."}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes order quote"}},"payments":{"collected_by":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"BAP","description":"Describes the payment collector"},"status":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"NOT-PAID","description":"Describes the payment status"},"type":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"PRE-ORDER","description":"Describes the payment type"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes the payments details"}},"tags":{"BAP_TERMS":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes bap terms tag group","list":{"BUYER_FINDER_FEES_PERCENTAGE":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes buyer finder fee percentage"},"BUYER_FINDER_FEES_TYPE":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes buyer finder fee type"},"STATIC_TERMS":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes the static terms"},"SETTLEMENT_BASIS":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes the settlement basis "},"SETTLEMENT_WINDOW":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes the settlement window"}}},"BPP_TERMS":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes bpp terms tag group","list":{"BUYER_FINDER_FEES_PERCENTAGE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes buyer finder fee percentage"},"BUYER_FINDER_FEES_TYPE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes buyer finder fee type"},"STATIC_TERMS":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the static terms"},"MANDATORY_ARBITRATION":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the mandatory arbitration"},"COURT_JURISDICTION":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the court jurisdiction"},"DELAY_INTEREST":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the delay interest"},"SETTLEMENT_AMOUNT":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the settlement amount"},"SETTLEMENT_TYPE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the settlement type"},"SETTLEMENT_BANK_CODE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the settlement bank code"},"SETTLEMENT_BANK_ACCOUNT_NUMBER":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the settlement bank account number"}}}},"billing":{"name":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"john.doe","description":"Describes the billing name"},"email":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"john.doe@example.com","description":"Describes the billing email"},"phone":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":-9897867473,"description":"Describes the billing phone"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the billing details"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP/BPP","usage":"--","description":"This refers to the complete description of the legal contract created between the buyer and the seller."}}}},"confirm":{"context":{"location":{"country":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"IND","description":"Describes country code as per ISO 3166-1 and ISO 3166-2 format"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the country of location where the transaction is meant to be completed."}},"city":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"*","description":"Describes the city code this location is, or is located within"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the city of location where the transaction is meant to be completed."}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the location where the transaction is meant to be completed."}},"domain":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"ONDC:FIS13","description":"Describes domain code that is relevant to this transaction context"},"timestamp":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"2023-03-23T04:41:16.000Z","description":"Describes tme of request generation in RFC3339 format"},"bap_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"fis.test.bap.io","description":"Describes subscriber ID of the BAP"},"transaction_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"6743e9e2","description":"Describes a unique value which persists across all API calls"},"message_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"13ba8018f176","description":"Describes a unique value which persists during a request / callback cycle."},"version":{"required":"MANDATORY","type":"integer","owner":"BAP","usage":"2.0.0","description":"Describes the version of transaction protocol being used by the sender."},"action":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"confirm","description":"Describes the Beckn protocol method being called by the sender and executed at the receiver."},"bap_uri":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"https://fis.test.bap.io/","description":"Describes subscriber URL of the BAP for accepting callbacks from BPPs."},"ttl":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"PT30S","description":"Describes the duration in ISO8601 format after timestamp for which this message holds valid"},"bpp_id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"fis.test.bpp.io","description":"Describes subscriber ID of the BPP"},"bpp_uri":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://fis.test.bpp.io/","description":"Describes subscriber URL of the BPP for accepting calls from BAPs."}},"message":{"order":{"items":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"1r3e9e2","description":"Describes unique id of item"},"quantity":{"selected":{"count":{"required":"MANDATORY","type":"string","owner":"BAP","usage":1,"description":"Describes the selected count"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes items selected quantity"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes items quantity"}},"add_ons":{"id":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"2r3e9e2","description":"Describes the add_ons id"},"quantity":{"selected":{"count":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":2,"description":"Describes the add_ons selected count"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes add_ons selected quantity"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes add_ons quantity"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes the add_ons description"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes a product or a service offered to the end consumer by the provider. In the mobility sector, it can represent a fare product like one way journey. In the logistics sector, it can represent the delivery service offering. In the retail domain it can represent a product like a grocery item."}},"fulfillments":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"2vr3e9e2","description":"Describes the fulfillment Id"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the fulfillment"}},"provider":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"8vr3e9e2","description":"Describes the provider Id"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes provider details"}},"payments":{"collected_by":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"BAP","description":"Describes the payment collector"},"status":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"NOT-PAID","description":"Describes the payment status"},"type":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"PRE-ORDER","description":"Describes the payment type"},"params":{"transaction_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"61b4be7e-d85c-456a-99e5-ce3d83b","description":"Describes the payment transaction id"},"currency":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"INR","description":"Describes the payment currency"},"amount":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"INR","description":"Describes the payment amount"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes the payment params"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes the payments details"}},"tags":{"BAP_TERMS":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes bap terms tag group","list":{"BUYER_FINDER_FEES_PERCENTAGE":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes buyer finder fee percentage"},"BUYER_FINDER_FEES_TYPE":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes buyer finder fee type"},"STATIC_TERMS":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes the static terms"},"SETTLEMENT_BASIS":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes the settlement basis "},"SETTLEMENT_WINDOW":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes the settlement window"}}},"BPP_TERMS":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes bpp terms tag group","list":{"BUYER_FINDER_FEES_PERCENTAGE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes buyer finder fee percentage"},"BUYER_FINDER_FEES_TYPE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes buyer finder fee type"},"STATIC_TERMS":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the static terms"},"MANDATORY_ARBITRATION":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the mandatory arbitration"},"COURT_JURISDICTION":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the court jurisdiction"},"DELAY_INTEREST":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the delay interest"},"SETTLEMENT_AMOUNT":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the settlement amount"},"SETTLEMENT_TYPE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the settlement type"},"SETTLEMENT_BANK_CODE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the settlement bank code"},"SETTLEMENT_BANK_ACCOUNT_NUMBER":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the settlement bank account number"}}}},"billing":{"name":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"john.doe","description":"Describes the billing name"},"email":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"john.doe@example.com","description":"Describes the billing email"},"phone":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":-9897867473,"description":"Describes the billing phone"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the billing details"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes order details"}}}},"on_confirm":{"context":{"location":{"country":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"IND","description":"Describes country code as per ISO 3166-1 and ISO 3166-2 format"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the country of location where the transaction is meant to be completed."}},"city":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"*","description":"Describes the city code this location is, or is located within"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the city of location where the transaction is meant to be completed."}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the location where the transaction is meant to be completed."}},"domain":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"ONDC:FIS13","description":"Describes domain code that is relevant to this transaction context"},"timestamp":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"2023-03-23T04:41:16.000Z","description":"Describes tme of request generation in RFC3339 format"},"bap_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"fis.test.bap.io","description":"Describes subscriber ID of the BAP"},"transaction_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"6743e9e2","description":"Describes a unique value which persists across all API calls"},"message_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"13ba8018f176","description":"Describes a unique value which persists during a request / callback cycle."},"version":{"required":"MANDATORY","type":"integer","owner":"BAP","usage":"2.0.0","description":"Describes the version of transaction protocol being used by the sender."},"action":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"on_init","description":"Describes the Beckn protocol method being called by the sender and executed at the receiver."},"bap_uri":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"https://fis.test.bap.io/","description":"Describes subscriber URL of the BAP for accepting callbacks from BPPs."},"ttl":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"PT30S","description":"Describes the duration in ISO8601 format after timestamp for which this message holds valid"},"bpp_id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"fis.test.bpp.io","description":"Describes subscriber ID of the BPP"},"bpp_uri":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://fis.test.bpp.io/","description":"Describes subscriber URL of the BPP for accepting calls from BAPs."}},"message":{"order":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"5r3e9e2","description":"Describes the order id"},"status":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"ACTIVE","description":"Describes the order status"},"items":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"1r3e9e2","description":"Describes unique id of item"},"quantity":{"selected":{"count":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":1,"description":"Describes the selected count"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the items selected count"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the item quantity."}},"descriptor":{"name":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"Adult-Ticket Culture & Heritage Item","description":"Describes name of item"},"code":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"ENTRY_PASS","description":"Describes code of item"},"short_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Ticket for Qutab Minar","description":"Describes short_desc of item"},"long_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"This ticket grants entry to the Qutab Minar.","description":"Describes long_desc of item"},"images":{"url":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","description":"Describes images url for item"},"size_type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"xs","description":"Describes images type for item"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes images item"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the item descriptor"}},"location_ids":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"13r3e9e2","description":"Describes lcoation id"},"category_ids":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"c3r3e9e2","description":"Describes category id"},"price":{"value":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":350,"description":"Describes price value"},"currency":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":350,"description":"Describes price currency"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes price value"}},"time":{"label":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"VALIDITY","description":"Describes time label"},"duration":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"P2D","description":"Describes time duration"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes time label"}},"fulfillment_ids":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"cs3r3e9e2","description":"Describes fulfillments id assoicated to an item."},"add_ons":{"descriptor":{"name":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Audio Assistance","description":"Describes add_ons name."},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes add_ons descriptor."}},"price":{"value":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":100,"description":"Describes add_ons price value."},"currency":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"INR","description":"Describes add_ons price currency."},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes add_ons price value."}},"id":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"2r3e9e2","description":"Describes the add_ons id"},"quantity":{"selected":{"count":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":2,"description":"Describes the add_ons selected count"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the add_ons selected count"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the add_ons quantity"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes add_ons."}},"tags":{"FARE_POLICY":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes fair policy tag group","list":{"MIN_AGE":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes min_age tag"},"MAX_AGE":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes max_age tag"},"GENDER":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes gender tag"},"NATIONALITY":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes nationality tag"}}},"INCLUSIONS":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes inclusion tag group"},"EXCLUSIONS":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes exclusion tag group"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP/BPP","usage":"--","description":"This decription refers to the comprehensive list of the products or services selected and obtained within the specified order."}},"fulfillments":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"83r3e9e2","description":"Describes unique id of fulfillment"},"type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"VISIT","description":"Describes type of fulfillment"},"state":{"descriptor":{"code":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"CONFIRMED","description":"Describes the fulfillment state"}}},"stops":{"type":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"START","description":"Describes type of stop"},"instructions":{"additional_desc":{"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/sites/additional-info","description":"Describes additional_desc url"},"content_type":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/plain","description":"Describes additional_desc mime type"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes additional_desc url"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes additional_desc instructin"}},"time":{"timestamp":{"required":"OPTIONAL","type":"string","owner":"BAP/BPP","usage":"2024-06-28T05:00:16.000Z","description":"Describes time for fulfillments"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes time for fulfillments"}},"authorization":{"type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"QR","description":"Describes the authorization type"},"token":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"iVBORw0KGgoAAAANSUhEUg","description":"Describes the authorization token"},"valid_to":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"2024-06-30T05:00:16.000Z","description":"Describes the authorization token valid timestamp"},"status":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"UNCLAIMED","description":"Describes the authorization token status"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the authorization"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes type of stop"}},"agent":{"organization":{"contact":{"phone":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":-9999999908,"description":"Describes organization contact for fulfillments"},"email":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"john.doe@example.com","description":"Describes organization email for fulfillments"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes organization contact for fulfillments"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes organization details for fulfillments"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes organization agent details"}},"vehicle":{"category":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"SITE","description":"Describes vehicle category for fulfillments"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes vehicle category for fulfillments"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes order fulfillment"}},"provider":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"8vr3e9e2","description":"Describes the provider Id"},"descriptor":{"name":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"India tourism","description":"Describes the provider name"},"images":{"url":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://www.abcinsurance.com/content/dam/abc/india/assets/images/header/logo.png","description":"Describes images for provider"},"size_type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"xs","description":"Describes images size type for provider"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes images for provider"}},"short_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Online ticket booking service","description":"Describes short description of the of provider"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the provider name"}},"locations":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"4r3e9e2","description":"Describes provider locations unique id"},"gps":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"28.524596, 77.185577","description":"Describes provider gps locations "},"descriptor":{"name":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"Qutab Minar","description":"Describes provider locations descriptor"},"short_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Seth Sarai, Mehrauli, New Delhi, Delhi.","description":"Describes provider's short description"},"additional_desc":{"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/sites/additional-info","description":"Describes url for additional desc"},"content_type":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/plain","description":"Describes content type for additional desc"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes url for additional desc"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes provider locations descriptor"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes provider locations"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"This describes the complete formulated description of the loan provider whose catalog items have been selected."}},"cancellation_terms":{"external_ref":{"mimetype":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/html","description":"Describes mimetype for cancellation_terms"},"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/beckn/tnc.html","description":"Describes url for cancellation_terms"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes external ref for cancellation_terms"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the cancellation_terms"}},"replacement_terms":{"external_ref":{"mimetype":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/html","description":"Describes mimetype for cancellation_terms"},"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass/beckn/replacement.html","description":"Describes url for cancellation_terms"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes external ref for replacement terms"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes replacement terms"}},"quote":{"breakup":{"title":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"BASE_FARE","description":"Describes breakup title"},"item":{"id":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"1r3e9e2","description":"Describes item id for breakup"},"price":{"value":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":100,"description":"Describes item price value."},"currency":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"INR","description":"Describes item price currency."},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes item price for breakup."}},"quantity":{"selected":{"count":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":2,"description":"Describes the item selected count"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the item selected count"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the item quantity."}},"add_ons":{"id":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"5r3e9e2","description":"Describes add_ons id for breakup"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes item for breakup"}},"price":{"currency":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"INR","description":"Describes item price currency."},"value":{"required":"MANDATORY","type":"string","owner":"BPP","usage":400,"description":"Describes item price currency."},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes breakup price."}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes breakup for quote"}},"price":{"value":{"required":"MANDATORY","type":"string","owner":"BPP","usage":400,"description":"Describes item price currency."},"currency":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"INR","description":"Describes item price currency."},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes quote price."}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes order quote"}},"payments":{"collected_by":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"BAP","description":"Describes the payment collector"},"status":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"NOT-PAID","description":"Describes the payment status"},"type":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"PRE-ORDER","description":"Describes the payment type"},"params":{"amount":{"required":"MANDATORY","type":"string","owner":"BAP","usage":700,"description":"Describes the payment amount"},"currency":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"INR","description":"Describes the payment currency"},"transaction_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"61b4be7e-d85c-456a-99e5-ce3d83b","description":"Describes the payment transaction id"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes the payment params"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes the payments details"}},"tags":{"BAP_TERMS":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes bap terms tag group","list":{"BUYER_FINDER_FEES_PERCENTAGE":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes buyer finder fee percentage"},"BUYER_FINDER_FEES_TYPE":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes buyer finder fee type"},"STATIC_TERMS":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes the static terms"},"SETTLEMENT_BASIS":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes the settlement basis "},"SETTLEMENT_WINDOW":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes the settlement window"}}},"BPP_TERMS":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes bpp terms tag group","list":{"BUYER_FINDER_FEES_PERCENTAGE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes buyer finder fee percentage"},"BUYER_FINDER_FEES_TYPE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes buyer finder fee type"},"STATIC_TERMS":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the static terms"},"MANDATORY_ARBITRATION":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the mandatory arbitration"},"COURT_JURISDICTION":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the court jurisdiction"},"DELAY_INTEREST":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the delay interest"},"SETTLEMENT_AMOUNT":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the settlement amount"},"SETTLEMENT_TYPE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the settlement type"},"SETTLEMENT_BANK_CODE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the settlement bank code"},"SETTLEMENT_BANK_ACCOUNT_NUMBER":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the settlement bank account number"}}}},"billing":{"name":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"john.doe","description":"Describes the billing name"},"email":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"john.doe@example.com","description":"Describes the billing email"},"phone":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":-9897867473,"description":"Describes the billing phone"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the billing details"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP/BPP","usage":"--","description":"This refers to the complete description of the legal contract created between the buyer and the seller."}}}},"status":{"context":{"location":{"country":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"IND","description":"Describes country code as per ISO 3166-1 and ISO 3166-2 format"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the country of location where the transaction is meant to be completed."}},"city":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"*","description":"Describes the city code this location is, or is located within"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the city of location where the transaction is meant to be completed."}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the location where the transaction is meant to be completed."}},"domain":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"ONDC:FIS13","description":"Describes domain code that is relevant to this transaction context"},"timestamp":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"2023-03-23T04:41:16.000Z","description":"Describes tme of request generation in RFC3339 format"},"bap_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"fis.test.bap.io","description":"Describes subscriber ID of the BAP"},"transaction_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"6743e9e2","description":"Describes a unique value which persists across all API calls"},"message_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"13ba8018f176","description":"Describes a unique value which persists during a request / callback cycle."},"version":{"required":"MANDATORY","type":"integer","owner":"BAP","usage":"2.0.0","description":"Describes the version of transaction protocol being used by the sender."},"action":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"status","description":"Describes the Beckn protocol method being called by the sender and executed at the receiver."},"bap_uri":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"https://fis.test.bap.io/","description":"Describes subscriber URL of the BAP for accepting callbacks from BPPs."},"ttl":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"PT30S","description":"Describes the duration in ISO8601 format after timestamp for which this message holds valid"},"bpp_id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"fis.test.bpp.io","description":"Describes subscriber ID of the BPP"},"bpp_uri":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://fis.test.bpp.io/","description":"Describes subscriber URL of the BPP for accepting calls from BAPs."}},"message":{"order_id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"5r3e9e2","description":"Describes the order id"}}},"on_status":{"context":{"location":{"country":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"IND","description":"Describes country code as per ISO 3166-1 and ISO 3166-2 format"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the country of location where the transaction is meant to be completed."}},"city":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"*","description":"Describes the city code this location is, or is located within"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the city of location where the transaction is meant to be completed."}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the location where the transaction is meant to be completed."}},"domain":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"ONDC:FIS13","description":"Describes domain code that is relevant to this transaction context"},"timestamp":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"2023-03-23T04:41:16.000Z","description":"Describes tme of request generation in RFC3339 format"},"bap_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"fis.test.bap.io","description":"Describes subscriber ID of the BAP"},"transaction_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"6743e9e2","description":"Describes a unique value which persists across all API calls"},"message_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"13ba8018f176","description":"Describes a unique value which persists during a request / callback cycle."},"version":{"required":"MANDATORY","type":"integer","owner":"BAP","usage":"2.0.0","description":"Describes the version of transaction protocol being used by the sender."},"action":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"on_init","description":"Describes the Beckn protocol method being called by the sender and executed at the receiver."},"bap_uri":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"https://fis.test.bap.io/","description":"Describes subscriber URL of the BAP for accepting callbacks from BPPs."},"ttl":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"PT30S","description":"Describes the duration in ISO8601 format after timestamp for which this message holds valid"},"bpp_id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"fis.test.bpp.io","description":"Describes subscriber ID of the BPP"},"bpp_uri":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://fis.test.bpp.io/","description":"Describes subscriber URL of the BPP for accepting calls from BAPs."}},"message":{"order":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"5r3e9e2","description":"Describes the order id"},"status":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"ACTIVE","description":"Describes the order status"},"items":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"1r3e9e2","description":"Describes unique id of item"},"quantity":{"selected":{"count":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":1,"description":"Describes the selected count"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the items selected count"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the item quantity."}},"descriptor":{"name":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"Adult-Ticket Culture & Heritage Item","description":"Describes name of item"},"code":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"ENTRY_PASS","description":"Describes code of item"},"short_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Ticket for Qutab Minar","description":"Describes short_desc of item"},"long_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"This ticket grants entry to the Qutab Minar.","description":"Describes long_desc of item"},"images":{"url":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","description":"Describes images url for item"},"size_type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"xs","description":"Describes images type for item"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes images item"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the item descriptor"}},"location_ids":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"13r3e9e2","description":"Describes lcoation id"},"category_ids":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"c3r3e9e2","description":"Describes category id"},"price":{"value":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":350,"description":"Describes price value"},"currency":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":350,"description":"Describes price currency"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes price value"}},"time":{"label":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"VALIDITY","description":"Describes time label"},"duration":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"P2D","description":"Describes time duration"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes time label"}},"fulfillment_ids":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"cs3r3e9e2","description":"Describes fulfillments id assoicated to an item."},"add_ons":{"descriptor":{"name":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Audio Assistance","description":"Describes add_ons name."},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes add_ons descriptor."}},"price":{"value":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":100,"description":"Describes add_ons price value."},"currency":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"INR","description":"Describes add_ons price currency."},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes add_ons price value."}},"id":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"2r3e9e2","description":"Describes the add_ons id"},"quantity":{"selected":{"count":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":2,"description":"Describes the add_ons selected count"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the add_ons selected count"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the add_ons quantity"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes add_ons."}},"tags":{"FARE_POLICY":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes fair policy tag group","list":{"MIN_AGE":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes min_age tag"},"MAX_AGE":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes max_age tag"},"GENDER":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes gender tag"},"NATIONALITY":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes nationality tag"}}},"INCLUSIONS":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes inclusion tag group"},"EXCLUSIONS":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes exclusion tag group"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP/BPP","usage":"--","description":"This decription refers to the comprehensive list of the products or services selected and obtained within the specified order."}},"fulfillments":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"83r3e9e2","description":"Describes unique id of fulfillment"},"type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"VISIT","description":"Describes type of fulfillment"},"state":{"descriptor":{"code":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"CONFIRMED","description":"Describes the fulfillment state"}}},"stops":{"type":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"START","description":"Describes type of stop"},"instructions":{"additional_desc":{"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/sites/additional-info","description":"Describes additional_desc url"},"content_type":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/plain","description":"Describes additional_desc mime type"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes additional_desc url"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes additional_desc instructin"}},"time":{"timestamp":{"required":"OPTIONAL","type":"string","owner":"BAP/BPP","usage":"2024-06-28T05:00:16.000Z","description":"Describes time for fulfillments"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes time for fulfillments"}},"authorization":{"type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"QR","description":"Describes the authorization type"},"token":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"iVBORw0KGgoAAAANSUhEUg","description":"Describes the authorization token"},"valid_to":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"2024-06-30T05:00:16.000Z","description":"Describes the authorization token valid timestamp"},"status":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"UNCLAIMED","description":"Describes the authorization token status"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the authorization"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes type of stop"}},"agent":{"organization":{"contact":{"phone":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":-9999999908,"description":"Describes organization contact for fulfillments"},"email":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"john.doe@example.com","description":"Describes organization email for fulfillments"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes organization contact for fulfillments"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes organization details for fulfillments"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes organization agent details"}},"vehicle":{"category":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"SITE","description":"Describes vehicle category for fulfillments"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes vehicle category for fulfillments"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes order fulfillment"}},"provider":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"8vr3e9e2","description":"Describes the provider Id"},"descriptor":{"name":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"India tourism","description":"Describes the provider name"},"images":{"url":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://www.abcinsurance.com/content/dam/abc/india/assets/images/header/logo.png","description":"Describes images for provider"},"size_type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"xs","description":"Describes images size type for provider"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes images for provider"}},"short_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Online ticket booking service","description":"Describes short description of the of provider"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the provider name"}},"locations":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"4r3e9e2","description":"Describes provider locations unique id"},"gps":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"28.524596, 77.185577","description":"Describes provider gps locations "},"descriptor":{"name":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"Qutab Minar","description":"Describes provider locations descriptor"},"short_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Seth Sarai, Mehrauli, New Delhi, Delhi.","description":"Describes provider's short description"},"additional_desc":{"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/sites/additional-info","description":"Describes url for additional desc"},"content_type":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/plain","description":"Describes content type for additional desc"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes url for additional desc"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes provider locations descriptor"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes provider locations"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"This describes the complete formulated description of the loan provider whose catalog items have been selected."}},"cancellation_terms":{"external_ref":{"mimetype":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/html","description":"Describes mimetype for cancellation_terms"},"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/beckn/tnc.html","description":"Describes url for cancellation_terms"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes external ref for cancellation_terms"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the cancellation_terms"}},"replacement_terms":{"external_ref":{"mimetype":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/html","description":"Describes mimetype for cancellation_terms"},"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass/beckn/replacement.html","description":"Describes url for cancellation_terms"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes external ref for replacement terms"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes replacement terms"}},"quote":{"breakup":{"title":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"BASE_FARE","description":"Describes breakup title"},"item":{"id":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"1r3e9e2","description":"Describes item id for breakup"},"price":{"value":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":100,"description":"Describes item price value."},"currency":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"INR","description":"Describes item price currency."},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes item price for breakup."}},"quantity":{"selected":{"count":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":2,"description":"Describes the item selected count"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the item selected count"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the item quantity."}},"add_ons":{"id":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"5r3e9e2","description":"Describes add_ons id for breakup"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes item for breakup"}},"price":{"currency":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"INR","description":"Describes item price currency."},"value":{"required":"MANDATORY","type":"string","owner":"BPP","usage":400,"description":"Describes item price currency."},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes breakup price."}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes breakup for quote"}},"price":{"value":{"required":"MANDATORY","type":"string","owner":"BPP","usage":400,"description":"Describes item price currency."},"currency":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"INR","description":"Describes item price currency."},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes quote price."}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes order quote"}},"payments":{"collected_by":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"BAP","description":"Describes the payment collector"},"status":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"NOT-PAID","description":"Describes the payment status"},"type":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"PRE-ORDER","description":"Describes the payment type"},"params":{"amount":{"required":"MANDATORY","type":"string","owner":"BAP","usage":700,"description":"Describes the payment amount"},"currency":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"INR","description":"Describes the payment currency"},"transaction_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"61b4be7e-d85c-456a-99e5-ce3d83b","description":"Describes the payment transaction id"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes the payment params"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes the payments details"}},"tags":{"BAP_TERMS":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes bap terms tag group","list":{"BUYER_FINDER_FEES_PERCENTAGE":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes buyer finder fee percentage"},"BUYER_FINDER_FEES_TYPE":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes buyer finder fee type"},"STATIC_TERMS":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes the static terms"},"SETTLEMENT_BASIS":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes the settlement basis "},"SETTLEMENT_WINDOW":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes the settlement window"}}},"BPP_TERMS":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes bpp terms tag group","list":{"BUYER_FINDER_FEES_PERCENTAGE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes buyer finder fee percentage"},"BUYER_FINDER_FEES_TYPE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes buyer finder fee type"},"STATIC_TERMS":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the static terms"},"MANDATORY_ARBITRATION":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the mandatory arbitration"},"COURT_JURISDICTION":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the court jurisdiction"},"DELAY_INTEREST":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the delay interest"},"SETTLEMENT_AMOUNT":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the settlement amount"},"SETTLEMENT_TYPE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the settlement type"},"SETTLEMENT_BANK_CODE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the settlement bank code"},"SETTLEMENT_BANK_ACCOUNT_NUMBER":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the settlement bank account number"}}}},"billing":{"name":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"john.doe","description":"Describes the billing name"},"email":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"john.doe@example.com","description":"Describes the billing email"},"phone":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":-9897867473,"description":"Describes the billing phone"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the billing details"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP/BPP","usage":"--","description":"This refers to the complete description of the legal contract created between the buyer and the seller."}}}},"update":{"context":{"location":{"country":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"IND","description":"Describes country code as per ISO 3166-1 and ISO 3166-2 format"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the country of location where the transaction is meant to be completed."}},"city":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"*","description":"Describes the city code this location is, or is located within"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the city of location where the transaction is meant to be completed."}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the location where the transaction is meant to be completed."}},"domain":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"ONDC:FIS13","description":"Describes domain code that is relevant to this transaction context"},"timestamp":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"2023-03-23T04:41:16.000Z","description":"Describes tme of request generation in RFC3339 format"},"bap_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"fis.test.bap.io","description":"Describes subscriber ID of the BAP"},"transaction_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"6743e9e2","description":"Describes a unique value which persists across all API calls"},"message_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"13ba8018f176","description":"Describes a unique value which persists during a request / callback cycle."},"version":{"required":"MANDATORY","type":"integer","owner":"BAP","usage":"2.0.0","description":"Describes the version of transaction protocol being used by the sender."},"action":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"update","description":"Describes the Beckn protocol method being called by the sender and executed at the receiver."},"bap_uri":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"https://fis.test.bap.io/","description":"Describes subscriber URL of the BAP for accepting callbacks from BPPs."},"ttl":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"PT30S","description":"Describes the duration in ISO8601 format after timestamp for which this message holds valid"},"bpp_id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"fis.test.bpp.io","description":"Describes subscriber ID of the BPP"},"bpp_uri":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://fis.test.bpp.io/","description":"Describes subscriber URL of the BPP for accepting calls from BAPs."}},"message":{"update_target":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"order.items","description":"Describes the update target"},"order":{"cancellation":{"reason":{"id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"00","description":"Describes the reason id"},"descriptor":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"SOFT_CANCEL","description":"Describes the code for cancellation"}}}},"items":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"I2","description":"Describes the item id"},"quantity":{"selected":{"count":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"1","description":"Describes the quantity count"}}}}}}},"on_update":{"context":{"location":{"country":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"IND","description":"Describes country code as per ISO 3166-1 and ISO 3166-2 format"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the country of location where the transaction is meant to be completed."}},"city":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"*","description":"Describes the city code this location is, or is located within"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the city of location where the transaction is meant to be completed."}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the location where the transaction is meant to be completed."}},"domain":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"ONDC:FIS13","description":"Describes domain code that is relevant to this transaction context"},"timestamp":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"2023-03-23T04:41:16.000Z","description":"Describes tme of request generation in RFC3339 format"},"bap_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"fis.test.bap.io","description":"Describes subscriber ID of the BAP"},"transaction_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"6743e9e2","description":"Describes a unique value which persists across all API calls"},"message_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"13ba8018f176","description":"Describes a unique value which persists during a request / callback cycle."},"version":{"required":"MANDATORY","type":"integer","owner":"BAP","usage":"2.0.0","description":"Describes the version of transaction protocol being used by the sender."},"action":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"on_update","description":"Describes the Beckn protocol method being called by the sender and executed at the receiver."},"bap_uri":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"https://fis.test.bap.io/","description":"Describes subscriber URL of the BAP for accepting callbacks from BPPs."},"ttl":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"PT30S","description":"Describes the duration in ISO8601 format after timestamp for which this message holds valid"},"bpp_id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"fis.test.bpp.io","description":"Describes subscriber ID of the BPP"},"bpp_uri":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://fis.test.bpp.io/","description":"Describes subscriber URL of the BPP for accepting calls from BAPs."}},"message":{"order":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"5r3e9e2","description":"Describes the order id"},"status":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"ACTIVE","description":"Describes the order status"},"items":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"1r3e9e2","description":"Describes unique id of item"},"quantity":{"selected":{"count":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":1,"description":"Describes the selected count"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the items selected count"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the item quantity."}},"descriptor":{"name":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"Adult-Ticket Culture & Heritage Item","description":"Describes name of item"},"code":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"ENTRY_PASS","description":"Describes code of item"},"short_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Ticket for Qutab Minar","description":"Describes short_desc of item"},"long_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"This ticket grants entry to the Qutab Minar.","description":"Describes long_desc of item"},"images":{"url":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","description":"Describes images url for item"},"size_type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"xs","description":"Describes images type for item"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes images item"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the item descriptor"}},"location_ids":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"13r3e9e2","description":"Describes lcoation id"},"category_ids":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"c3r3e9e2","description":"Describes category id"},"price":{"value":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":350,"description":"Describes price value"},"currency":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":350,"description":"Describes price currency"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes price value"}},"time":{"label":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"VALIDITY","description":"Describes time label"},"duration":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"P2D","description":"Describes time duration"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes time label"}},"fulfillment_ids":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"cs3r3e9e2","description":"Describes fulfillments id assoicated to an item."},"add_ons":{"descriptor":{"name":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Audio Assistance","description":"Describes add_ons name."},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes add_ons descriptor."}},"price":{"value":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":100,"description":"Describes add_ons price value."},"currency":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"INR","description":"Describes add_ons price currency."},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes add_ons price value."}},"id":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"2r3e9e2","description":"Describes the add_ons id"},"quantity":{"selected":{"count":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":2,"description":"Describes the add_ons selected count"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the add_ons selected count"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the add_ons quantity"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes add_ons."}},"tags":{"FARE_POLICY":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes fair policy tag group","list":{"MIN_AGE":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes min_age tag"},"MAX_AGE":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes max_age tag"},"GENDER":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes gender tag"},"NATIONALITY":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes nationality tag"}}},"INCLUSIONS":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes inclusion tag group"},"EXCLUSIONS":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes exclusion tag group"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP/BPP","usage":"--","description":"This decription refers to the comprehensive list of the products or services selected and obtained within the specified order."}},"fulfillments":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"83r3e9e2","description":"Describes unique id of fulfillment"},"type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"VISIT","description":"Describes type of fulfillment"},"state":{"descriptor":{"code":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"CONFIRMED","description":"Describes the fulfillment state"}}},"stops":{"type":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"START","description":"Describes type of stop"},"instructions":{"additional_desc":{"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/sites/additional-info","description":"Describes additional_desc url"},"content_type":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/plain","description":"Describes additional_desc mime type"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes additional_desc url"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes additional_desc instructin"}},"time":{"timestamp":{"required":"OPTIONAL","type":"string","owner":"BAP/BPP","usage":"2024-06-28T05:00:16.000Z","description":"Describes time for fulfillments"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes time for fulfillments"}},"authorization":{"type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"QR","description":"Describes the authorization type"},"token":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"iVBORw0KGgoAAAANSUhEUg","description":"Describes the authorization token"},"valid_to":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"2024-06-30T05:00:16.000Z","description":"Describes the authorization token valid timestamp"},"status":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"UNCLAIMED","description":"Describes the authorization token status"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the authorization"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes type of stop"}},"agent":{"organization":{"contact":{"phone":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":-9999999908,"description":"Describes organization contact for fulfillments"},"email":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"john.doe@example.com","description":"Describes organization email for fulfillments"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes organization contact for fulfillments"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes organization details for fulfillments"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes organization agent details"}},"vehicle":{"category":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"SITE","description":"Describes vehicle category for fulfillments"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes vehicle category for fulfillments"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes order fulfillment"}},"provider":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"8vr3e9e2","description":"Describes the provider Id"},"descriptor":{"name":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"India tourism","description":"Describes the provider name"},"images":{"url":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://www.abcinsurance.com/content/dam/abc/india/assets/images/header/logo.png","description":"Describes images for provider"},"size_type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"xs","description":"Describes images size type for provider"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes images for provider"}},"short_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Online ticket booking service","description":"Describes short description of the of provider"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the provider name"}},"locations":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"4r3e9e2","description":"Describes provider locations unique id"},"gps":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"28.524596, 77.185577","description":"Describes provider gps locations "},"descriptor":{"name":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"Qutab Minar","description":"Describes provider locations descriptor"},"short_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Seth Sarai, Mehrauli, New Delhi, Delhi.","description":"Describes provider's short description"},"additional_desc":{"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/sites/additional-info","description":"Describes url for additional desc"},"content_type":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/plain","description":"Describes content type for additional desc"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes url for additional desc"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes provider locations descriptor"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes provider locations"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"This describes the complete formulated description of the loan provider whose catalog items have been selected."}},"cancellation_terms":{"external_ref":{"mimetype":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/html","description":"Describes mimetype for cancellation_terms"},"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/beckn/tnc.html","description":"Describes url for cancellation_terms"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes external ref for cancellation_terms"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the cancellation_terms"}},"replacement_terms":{"external_ref":{"mimetype":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/html","description":"Describes mimetype for cancellation_terms"},"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass/beckn/replacement.html","description":"Describes url for cancellation_terms"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes external ref for replacement terms"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes replacement terms"}},"quote":{"breakup":{"title":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"BASE_FARE","description":"Describes breakup title"},"item":{"id":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"1r3e9e2","description":"Describes item id for breakup"},"price":{"value":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":100,"description":"Describes item price value."},"currency":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"INR","description":"Describes item price currency."},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes item price for breakup."}},"quantity":{"selected":{"count":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":2,"description":"Describes the item selected count"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the item selected count"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the item quantity."}},"add_ons":{"id":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"5r3e9e2","description":"Describes add_ons id for breakup"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes item for breakup"}},"price":{"currency":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"INR","description":"Describes item price currency."},"value":{"required":"MANDATORY","type":"string","owner":"BPP","usage":400,"description":"Describes item price currency."},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes breakup price."}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes breakup for quote"}},"price":{"value":{"required":"MANDATORY","type":"string","owner":"BPP","usage":400,"description":"Describes item price currency."},"currency":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"INR","description":"Describes item price currency."},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes quote price."}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes order quote"}},"payments":{"collected_by":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"BAP","description":"Describes the payment collector"},"status":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"NOT-PAID","description":"Describes the payment status"},"type":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"PRE-ORDER","description":"Describes the payment type"},"params":{"amount":{"required":"MANDATORY","type":"string","owner":"BAP","usage":700,"description":"Describes the payment amount"},"currency":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"INR","description":"Describes the payment currency"},"transaction_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"61b4be7e-d85c-456a-99e5-ce3d83b","description":"Describes the payment transaction id"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes the payment params"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes the payments details"}},"tags":{"BAP_TERMS":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes bap terms tag group","list":{"BUYER_FINDER_FEES_PERCENTAGE":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes buyer finder fee percentage"},"BUYER_FINDER_FEES_TYPE":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes buyer finder fee type"},"STATIC_TERMS":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes the static terms"},"SETTLEMENT_BASIS":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes the settlement basis "},"SETTLEMENT_WINDOW":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes the settlement window"}}},"BPP_TERMS":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes bpp terms tag group","list":{"BUYER_FINDER_FEES_PERCENTAGE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes buyer finder fee percentage"},"BUYER_FINDER_FEES_TYPE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes buyer finder fee type"},"STATIC_TERMS":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the static terms"},"MANDATORY_ARBITRATION":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the mandatory arbitration"},"COURT_JURISDICTION":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the court jurisdiction"},"DELAY_INTEREST":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the delay interest"},"SETTLEMENT_AMOUNT":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the settlement amount"},"SETTLEMENT_TYPE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the settlement type"},"SETTLEMENT_BANK_CODE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the settlement bank code"},"SETTLEMENT_BANK_ACCOUNT_NUMBER":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the settlement bank account number"}}}},"billing":{"name":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"john.doe","description":"Describes the billing name"},"email":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"john.doe@example.com","description":"Describes the billing email"},"phone":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":-9897867473,"description":"Describes the billing phone"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the billing details"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP/BPP","usage":"--","description":"This refers to the complete description of the legal contract created between the buyer and the seller."}}}},"cancel":{"context":{"location":{"country":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"IND","description":"Describes country code as per ISO 3166-1 and ISO 3166-2 format"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the country of location where the transaction is meant to be completed."}},"city":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"*","description":"Describes the city code this location is, or is located within"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the city of location where the transaction is meant to be completed."}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the location where the transaction is meant to be completed."}},"domain":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"ONDC:FIS13","description":"Describes domain code that is relevant to this transaction context"},"timestamp":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"2023-03-23T04:41:16.000Z","description":"Describes tme of request generation in RFC3339 format"},"bap_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"fis.test.bap.io","description":"Describes subscriber ID of the BAP"},"transaction_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"6743e9e2","description":"Describes a unique value which persists across all API calls"},"message_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"13ba8018f176","description":"Describes a unique value which persists during a request / callback cycle."},"version":{"required":"MANDATORY","type":"integer","owner":"BAP","usage":"2.0.0","description":"Describes the version of transaction protocol being used by the sender."},"action":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"cancel","description":"Describes the Beckn protocol method being called by the sender and executed at the receiver."},"bap_uri":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"https://fis.test.bap.io/","description":"Describes subscriber URL of the BAP for accepting callbacks from BPPs."},"ttl":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"PT30S","description":"Describes the duration in ISO8601 format after timestamp for which this message holds valid"},"bpp_id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"fis.test.bpp.io","description":"Describes subscriber ID of the BPP"},"bpp_uri":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://fis.test.bpp.io/","description":"Describes subscriber URL of the BPP for accepting calls from BAPs."}},"message":{"order_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"O1","description":"Descibes the order id."},"cancellation_reason_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"O1","description":"Descibes the cancellation reason id."},"descriptor":{"name":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"O1","description":"Descibes the descriptor name."},"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"O1","description":"Descibes the descriptor name."}}}},"on_cancel":{"context":{"location":{"country":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"IND","description":"Describes country code as per ISO 3166-1 and ISO 3166-2 format"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the country of location where the transaction is meant to be completed."}},"city":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"*","description":"Describes the city code this location is, or is located within"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the city of location where the transaction is meant to be completed."}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the location where the transaction is meant to be completed."}},"domain":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"ONDC:FIS13","description":"Describes domain code that is relevant to this transaction context"},"timestamp":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"2023-03-23T04:41:16.000Z","description":"Describes tme of request generation in RFC3339 format"},"bap_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"fis.test.bap.io","description":"Describes subscriber ID of the BAP"},"transaction_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"6743e9e2","description":"Describes a unique value which persists across all API calls"},"message_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"13ba8018f176","description":"Describes a unique value which persists during a request / callback cycle."},"version":{"required":"MANDATORY","type":"integer","owner":"BAP","usage":"2.0.0","description":"Describes the version of transaction protocol being used by the sender."},"action":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"on_cancel","description":"Describes the Beckn protocol method being called by the sender and executed at the receiver."},"bap_uri":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"https://fis.test.bap.io/","description":"Describes subscriber URL of the BAP for accepting callbacks from BPPs."},"ttl":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"PT30S","description":"Describes the duration in ISO8601 format after timestamp for which this message holds valid"},"bpp_id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"fis.test.bpp.io","description":"Describes subscriber ID of the BPP"},"bpp_uri":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://fis.test.bpp.io/","description":"Describes subscriber URL of the BPP for accepting calls from BAPs."}},"message":{"order":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"5r3e9e2","description":"Describes the order id"},"status":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"ACTIVE","description":"Describes the order status"},"items":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"1r3e9e2","description":"Describes unique id of item"},"quantity":{"selected":{"count":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":1,"description":"Describes the selected count"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the items selected count"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the item quantity."}},"descriptor":{"name":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"Adult-Ticket Culture & Heritage Item","description":"Describes name of item"},"code":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"ENTRY_PASS","description":"Describes code of item"},"short_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Ticket for Qutab Minar","description":"Describes short_desc of item"},"long_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"This ticket grants entry to the Qutab Minar.","description":"Describes long_desc of item"},"images":{"url":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","description":"Describes images url for item"},"size_type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"xs","description":"Describes images type for item"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes images item"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the item descriptor"}},"location_ids":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"13r3e9e2","description":"Describes lcoation id"},"category_ids":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"c3r3e9e2","description":"Describes category id"},"price":{"value":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":350,"description":"Describes price value"},"currency":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":350,"description":"Describes price currency"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes price value"}},"time":{"label":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"VALIDITY","description":"Describes time label"},"duration":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"P2D","description":"Describes time duration"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes time label"}},"fulfillment_ids":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"cs3r3e9e2","description":"Describes fulfillments id assoicated to an item."},"add_ons":{"descriptor":{"name":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Audio Assistance","description":"Describes add_ons name."},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes add_ons descriptor."}},"price":{"value":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":100,"description":"Describes add_ons price value."},"currency":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"INR","description":"Describes add_ons price currency."},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes add_ons price value."}},"id":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"2r3e9e2","description":"Describes the add_ons id"},"quantity":{"selected":{"count":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":2,"description":"Describes the add_ons selected count"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the add_ons selected count"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the add_ons quantity"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes add_ons."}},"tags":{"FARE_POLICY":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes fair policy tag group","list":{"MIN_AGE":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes min_age tag"},"MAX_AGE":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes max_age tag"},"GENDER":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes gender tag"},"NATIONALITY":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes nationality tag"}}},"INCLUSIONS":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes inclusion tag group"},"EXCLUSIONS":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes exclusion tag group"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP/BPP","usage":"--","description":"This decription refers to the comprehensive list of the products or services selected and obtained within the specified order."}},"fulfillments":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"83r3e9e2","description":"Describes unique id of fulfillment"},"type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"VISIT","description":"Describes type of fulfillment"},"state":{"descriptor":{"code":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"CONFIRMED","description":"Describes the fulfillment state"}}},"stops":{"type":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"START","description":"Describes type of stop"},"instructions":{"additional_desc":{"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/sites/additional-info","description":"Describes additional_desc url"},"content_type":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/plain","description":"Describes additional_desc mime type"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes additional_desc url"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes additional_desc instructin"}},"time":{"timestamp":{"required":"OPTIONAL","type":"string","owner":"BAP/BPP","usage":"2024-06-28T05:00:16.000Z","description":"Describes time for fulfillments"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes time for fulfillments"}},"authorization":{"type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"QR","description":"Describes the authorization type"},"token":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"iVBORw0KGgoAAAANSUhEUg","description":"Describes the authorization token"},"valid_to":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"2024-06-30T05:00:16.000Z","description":"Describes the authorization token valid timestamp"},"status":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"UNCLAIMED","description":"Describes the authorization token status"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the authorization"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes type of stop"}},"agent":{"organization":{"contact":{"phone":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":-9999999908,"description":"Describes organization contact for fulfillments"},"email":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"john.doe@example.com","description":"Describes organization email for fulfillments"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes organization contact for fulfillments"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes organization details for fulfillments"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes organization agent details"}},"vehicle":{"category":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"SITE","description":"Describes vehicle category for fulfillments"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes vehicle category for fulfillments"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes order fulfillment"}},"provider":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"8vr3e9e2","description":"Describes the provider Id"},"descriptor":{"name":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"India tourism","description":"Describes the provider name"},"images":{"url":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://www.abcinsurance.com/content/dam/abc/india/assets/images/header/logo.png","description":"Describes images for provider"},"size_type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"xs","description":"Describes images size type for provider"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes images for provider"}},"short_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Online ticket booking service","description":"Describes short description of the of provider"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the provider name"}},"locations":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"4r3e9e2","description":"Describes provider locations unique id"},"gps":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"28.524596, 77.185577","description":"Describes provider gps locations "},"descriptor":{"name":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"Qutab Minar","description":"Describes provider locations descriptor"},"short_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Seth Sarai, Mehrauli, New Delhi, Delhi.","description":"Describes provider's short description"},"additional_desc":{"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/sites/additional-info","description":"Describes url for additional desc"},"content_type":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/plain","description":"Describes content type for additional desc"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes url for additional desc"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes provider locations descriptor"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes provider locations"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"This describes the complete formulated description of the loan provider whose catalog items have been selected."}},"cancellation_terms":{"external_ref":{"mimetype":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/html","description":"Describes mimetype for cancellation_terms"},"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/beckn/tnc.html","description":"Describes url for cancellation_terms"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes external ref for cancellation_terms"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the cancellation_terms"}},"replacement_terms":{"external_ref":{"mimetype":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/html","description":"Describes mimetype for cancellation_terms"},"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass/beckn/replacement.html","description":"Describes url for cancellation_terms"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes external ref for replacement terms"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes replacement terms"}},"quote":{"breakup":{"title":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"BASE_FARE","description":"Describes breakup title"},"item":{"id":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"1r3e9e2","description":"Describes item id for breakup"},"price":{"value":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":100,"description":"Describes item price value."},"currency":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"INR","description":"Describes item price currency."},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes item price for breakup."}},"quantity":{"selected":{"count":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":2,"description":"Describes the item selected count"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the item selected count"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the item quantity."}},"add_ons":{"id":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"5r3e9e2","description":"Describes add_ons id for breakup"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes item for breakup"}},"price":{"currency":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"INR","description":"Describes item price currency."},"value":{"required":"MANDATORY","type":"string","owner":"BPP","usage":400,"description":"Describes item price currency."},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes breakup price."}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes breakup for quote"}},"price":{"value":{"required":"MANDATORY","type":"string","owner":"BPP","usage":400,"description":"Describes item price currency."},"currency":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"INR","description":"Describes item price currency."},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes quote price."}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes order quote"}},"payments":{"collected_by":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"BAP","description":"Describes the payment collector"},"status":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"NOT-PAID","description":"Describes the payment status"},"type":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"PRE-ORDER","description":"Describes the payment type"},"params":{"amount":{"required":"MANDATORY","type":"string","owner":"BAP","usage":700,"description":"Describes the payment amount"},"currency":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"INR","description":"Describes the payment currency"},"transaction_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"61b4be7e-d85c-456a-99e5-ce3d83b","description":"Describes the payment transaction id"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes the payment params"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes the payments details"}},"tags":{"BAP_TERMS":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes bap terms tag group","list":{"BUYER_FINDER_FEES_PERCENTAGE":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes buyer finder fee percentage"},"BUYER_FINDER_FEES_TYPE":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes buyer finder fee type"},"STATIC_TERMS":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes the static terms"},"SETTLEMENT_BASIS":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes the settlement basis "},"SETTLEMENT_WINDOW":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes the settlement window"}}},"BPP_TERMS":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes bpp terms tag group","list":{"BUYER_FINDER_FEES_PERCENTAGE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes buyer finder fee percentage"},"BUYER_FINDER_FEES_TYPE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes buyer finder fee type"},"STATIC_TERMS":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the static terms"},"MANDATORY_ARBITRATION":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the mandatory arbitration"},"COURT_JURISDICTION":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the court jurisdiction"},"DELAY_INTEREST":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the delay interest"},"SETTLEMENT_AMOUNT":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the settlement amount"},"SETTLEMENT_TYPE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the settlement type"},"SETTLEMENT_BANK_CODE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the settlement bank code"},"SETTLEMENT_BANK_ACCOUNT_NUMBER":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the settlement bank account number"}}}},"billing":{"name":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"john.doe","description":"Describes the billing name"},"email":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"john.doe@example.com","description":"Describes the billing email"},"phone":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":-9897867473,"description":"Describes the billing phone"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the billing details"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP/BPP","usage":"--","description":"This refers to the complete description of the legal contract created between the buyer and the seller."}}}}}}},"x-tlc":{"code":[{"Term":"Buyer App Fee","Api":"search/on_search/init/on_init","Attribute":"BUYER_FINDER_FEE_TYPE","Owner":"Buyer App","Value":"“amount”, “percent”","Description":"If set to “amount” it means Buyer App’s fee is a flat amount in INR.\nIf set to “percent” it means the Buyer App’s fee is set as a percentage of the total fare value."},{"Api":"search/on_search/init/on_init","Attribute":"BUYER_FINDER_FEE_AMOUNT\nBUYER_FINDER_FEE_PERCENTAGE","Owner":"Buyer App","Value":"Positive Decimal Number","Description":"Quantum of the Buyer App’s Fee. To be interpreted in connection with the “type” field mentioned above.\nFor example, let’s assume the value is set at “5”. If the “type” is set to “Amount”, that means the Buyer App Fee is INR 5. If the “type” is set to “percent”, it means the Buyer App Fee is 5% of the Total Order Value."},{"Term":"Payment Collector","Api":"search/on_search/init/on_init","Attribute":"payment.collected_by","Owner":"Either","Value":"“BAP”, “BPP”","Description":"If set to “BAP”, it means that the Buyer App will collect payment from the Buyer.\nIf set to “BPP”, it means that the Seller App will collect payment from the Buyer."},{"Term":"Payment Type","Api":"init/on_init","Attribute":"payment.type","Owner":"Either","Value":"“ON-ORDER”","Description":"How payment is going to be collected from the Buyer. If this parameter is set to “ON-ORDER”, that means it is a pre-paid order, i.e. the payment is collected at the time of order confirmation."},{"Term":"Settlement Basis","Api":"search/on_search/init/on_init","Attribute":"SETTLEMENT_BASIS","Owner":"Seller App","Value":"\"INVOICE_RECEIPT\", “delivery”","Description":"The event that will trigger settlement from the Payment Collector to counterparty Network Participant(s).\nExample:\nUpon confirmation of order delivery, then set this to “delivery”\n\nUpon receipt of an invoice from the counterparty, then this to “invoice_receipt”"},{"Term":"Settlement Window","Api":"search/on_search/init/on_init","Attribute":"SETTLEMENT_WINDOW","Owner":"Either","Value":"Time period\n(ISO8601 format)","Description":"The time period from completion of the Settlement Basis within which the Payment Collector will settle with counterparty Network Participant(s). As an example, if the Settlement Basis is set as “delivery” and the Settlement Window is set to 7 days, and the Seller App collects the payment, it means the Seller App will remit funds to the Buyer App on or before the completion of the 7th day after delivery,\nISO8601 duration notation is used to specify the value of the parameter. As an illustration, a Settlement Window of 5 days after delivery can be specified as “P5D” (i.e. period 5 days) or “PT120H” (i.e. period 120 hours)."},{"Term":"Settlement Amount","Api":"init/on_init","Attribute":"SETTLEMENT_AMOUNT","Owner":"Either","Value":"Positive Decimal Number","Description":"The amount that the Payment Collector will remit to the counterparty Network Participant for the instant transaction.\nFor clarity, if the Buyer App is the Payment Collector, the Buyer App will deduct their fee and remit the balance to the Seller App. If the Seller App is the Payment Collector, they will remit the Buyer App’s fees, deduct its own charges/commission."},{"Term":"Settlement Type","Api":"search/on_search/init/on_init","Attribute":"SETTLEMENT_TYPE","Owner":"Either","Value":"“neft”, “rtgs”, “upi”","Description":"The Payment Collector will use the selected method to remit the due payment to the counterparty Network Participant. To illustrate, if the Buyer App collects the payment and the Settlement Type is set to “rtgs”, when the settlement is due, the Buyer App will transfer the Seller App’s share of the Buyer Price to the Seller App’s account via RTGS."},{"Term":"Item Cancellation Window","Attribute":"Handled in cancellation terms","Owner":"Seller App","Value":"Time period\n(ISO8601 format)","Description":"The time period from order confirmation within which the Buyer may cancel the item. The time period follows the ISO8601 duration notation. As an illustration, a cancel period of 5 days after order confirmation can be specified as “P5D” (i.e. period 5 days) or “PT120H” (i.e. period 120 hours)."},{"Term":"Item Cancellability","Attribute":"Handled in cancellation terms","Owner":"Seller App","Value":"true/ false","Description":"Whether the order for that item can be cancelled after being confirmed. If set to “TRUE” that means the Seller allows the Buyer to cancel the order for the item in question, after confirmation."},{"Term":"Mandatory Arbitration","Api":"search/on_search/init/on_init","Attribute":"MANDATORY_ARBITRATION","Owner":"Seller App","Value":"true/ false","Description":"If this attribute is set to true, that would mean both parties agree that in case of a dispute, both parties must resolve the dispute through arbitration."},{"Term":"Court Jurisdiction","Api":"search/on_search/init/on_init","Attribute":"COURT_JURISDICTION","Owner":"Seller App","Value":"Pick a city from a given list of cities which have a High Court bench","Description":"The name of the city whose courts will have exclusive jurisdiction over disputes related to this contract. The list of options will only contain Indian cities which have a High Court bench."},{"Term":"Delay Interest","Api":"search/on_search/init/on_init","Attribute":"DELAY_INTEREST","Owner":"Seller App","Value":"Positive Decima`1l Number","Description":"This is the annual rate of interest that the Payment Collector will be charged if they delay a payment to the counterparty Network Participant, calculated pro rata for each calendar day of delay. As an example, if the value is set as “7.3”, and the amount of payment due is INR 1000, that will mean the Payment Collector will pay the counterparty Network Participant an interest of 7.3% per annum (i.e. INR 100), calculated pro rata for each day of delay. So if the Payment Collector delay was 50 days, the total interest payable would be INR 10 [calculated as 1000x(7.3/100)x(50/365)]"},{"Term":"Static Terms","Api":"search/on_search/init/on_init","Attribute":"STATIC_TERMS","Owner":"Seller App & Buyer App","Value":"URL","Description":"This will be the URL of a web-page where the standard Terms and Conditions of the Network Participant - which are not covered in the API Specification (e.g.: indemnity) - will be hosted. These terms will apply to the transaction, in addition to the terms decided through the ONDC Protocol. If there is a conflict between the terms decided through the Protocol, and the Static Terms, the terms decided through the ONDC Protocol will prevail. Also, if there is a conflict between the Static Terms and the ONDC Network Policy or the Static Terms and the Network Participant Agreement, the terms of the ONDC Network Policy or the Network Participant Agreement (as the case may be) will prevail."}]},"x-sandboxui":{"dropdown":[{"environment-name":"staging","link":"https://mobility-staging.ondc.org"}]},"x-changeLog":{"filenames":["TRV14_2.0.0_100125.md"]}} \ No newline at end of file +let build_spec = {"openapi":"3.0.0","info":{"title":"ONDC Specification","description":"ONDC Specification","version":"2.0.0"},"security":[{"SubscriberAuth":[]}],"paths":{"/search":{"post":{"tags":["Provider Platform","Gateway"],"description":"Consumer Platform declares the customer's intent to buy/avail products or services","requestBody":{"content":{"application/json":{"schema":{"type":"object","additionalProperties":false,"properties":{"context":{"allOf":[{"$ref":"#/components/schemas/Context"},{"properties":{"action":{"enum":["search"]}}}]},"message":{"type":"object","additionalProperties":false,"properties":{"intent":{"$ref":"#/components/schemas/Intent"}}}},"required":["context","message"]}}}},"responses":{"default":{"$ref":"#/paths/~1init/post/responses/default"}}}},"/select":{"post":{"tags":["Provider Platform"],"description":"Consumer Platform declares the customer's cart (or equivalent) created by selecting objects from the catalog","requestBody":{"content":{"application/json":{"schema":{"type":"object","additionalProperties":false,"properties":{"context":{"allOf":[{"$ref":"#/components/schemas/Context"},{"type":"object","properties":{"action":{"enum":["select"]}},"required":["action"]}]},"message":{"type":"object","additionalProperties":false,"properties":{"order":{"$ref":"#/components/schemas/Order"}},"required":["order"]}},"required":["context","message"]}}}},"responses":{"default":{"$ref":"#/paths/~1init/post/responses/default"}}}},"/init":{"post":{"tags":["Provider Platform"],"description":"Initialize an order by providing billing and/or shipping details","requestBody":{"content":{"application/json":{"schema":{"type":"object","additionalProperties":false,"properties":{"context":{"allOf":[{"$ref":"#/components/schemas/Context"},{"type":"object","properties":{"action":{"enum":["init"]}},"required":["action"]}]},"message":{"type":"object","additionalProperties":false,"properties":{"order":{"$ref":"#/components/schemas/Order"}},"required":["order"]}},"required":["context","message"]}}}},"responses":{"default":{"description":"Acknowledgement of message received after successful validation of schema and signature","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"object","properties":{"ack":{"allOf":[{"$ref":"#/components/schemas/Ack"},{"type":"object"},{"properties":{"status":{"enum":["ACK","NACK"]}}}]}},"required":["ack"]},"error":{"$ref":"#/components/schemas/Error"}},"required":["message"]}}}}}}},"/confirm":{"post":{"tags":["Provider Platform"],"description":"Initialize an order by providing billing and/or shipping details","requestBody":{"content":{"application/json":{"schema":{"type":"object","additionalProperties":false,"properties":{"context":{"allOf":[{"$ref":"#/components/schemas/Context"},{"type":"object","properties":{"action":{"enum":["confirm"]}},"required":["action"]}]},"message":{"type":"object","additionalProperties":false,"properties":{"order":{"$ref":"#/components/schemas/Order"}},"required":["order"]}},"required":["context","message"]}}}},"responses":{"default":{"$ref":"#/paths/~1init/post/responses/default"}}}},"/status":{"post":{"tags":["Provider Platform"],"description":"Fetch the latest order object","requestBody":{"content":{"application/json":{"schema":{"type":"object","additionalProperties":false,"properties":{"context":{"allOf":[{"$ref":"#/components/schemas/Context"},{"type":"object","properties":{"action":{"enum":["status"]}},"required":["action"]}]},"message":{"type":"object","additionalProperties":false,"properties":{"ref_id":{"$ref":"#/components/schemas/Order/properties/id"},"order_id":{"$ref":"#/components/schemas/Order/properties/id"}}}},"required":["context","message"]}}}},"responses":{"default":{"$ref":"#/paths/~1init/post/responses/default"}}}},"/track":{"post":{"tags":["Provider Platform"],"description":"Track an active order","requestBody":{"content":{"application/json":{"schema":{"type":"object","additionalProperties":false,"properties":{"context":{"allOf":[{"$ref":"#/components/schemas/Context"},{"type":"object","properties":{"action":{"enum":["track"]}},"required":["action"]}]},"message":{"type":"object","additionalProperties":false,"properties":{"order_id":{"$ref":"#/components/schemas/Order/properties/id"},"callback_url":{"type":"string","format":"uri"}},"required":["order_id"]}},"required":["context","message"]}}}},"responses":{"default":{"$ref":"#/paths/~1init/post/responses/default"}}}},"/cancel":{"post":{"tags":["Provider Platform"],"description":"Cancel an order","requestBody":{"content":{"application/json":{"schema":{"type":"object","additionalProperties":false,"properties":{"context":{"allOf":[{"$ref":"#/components/schemas/Context"},{"type":"object","properties":{"action":{"enum":["cancel"]}},"required":["action"]}]},"message":{"type":"object","additionalProperties":false,"properties":{"order_id":{"$ref":"#/components/schemas/Order/properties/id"},"cancellation_reason_id":{"$ref":"#/components/schemas/Option/properties/id"},"descriptor":{"$ref":"#/components/schemas/Descriptor"}},"required":["order_id"]}},"required":["context","message"]}}}},"responses":{"default":{"$ref":"#/paths/~1init/post/responses/default"}}}},"/update":{"post":{"tags":["Provider Platform"],"description":"Remove object","requestBody":{"content":{"application/json":{"schema":{"type":"object","additionalProperties":false,"properties":{"context":{"allOf":[{"$ref":"#/components/schemas/Context"},{"type":"object","properties":{"action":{"enum":["update"]}},"required":["action"]}]},"message":{"type":"object","additionalProperties":false,"properties":{"update_target":{"description":"Comma separated values of order objects being updated. For example: ```\"update_target\":\"item,billing,fulfillment\"```","type":"string"},"order":{"description":"Updated order object","allOf":[{"$ref":"#/components/schemas/Order"}]}},"required":["update_target","order"]}},"required":["context","message"]}}}},"responses":{"default":{"$ref":"#/paths/~1init/post/responses/default"}}}},"/rating":{"post":{"tags":["Provider Platform"],"description":"Provide feedback on a service","requestBody":{"content":{"application/json":{"schema":{"type":"object","additionalProperties":false,"properties":{"context":{"allOf":[{"$ref":"#/components/schemas/Context"},{"type":"object","properties":{"action":{"enum":["rating"]}},"required":["action"]}]},"message":{"type":"object","properties":{"ratings":{"type":"array","items":{"$ref":"#/components/schemas/Rating"}}}}},"required":["context","message"]}}}},"responses":{"default":{"$ref":"#/paths/~1init/post/responses/default"}}}},"/support":{"post":{"tags":["Provider Platform"],"description":"Contact support","requestBody":{"content":{"application/json":{"schema":{"type":"object","additionalProperties":false,"properties":{"context":{"allOf":[{"$ref":"#/components/schemas/Context"},{"type":"object","properties":{"action":{"enum":["support"]}},"required":["action"]}]},"message":{"type":"object","properties":{"support":{"$ref":"#/components/schemas/Support"}}}},"required":["context","message"]}}}},"responses":{"default":{"$ref":"#/paths/~1init/post/responses/default"}}}},"/on_search":{"post":{"tags":["Consumer Platform"],"description":"Provider Platform sends its catalog in response to a search request.","requestBody":{"content":{"application/json":{"schema":{"type":"object","additionalProperties":false,"properties":{"context":{"allOf":[{"$ref":"#/components/schemas/Context"},{"type":"object","properties":{"action":{"enum":["on_search"]}},"required":["action"]}]},"message":{"type":"object","additionalProperties":false,"properties":{"catalog":{"$ref":"#/components/schemas/Catalog"}},"required":["catalog"]},"error":{"$ref":"#/components/schemas/Error"}},"required":["context","message"]}}}},"responses":{"default":{"$ref":"#/paths/~1init/post/responses/default"}}}},"/on_select":{"post":{"tags":["Consumer Platform"],"description":"Send draft order object with quoted price for selected items","requestBody":{"content":{"application/json":{"schema":{"type":"object","additionalProperties":false,"properties":{"context":{"allOf":[{"$ref":"#/components/schemas/Context"},{"type":"object","properties":{"action":{"enum":["on_select"]}},"required":["action"]}]},"message":{"type":"object","additionalProperties":false,"properties":{"order":{"$ref":"#/components/schemas/Order"}}},"error":{"$ref":"#/components/schemas/Error"}},"required":["context","message"]}}}},"responses":{"default":{"$ref":"#/paths/~1init/post/responses/default"}}}},"/on_init":{"post":{"tags":["Consumer Platform"],"description":"Send order object with payment details updated","requestBody":{"content":{"application/json":{"schema":{"type":"object","additionalProperties":false,"properties":{"context":{"allOf":[{"$ref":"#/components/schemas/Context"},{"type":"object","properties":{"action":{"enum":["on_init"]}},"required":["action"]}]},"message":{"type":"object","additionalProperties":false,"properties":{"order":{"$ref":"#/components/schemas/Order"}},"required":["order"]},"error":{"$ref":"#/components/schemas/Error"}},"required":["context","message"]}}}},"responses":{"default":{"$ref":"#/paths/~1init/post/responses/default"}}}},"/on_confirm":{"post":{"tags":["Consumer Platform"],"description":"Send active order object","requestBody":{"content":{"application/json":{"schema":{"type":"object","additionalProperties":false,"properties":{"context":{"allOf":[{"$ref":"#/components/schemas/Context"},{"type":"object","properties":{"action":{"enum":["on_confirm"]}},"required":["action"]}]},"message":{"type":"object","additionalProperties":false,"properties":{"order":{"$ref":"#/components/schemas/Order"}},"required":["order"]},"error":{"$ref":"#/components/schemas/Error"}},"required":["context"]}}}},"responses":{"default":{"$ref":"#/paths/~1init/post/responses/default"}}}},"/on_track":{"post":{"tags":["Consumer Platform"],"description":"Send tracking details of an active order","requestBody":{"content":{"application/json":{"schema":{"type":"object","additionalProperties":false,"properties":{"context":{"allOf":[{"$ref":"#/components/schemas/Context"},{"type":"object","properties":{"action":{"enum":["on_track"]}},"required":["action"]}]},"message":{"type":"object","additionalProperties":false,"properties":{"tracking":{"$ref":"#/components/schemas/Tracking"}},"required":["tracking"]},"error":{"$ref":"#/components/schemas/Error"}},"required":["context","message"]}}}},"responses":{"default":{"$ref":"#/paths/~1init/post/responses/default"}}}},"/on_cancel":{"post":{"tags":["Consumer Platform"],"description":"Send cancellation request_id with reasons list in case of cancellation request. Else send cancelled order object","requestBody":{"content":{"application/json":{"schema":{"type":"object","additionalProperties":false,"properties":{"context":{"allOf":[{"$ref":"#/components/schemas/Context"},{"type":"object","properties":{"action":{"enum":["on_cancel"]}},"required":["action"]}]},"message":{"type":"object","additionalProperties":false,"properties":{"order":{"$ref":"#/components/schemas/Order"}},"required":["order"]},"error":{"$ref":"#/components/schemas/Error"}},"required":["context","message"]}}}},"responses":{"default":{"$ref":"#/paths/~1init/post/responses/default"}}}},"/on_update":{"post":{"tags":["Consumer Platform"],"description":"Returns updated service with updated runtime object","requestBody":{"content":{"application/json":{"schema":{"type":"object","additionalProperties":false,"properties":{"context":{"allOf":[{"$ref":"#/components/schemas/Context"},{"type":"object","properties":{"action":{"enum":["on_update"]}},"required":["action"]}]},"message":{"type":"object","additionalProperties":false,"properties":{"order":{"$ref":"#/components/schemas/Order"}},"required":["order"]},"error":{"$ref":"#/components/schemas/Error"}},"required":["context","message"]}}}},"responses":{"default":{"$ref":"#/paths/~1init/post/responses/default"}}}},"/on_status":{"post":{"tags":["Consumer Platform"],"description":"Fetch the status of a Service","requestBody":{"content":{"application/json":{"schema":{"type":"object","additionalProperties":false,"properties":{"context":{"allOf":[{"$ref":"#/components/schemas/Context"},{"type":"object","properties":{"action":{"enum":["on_status"]}},"required":["action"]}]},"message":{"type":"object","additionalProperties":false,"properties":{"order":{"$ref":"#/components/schemas/Order"}},"required":["order"]},"error":{"$ref":"#/components/schemas/Error"}},"required":["context","message"]}}}},"responses":{"default":{"$ref":"#/paths/~1init/post/responses/default"}}}},"/on_rating":{"post":{"tags":["Consumer Platform"],"description":"Provide feedback on a service","requestBody":{"content":{"application/json":{"schema":{"type":"object","additionalProperties":false,"properties":{"context":{"allOf":[{"$ref":"#/components/schemas/Context"},{"type":"object","properties":{"action":{"enum":["on_rating"]}},"required":["action"]}]},"message":{"type":"object","properties":{"feedback_form":{"description":"A feedback form to allow the user to provide additional information on the rating provided","allOf":[{"$ref":"#/components/schemas/XInput"}]}}},"error":{"$ref":"#/components/schemas/Error"}},"required":["context","message"]}}}},"responses":{"default":{"$ref":"#/paths/~1init/post/responses/default"}}}},"/on_support":{"post":{"tags":["Consumer Platform"],"description":"Contact Support","requestBody":{"content":{"application/json":{"schema":{"type":"object","additionalProperties":false,"properties":{"context":{"allOf":[{"$ref":"#/components/schemas/Context"},{"type":"object","properties":{"action":{"enum":["on_support"]}},"required":["action"]}]},"message":{"type":"object","properties":{"support":{"$ref":"#/components/schemas/Support"}}},"error":{"$ref":"#/components/schemas/Error"}},"required":["context","message"]}}}},"responses":{"default":{"$ref":"#/paths/~1init/post/responses/default"}}}}},"components":{"securitySchemes":{"SubscriberAuth":{"type":"apiKey","in":"header","name":"Authorization","description":"Signature of message body using Consumer Platform or Provider Platform subscriber's signing public key.

Format:

Authorization : Signature keyId=\"{subscriber_id}|{unique_key_id}|{algorithm}\",algorithm=\"ed25519\",created=\"1606970629\",expires=\"1607030629\",headers=\"(created) (expires) digest\",signature=\"Base64(signing string)\""}},"schemas":{"Ack":{"description":"Describes the acknowledgement sent in response to an API call. If the implementation uses HTTP/S, then Ack must be returned in the same session. Every API call to a BPP must be responded to with an Ack whether the BPP intends to respond with a callback or not. This has one property called `status` that indicates the status of the Acknowledgement.","type":"object","additionalProperties":false,"properties":{"status":{"type":"string","description":"The status of the acknowledgement. If the request passes the validation criteria of the BPP, then this is set to ACK. If a BPP responds with status = `ACK` to a request, it is required to respond with a callback. If the request fails the validation criteria, then this is set to NACK. Additionally, if a BPP does not intend to respond with a callback even after the request meets the validation criteria, it should set this value to `NACK`.","enum":["ACK","NACK"]},"tags":{"description":"A list of tags containing any additional information sent along with the Acknowledgement.","type":"array","items":{"$ref":"#/components/schemas/TagGroup"}}}},"AddOn":{"description":"Describes an additional item offered as a value-addition to a product or service. This does not exist independently in a catalog and is always associated with an item.","type":"object","additionalProperties":false,"properties":{"id":{"description":"Provider-defined ID of the add-on","type":"string"},"descriptor":{"$ref":"#/components/schemas/Descriptor"},"price":{"$ref":"#/components/schemas/Price"},"quantity":{"$ref":"#/components/schemas/ItemQuantity"}}},"Address":{"description":"Describes a postal address.","type":"string"},"Agent":{"description":"Describes the direct performer, driver or executor that fulfills an order. It is usually a person. But in some rare cases, it could be a non-living entity like a drone, or a bot. Some examples of agents are Doctor in the healthcare sector, a driver in the mobility sector, or a delivery person in the logistics sector. This object can be set at any stage of the order lifecycle. This can be set at the discovery stage when the BPP wants to provide details on the agent fulfilling the order, like in healthcare, where the doctor's name appears during search. This object can also used to search for a particular person that the customer wants fulfilling an order. Sometimes, this object gets instantiated after the order is confirmed, like in the case of on-demand taxis, where the driver is assigned after the user confirms the ride.","type":"object","additionalProperties":false,"properties":{"person":{"$ref":"#/components/schemas/Person"},"contact":{"$ref":"#/components/schemas/Contact"},"organization":{"$ref":"#/components/schemas/Organization"},"rating":{"$ref":"#/components/schemas/Rating/properties/value"}}},"Authorization":{"description":"Describes an authorization mechanism used to start or end the fulfillment of an order. For example, in the mobility sector, the driver may require a one-time password to initiate the ride. In the healthcare sector, a patient may need to provide a password to open a video conference link during a teleconsultation.","type":"object","additionalProperties":false,"properties":{"type":{"description":"Type of authorization mechanism used. The allowed values for this field can be published as part of the network policy.","type":"string"},"token":{"description":"Token used for authorization. This is typically generated at the BPP. The BAP can send this value to the user via any channel that it uses to authenticate the user like SMS, Email, Push notification, or in-app rendering.","type":"string"},"valid_from":{"description":"Timestamp in RFC3339 format from which token is valid","type":"string","format":"date-time"},"valid_to":{"description":"Timestamp in RFC3339 format until which token is valid","type":"string","format":"date-time"},"status":{"description":"Status of the token","type":"string"}}},"Billing":{"description":"Describes the billing details of an entity.
This has properties like name,organization,address,email,phone,time,tax_number, created_at,updated_at","type":"object","additionalProperties":false,"properties":{"name":{"description":"Name of the billable entity","type":"string"},"organization":{"description":"Details of the organization being billed.","allOf":[{"$ref":"#/components/schemas/Organization"}]},"address":{"description":"The address of the billable entity","allOf":[{"$ref":"#/components/schemas/Address"}]},"state":{"description":"The state where the billable entity resides. This is important for state-level tax calculation","allOf":[{"$ref":"#/components/schemas/State"}]},"city":{"description":"The city where the billable entity resides.","allOf":[{"$ref":"#/components/schemas/City"}]},"email":{"description":"Email address where the bill is sent to","type":"string","format":"email"},"phone":{"description":"Phone number of the billable entity","type":"string"},"time":{"description":"Details regarding the billing period","allOf":[{"$ref":"#/components/schemas/Time"}]},"tax_id":{"description":"ID of the billable entity as recognized by the taxation authority","type":"string"}}},"Cancellation":{"description":"Describes a cancellation event","type":"object","additionalProperties":false,"properties":{"time":{"description":"Date-time when the order was cancelled by the buyer","type":"string","format":"date-time"},"cancelled_by":{"type":"string","enum":["CONSUMER","PROVIDER"]},"reason":{"description":"The reason for cancellation","allOf":[{"$ref":"#/components/schemas/Option"}]},"additional_description":{"description":"Any additional information regarding the nature of cancellation","allOf":[{"$ref":"#/components/schemas/Descriptor"}]}}},"CancellationTerm":{"description":"Describes the cancellation terms of an item or an order. This can be referenced at an item or order level. Item-level cancellation terms can override the terms at the order level.","type":"object","additionalProperties":false,"properties":{"fulfillment_state":{"description":"The state of fulfillment during which this term is applicable.","allOf":[{"$ref":"#/components/schemas/FulfillmentState"}]},"reason_required":{"description":"Indicates whether a reason is required to cancel the order","type":"boolean"},"cancel_by":{"description":"Information related to the time of cancellation.","allOf":[{"$ref":"#/components/schemas/Time"}]},"cancellation_fee":{"$ref":"#/components/schemas/Fee"},"xinput":{"$ref":"#/components/schemas/XInput"},"external_ref":{"$ref":"#/components/schemas/MediaFile"},"cancellation_eligible":{"description":"Indicates if cancellation is eligible","type":"boolean"}}},"Catalog":{"description":"Describes the products or services offered by a BPP. This is typically sent as the response to a search intent from a BAP. The payment terms, offers and terms of fulfillment supported by the BPP can also be included here. The BPP can show hierarchical nature of products/services in its catalog using the parent_category_id in categories. The BPP can also send a ttl (time to live) in the context which is the duration for which a BAP can cache the catalog and use the cached catalog.
This has properties like bbp/descriptor,bbp/categories,bbp/fulfillments,bbp/payments,bbp/offers,bbp/providers and exp
This is used in the following situations.
  • This is typically used in the discovery stage when the BPP sends the details of the products and services it offers as response to a search intent from the BAP.
","type":"object","additionalProperties":false,"properties":{"descriptor":{"$ref":"#/components/schemas/Descriptor"},"fulfillments":{"description":"Fulfillment modes offered at the BPP level. This is used when a BPP itself offers fulfillments on behalf of the providers it has onboarded.","type":"array","items":{"$ref":"#/components/schemas/Fulfillment"}},"payments":{"description":"Payment terms offered by the BPP for all transactions. This can be overriden at the provider level.","type":"array","items":{"$ref":"#/components/schemas/Payment"}},"offers":{"description":"Offers at the BPP-level. This is common across all providers onboarded by the BPP.","type":"array","items":{"$ref":"#/components/schemas/Offer"}},"providers":{"type":"array","items":{"$ref":"#/components/schemas/Provider"}},"tags":{"type":"array","items":{"$ref":"#/components/schemas/TagGroup"}},"exp":{"description":"Timestamp after which catalog will expire","type":"string","format":"date-time"},"ttl":{"description":"Duration in seconds after which this catalog will expire","type":"string"}}},"Category":{"description":"A label under which a collection of items can be grouped.","type":"object","additionalProperties":false,"properties":{"id":{"description":"ID of the category","type":"string"},"parent_category_id":{"$ref":"#/components/schemas/Category/properties/id"},"descriptor":{"$ref":"#/components/schemas/Descriptor"},"time":{"$ref":"#/components/schemas/Time"},"ttl":{"description":"Time to live for an instance of this schema"},"tags":{"type":"array","items":{"$ref":"#/components/schemas/TagGroup"}}}},"Circle":{"description":"Describes a circular region of a specified radius centered at a specified GPS coordinate.","type":"object","additionalProperties":false,"properties":{"gps":{"$ref":"#/components/schemas/Gps"},"radius":{"$ref":"#/components/schemas/Scalar"}}},"City":{"description":"Describes a city","type":"object","additionalProperties":false,"properties":{"name":{"description":"Name of the city","type":"string"},"code":{"description":"City code","type":"string"}}},"Contact":{"description":"Describes the contact information of an entity","type":"object","additionalProperties":false,"properties":{"phone":{"type":"string"},"email":{"type":"string"},"jcard":{"type":"object","additionalProperties":false,"description":"A Jcard object as per draft-ietf-jcardcal-jcard-03 specification"}}},"Context":{"description":"Every API call in beckn protocol has a context. It provides a high-level overview to the receiver about the nature of the intended transaction. Typically, it is the BAP that sets the transaction context based on the consumer's location and action on their UI. But sometimes, during unsolicited callbacks, the BPP also sets the transaction context but it is usually the same as the context of a previous full-cycle, request-callback interaction between the BAP and the BPP. The context object contains four types of fields.
  1. Demographic information about the transaction using fields like `domain`, `country`, and `region`.
  2. Addressing details like the sending and receiving platform's ID and API URL.
  3. Interoperability information like the protocol version that implemented by the sender and,
  4. Transaction details like the method being called at the receiver's endpoint, the transaction_id that represents an end-to-end user session at the BAP, a message ID to pair requests with callbacks, a timestamp to capture sending times, a ttl to specifiy the validity of the request, and a key to encrypt information if necessary.
This object must be passed in every interaction between a BAP and a BPP. In HTTP/S implementations, it is not necessary to send the context during the synchronous response. However, in asynchronous protocols, the context must be sent during all interactions,","type":"object","additionalProperties":false,"properties":{"domain":{"description":"Domain code that is relevant to this transaction context","allOf":[{"$ref":"#/components/schemas/Domain/properties/code","type":"string"}]},"location":{"description":"The location where the transaction is intended to be fulfilled.","allOf":[{"$ref":"#/components/schemas/Location"}]},"action":{"description":"The Beckn protocol method being called by the sender and executed at the receiver.","type":"string"},"version":{"type":"string","description":"Version of transaction protocol being used by the sender."},"bap_id":{"description":"Subscriber ID of the BAP","allOf":[{"description":"A globally unique identifier of the platform, Typically it is the fully qualified domain name (FQDN) of the platform.","type":"string"}]},"bap_uri":{"description":"Subscriber URL of the BAP for accepting callbacks from BPPs.","allOf":[{"description":"The callback URL of the Subscriber. This should necessarily contain the same domain name as set in `subscriber_id``.","type":"string","format":"uri"}]},"bpp_id":{"description":"Subscriber ID of the BPP","allOf":[{"$ref":"#/components/schemas/Context/properties/bap_id/allOf/0"}]},"bpp_uri":{"description":"Subscriber URL of the BPP for accepting calls from BAPs.","allOf":[{"$ref":"#/components/schemas/Context/properties/bap_uri/allOf/0"}]},"transaction_id":{"description":"This is a unique value which persists across all API calls from `search` through `confirm`. This is done to indicate an active user session across multiple requests. The BPPs can use this value to push personalized recommendations, and dynamic offerings related to an ongoing transaction despite being unaware of the user active on the BAP.","type":"string","format":"uuid"},"message_id":{"description":"This is a unique value which persists during a request / callback cycle. Since beckn protocol APIs are asynchronous, BAPs need a common value to match an incoming callback from a BPP to an earlier call. This value can also be used to ignore duplicate messages coming from the BPP. It is recommended to generate a fresh message_id for every new interaction. When sending unsolicited callbacks, BPPs must generate a new message_id.","type":"string","format":"uuid"},"timestamp":{"description":"Time of request generation in RFC3339 format","type":"string","format":"date-time"},"key":{"description":"The encryption public key of the sender","type":"string"},"ttl":{"description":"The duration in ISO8601 format after timestamp for which this message holds valid","type":"string"}}},"Country":{"description":"Describes a country","type":"object","additionalProperties":false,"properties":{"name":{"type":"string","description":"Name of the country"},"code":{"type":"string","description":"Country code as per ISO 3166-1 and ISO 3166-2 format"}}},"Credential":{"description":"Describes a credential of an entity - Person or Organization","type":"object","additionalProperties":false,"properties":{"id":{"type":"string"},"type":{"type":"string","default":"VerifiableCredential"},"url":{"description":"URL of the credential","type":"string","format":"uri"}}},"Customer":{"description":"Describes a customer buying/availing a product or a service","type":"object","additionalProperties":false,"properties":{"person":{"$ref":"#/components/schemas/Person"},"contact":{"$ref":"#/components/schemas/Contact"}}},"DecimalValue":{"description":"Describes a numerical value in decimal form","type":"string","pattern":"[+-]?([0-9]*[.])?[0-9]+"},"Descriptor":{"description":"Physical description of something.","type":"object","additionalProperties":false,"properties":{"name":{"type":"string"},"code":{"type":"string"},"short_desc":{"type":"string"},"long_desc":{"type":"string"},"additional_desc":{"type":"object","additionalProperties":false,"properties":{"url":{"type":"string"},"content_type":{"type":"string","enum":["text/plain","text/html","application/json"]}}},"media":{"type":"array","items":{"$ref":"#/components/schemas/MediaFile"}},"images":{"type":"array","items":{"$ref":"#/components/schemas/Image"}}}},"Domain":{"description":"Described the industry sector or sub-sector. The network policy should contain codes for all the industry sectors supported by the network. Domains can be created in varying levels of granularity. The granularity of a domain can be decided by the participants of the network. Too broad domains will result in irrelevant search broadcast calls to BPPs that don't have services supporting the domain. Too narrow domains will result in a large number of registry entries for each BPP. It is recommended that network facilitators actively collaborate with various working groups and network participants to carefully choose domain codes keeping in mind relevance, performance, and opportunity cost. It is recommended that networks choose broad domains like mobility, logistics, healthcare etc, and progressively granularize them as and when the number of network participants for each domain grows large.","type":"object","additionalProperties":false,"properties":{"name":{"description":"Name of the domain","type":"string"},"code":{"description":"Standard code representing the domain. The standard is usually published as part of the network policy. Furthermore, the network facilitator should also provide a mechanism to provide the supported domains of a network."},"additional_info":{"description":"A url that contains addtional information about that domain.","allOf":[{"$ref":"#/components/schemas/MediaFile"}]}}},"Duration":{"description":"Describes duration as per ISO8601 format","type":"string"},"Error":{"description":"Describes an error object that is returned by a BAP, BPP or BG as a response or callback to an action by another network participant. This object is sent when any request received by a network participant is unacceptable. This object can be sent either during Ack or with the callback.","type":"object","additionalProperties":false,"properties":{"code":{"type":"string","description":"Standard error code. For full list of error codes, refer to docs/protocol-drafts/BECKN-005-ERROR-CODES-DRAFT-01.md of this repo\""},"paths":{"type":"string","description":"Path to json schema generating the error. Used only during json schema validation errors"},"message":{"type":"string","description":"Human readable message describing the error. Used mainly for logging. Not recommended to be shown to the user."}}},"Fee":{"description":"A fee applied on a particular entity","type":"object","additionalProperties":false,"properties":{"percentage":{"description":"Percentage of a value","allOf":[{"$ref":"#/components/schemas/DecimalValue"}]},"amount":{"description":"A fixed value","allOf":[{"$ref":"#/components/schemas/Price"}]}}},"Form":{"description":"Describes a form","type":"object","additionalProperties":false,"properties":{"id":{"description":"The form identifier.","type":"string"},"url":{"description":"The URL from where the form can be fetched. The content fetched from the url must be processed as per the mime_type specified in this object. Once fetched, the rendering platform can choosed to render the form as-is as an embeddable element; or process it further to blend with the theme of the application. In case the interface is non-visual, the the render can process the form data and reproduce it as per the standard specified in the form.","type":"string","format":"uri"},"data":{"description":"The form submission data","type":"object","additionalProperties":{"type":"string"}},"mime_type":{"description":"This field indicates the nature and format of the form received by querying the url. MIME types are defined and standardized in IETF's RFC 6838.","type":"string","enum":["text/html","application/html","application/xml"]},"resubmit":{"type":"boolean"},"multiple_sumbissions":{"type":"boolean"}}},"Fulfillment":{"description":"Describes how a an order will be rendered/fulfilled to the end-customer","type":"object","additionalProperties":false,"properties":{"id":{"description":"Unique reference ID to the fulfillment of an order","type":"string"},"type":{"description":"A code that describes the mode of fulfillment. This is typically set when there are multiple ways an order can be fulfilled. For example, a retail order can be fulfilled either via store pickup or a home delivery. Similarly, a medical consultation can be provided either in-person or via tele-consultation. The network policy must publish standard fulfillment type codes for the different modes of fulfillment.","type":"string"},"rateable":{"description":"Whether the fulfillment can be rated or not","type":"boolean"},"rating":{"description":"The rating value of the fulfullment service.","allOf":[{"$ref":"#/components/schemas/Rating/properties/value"}]},"state":{"description":"The current state of fulfillment. The BPP must set this value whenever the state of the order fulfillment changes and fire an unsolicited `on_status` call.","allOf":[{"$ref":"#/components/schemas/FulfillmentState"}]},"tracking":{"type":"boolean","description":"Indicates whether the fulfillment allows tracking","default":false},"customer":{"description":"The person that will ultimately receive the order","allOf":[{"$ref":"#/components/schemas/Customer"}]},"agent":{"description":"The agent that is currently handling the fulfillment of the order","allOf":[{"$ref":"#/components/schemas/Agent"}]},"contact":{"$ref":"#/components/schemas/Contact"},"vehicle":{"$ref":"#/components/schemas/Vehicle"},"stops":{"description":"The list of logical stops encountered during the fulfillment of an order.","type":"array","items":{"$ref":"#/components/schemas/Stop"}},"path":{"description":"The physical path taken by the agent that can be rendered on a map. The allowed format of this property can be set by the network.","type":"string"},"tags":{"type":"array","items":{"$ref":"#/components/schemas/TagGroup"}}}},"FulfillmentState":{"description":"Describes the state of fulfillment","type":"object","additionalProperties":false,"properties":{"descriptor":{"$ref":"#/components/schemas/Descriptor"},"updated_at":{"type":"string","format":"date-time"},"updated_by":{"type":"string","description":"ID of entity which changed the state"}}},"Gps":{"description":"Describes a GPS coordinate","type":"string","pattern":"^[-+]?([1-8]?\\d(\\.\\d+)?|90(\\.0+)?),\\s*[-+]?(180(\\.0+)?|((1[0-7]\\d)|([1-9]?\\d))(\\.\\d+)?)$"},"Image":{"description":"Describes an image","type":"object","additionalProperties":false,"properties":{"url":{"description":"URL to the image. This can be a data url or an remote url","type":"string","format":"uri"},"size_type":{"description":"The size of the image. The network policy can define the default dimensions of each type","type":"string","enum":["xs","sm","md","lg","xl","custom"]},"width":{"description":"Width of the image in pixels","type":"string"},"height":{"description":"Height of the image in pixels","type":"string"}}},"Intent":{"description":"The intent to buy or avail a product or a service. The BAP can declare the intent of the consumer containing
  • What they want (A product, service, offer)
  • Who they want (A seller, service provider, agent etc)
  • Where they want it and where they want it from
  • When they want it (start and end time of fulfillment
  • How they want to pay for it

This has properties like descriptor,provider,fulfillment,payment,category,offer,item,tags
This is typically used by the BAP to send the purpose of the user's search to the BPP. This will be used by the BPP to find products or services it offers that may match the user's intent.
For example, in Mobility, the mobility consumer declares a mobility intent. In this case, the mobility consumer declares information that describes various aspects of their journey like,
  • Where would they like to begin their journey (intent.fulfillment.start.location)
  • Where would they like to end their journey (intent.fulfillment.end.location)
  • When would they like to begin their journey (intent.fulfillment.start.time)
  • When would they like to end their journey (intent.fulfillment.end.time)
  • Who is the transport service provider they would like to avail services from (intent.provider)
  • Who is traveling (This is not recommended in public networks) (intent.fulfillment.customer)
  • What kind of fare product would they like to purchase (intent.item)
  • What add-on services would they like to avail
  • What offers would they like to apply on their booking (intent.offer)
  • What category of services would they like to avail (intent.category)
  • What additional luggage are they carrying
  • How would they like to pay for their journey (intent.payment)

For example, in health domain, a consumer declares the intent for a lab booking the describes various aspects of their booking like,
  • Where would they like to get their scan/test done (intent.fulfillment.start.location)
  • When would they like to get their scan/test done (intent.fulfillment.start.time)
  • When would they like to get the results of their test/scan (intent.fulfillment.end.time)
  • Who is the service provider they would like to avail services from (intent.provider)
  • Who is getting the test/scan (intent.fulfillment.customer)
  • What kind of test/scan would they like to purchase (intent.item)
  • What category of services would they like to avail (intent.category)
  • How would they like to pay for their journey (intent.payment)
","type":"object","additionalProperties":false,"properties":{"descriptor":{"description":"A raw description of the search intent. Free text search strings, raw audio, etc can be sent in this object.","allOf":[{"$ref":"#/components/schemas/Descriptor"}]},"provider":{"description":"The provider from which the customer wants to place to the order from","allOf":[{"$ref":"#/components/schemas/Provider"}]},"fulfillment":{"description":"Details on how the customer wants their order fulfilled","allOf":[{"$ref":"#/components/schemas/Fulfillment"}]},"payment":{"description":"Details on how the customer wants to pay for the order","allOf":[{"$ref":"#/components/schemas/Payment"}]},"category":{"description":"Details on the item category","allOf":[{"$ref":"#/components/schemas/Category"}]},"offer":{"description":"details on the offer the customer wants to avail","allOf":[{"$ref":"#/components/schemas/Offer"}]},"item":{"description":"Details of the item that the consumer wants to order","allOf":[{"$ref":"#/components/schemas/Item"}]},"tags":{"type":"array","items":{"$ref":"#/components/schemas/TagGroup"}}}},"ItemQuantity":{"description":"Describes the count or amount of an item","type":"object","additionalProperties":false,"properties":{"allocated":{"description":"This represents the exact quantity allocated for purchase of the item.","type":"object","additionalProperties":false,"properties":{"count":{"type":"integer","minimum":0},"measure":{"$ref":"#/components/schemas/Scalar"}}},"available":{"description":"This represents the exact quantity available for purchase of the item. The buyer can only purchase multiples of this","type":"object","additionalProperties":false,"properties":{"count":{"type":"integer","minimum":0},"measure":{"$ref":"#/components/schemas/Scalar"}}},"maximum":{"description":"This represents the maximum quantity allowed for purchase of the item","type":"object","additionalProperties":false,"properties":{"count":{"type":"integer","minimum":1},"measure":{"$ref":"#/components/schemas/Scalar"}}},"minimum":{"description":"This represents the minimum quantity allowed for purchase of the item","type":"object","additionalProperties":false,"properties":{"count":{"type":"integer","minimum":0},"measure":{"$ref":"#/components/schemas/Scalar"}}},"selected":{"description":"This represents the quantity selected for purchase of the item","type":"object","additionalProperties":false,"properties":{"count":{"type":"integer","minimum":0},"measure":{"$ref":"#/components/schemas/Scalar"}}},"unitized":{"description":"This represents the quantity available in a single unit of the item","type":"object","additionalProperties":false,"properties":{"count":{"type":"integer","minimum":1,"maximum":1},"measure":{"$ref":"#/components/schemas/Scalar"}}}}},"Item":{"description":"Describes a product or a service offered to the end consumer by the provider. In the mobility sector, it can represent a fare product like one way journey. In the logistics sector, it can represent the delivery service offering. In the retail domain it can represent a product like a grocery item.","type":"object","additionalProperties":false,"properties":{"id":{"description":"ID of the item.","type":"string"},"parent_item_id":{"description":"ID of the item, this item is a variant of","allOf":[{"$ref":"#/components/schemas/Item/properties/id"}]},"parent_item_quantity":{"description":"The number of units of the parent item this item is a multiple of","allOf":[{"$ref":"#/components/schemas/ItemQuantity"}]},"descriptor":{"description":"Physical description of the item","allOf":[{"$ref":"#/components/schemas/Descriptor"}]},"creator":{"description":"The creator of this item","allOf":[{"$ref":"#/components/schemas/Organization"}]},"price":{"description":"The price of this item, if it has intrinsic value","allOf":[{"$ref":"#/components/schemas/Price"}]},"quantity":{"description":"The selling quantity of the item","allOf":[{"$ref":"#/components/schemas/ItemQuantity"}]},"category_ids":{"description":"Categories this item can be listed under","type":"array","items":{"allOf":[{"$ref":"#/components/schemas/Category/properties/id"}]}},"fulfillment_ids":{"description":"Modes through which this item can be fulfilled","type":"array","items":{"allOf":[{"$ref":"#/components/schemas/Fulfillment/properties/id"}]}},"location_ids":{"description":"Provider Locations this item is available in","type":"array","items":{"allOf":[{"$ref":"#/components/schemas/Location/properties/id"}]}},"payment_ids":{"description":"Payment modalities through which this item can be ordered","type":"array","items":{"allOf":[{"$ref":"#/components/schemas/Payment/properties/id"}]}},"add_ons":{"type":"array","items":{"$ref":"#/components/schemas/AddOn"}},"cancellation_terms":{"description":"Cancellation terms of this item","type":"array","items":{"$ref":"#/components/schemas/CancellationTerm"}},"refund_terms":{"description":"Refund terms of this item","type":"array","items":{"description":"Refund term of an item or an order","type":"object","additionalProperties":false,"properties":{"fulfillment_state":{"description":"The state of fulfillment during which this term is applicable.","allOf":[{"$ref":"#/components/schemas/State"}]},"refund_eligible":{"description":"Indicates if cancellation will result in a refund","type":"boolean"},"refund_within":{"description":"Time within which refund will be processed after successful cancellation.","allOf":[{"$ref":"#/components/schemas/Time"}]},"refund_amount":{"$ref":"#/components/schemas/Price"}}}},"replacement_terms":{"description":"Terms that are applicable be met when this item is replaced","type":"array","items":{"$ref":"#/components/schemas/ReplacementTerm"}},"return_terms":{"description":"Terms that are applicable when this item is returned","type":"array","items":{"$ref":"#/components/schemas/ReturnTerm"}},"xinput":{"description":"Additional input required from the customer to purchase / avail this item","allOf":[{"$ref":"#/components/schemas/XInput"}]},"time":{"description":"Temporal attributes of this item. This property is used when the item exists on the catalog only for a limited period of time.","allOf":[{"$ref":"#/components/schemas/Time"}]},"rateable":{"description":"Whether this item can be rated","type":"boolean"},"rating":{"description":"The rating of the item","allOf":[{"$ref":"#/components/schemas/Rating/properties/value"}]},"matched":{"description":"Whether this item is an exact match of the request","type":"boolean"},"related":{"description":"Whether this item is a related item to the exactly matched item","type":"boolean"},"recommended":{"description":"Whether this item is a recommended item to a response","type":"boolean"},"ttl":{"description":"Time to live in seconds for an instance of this schema","type":"string"},"tags":{"type":"array","items":{"$ref":"#/components/schemas/TagGroup"}}}},"Location":{"description":"The physical location of something","type":"object","additionalProperties":false,"properties":{"id":{"type":"string"},"descriptor":{"$ref":"#/components/schemas/Descriptor"},"map_url":{"description":"The url to the map of the location. This can be a globally recognized map url or the one specified by the network policy.","type":"string","format":"uri"},"gps":{"description":"The GPS co-ordinates of this location.","allOf":[{"$ref":"#/components/schemas/Gps"}]},"updated_at":{"type":"string","format":"date-time"},"address":{"description":"The address of this location.","allOf":[{"$ref":"#/components/schemas/Address"}]},"city":{"description":"The city this location is, or is located within","allOf":[{"$ref":"#/components/schemas/City"}]},"district":{"description":"The state this location is, or is located within","type":"string"},"state":{"description":"The state this location is, or is located within","allOf":[{"$ref":"#/components/schemas/State"}]},"country":{"description":"The country this location is, or is located within","allOf":[{"$ref":"#/components/schemas/Country"}]},"area_code":{"type":"string"},"circle":{"$ref":"#/components/schemas/Circle"},"polygon":{"description":"The boundary polygon of this location","type":"string"},"3dspace":{"description":"The three dimensional region describing this location","type":"string"},"rating":{"description":"The rating of this location","allOf":[{"$ref":"#/components/schemas/Rating/properties/value"}]}}},"MediaFile":{"description":"This object contains a url to a media file.","type":"object","additionalProperties":false,"properties":{"mimetype":{"description":"indicates the nature and format of the document, file, or assortment of bytes. MIME types are defined and standardized in IETF's RFC 6838","type":"string"},"url":{"description":"The URL of the file","type":"string","format":"uri"},"signature":{"description":"The digital signature of the file signed by the sender","type":"string"},"dsa":{"description":"The signing algorithm used by the sender","type":"string"}}},"Offer":{"description":"An offer associated with a catalog. This is typically used to promote a particular product and enable more purchases.","type":"object","additionalProperties":false,"properties":{"id":{"type":"string"},"descriptor":{"$ref":"#/components/schemas/Descriptor"},"location_ids":{"type":"array","items":{"$ref":"#/components/schemas/Location/properties/id"}},"category_ids":{"type":"array","items":{"$ref":"#/components/schemas/Category/properties/id"}},"item_ids":{"type":"array","items":{"$ref":"#/components/schemas/Item/properties/id"}},"time":{"$ref":"#/components/schemas/Time"},"tags":{"type":"array","items":{"$ref":"#/components/schemas/TagGroup"}}}},"Option":{"description":"Describes a selectable option","type":"object","additionalProperties":false,"properties":{"id":{"type":"string"},"descriptor":{"$ref":"#/components/schemas/Descriptor"}}},"Order":{"description":"Describes a legal purchase order. It contains the complete details of the legal contract created between the buyer and the seller.","type":"object","additionalProperties":false,"properties":{"id":{"type":"string","description":"Human-readable ID of the order. This is generated at the BPP layer. The BPP can either generate order id within its system or forward the order ID created at the provider level."},"ref_order_ids":{"description":"A list of order IDs to link this order to previous orders.","type":"array","items":{"type":"string","description":"ID of a previous order"}},"status":{"description":"Status of the order. Allowed values can be defined by the network policy","type":"string","enum":["ACTIVE","COMPLETE","CANCELLED","COMPLETED","SOFT_CANCEL","CANCELLATION_INITIATED","CANCELLATION_REJECTED","SOFT_UPDATE","CONFIRM_UPDATE","UPDATED"]},"type":{"description":"This is used to indicate the type of order being created to BPPs. Sometimes orders can be linked to previous orders, like a replacement order in a retail domain. A follow-up consultation in healthcare domain. A single order part of a subscription order. The list of order types can be standardized at the network level.","type":"string","default":"DEFAULT","enum":["DRAFT","DEFAULT"]},"provider":{"description":"Details of the provider whose catalog items have been selected.","allOf":[{"$ref":"#/components/schemas/Provider"}]},"items":{"description":"The items purchased / availed in this order","type":"array","items":{"$ref":"#/components/schemas/Item"}},"add_ons":{"description":"The add-ons purchased / availed in this order","type":"array","items":{"$ref":"#/components/schemas/AddOn"}},"offers":{"description":"The offers applied in this order","type":"array","items":{"$ref":"#/components/schemas/Offer"}},"billing":{"description":"The billing details of this order","allOf":[{"$ref":"#/components/schemas/Billing"}]},"fulfillments":{"description":"The fulfillments involved in completing this order","type":"array","items":{"$ref":"#/components/schemas/Fulfillment"}},"cancellation":{"description":"The cancellation details of this order","allOf":[{"$ref":"#/components/schemas/Cancellation"}]},"cancellation_terms":{"description":"Cancellation terms of this item","type":"array","items":{"$ref":"#/components/schemas/CancellationTerm"}},"documents":{"type":"array","items":{"description":"Documnents associated to the order","type":"object","additionalProperties":false,"properties":{"descriptor":{"$ref":"#/components/schemas/Descriptor"},"mime_type":{"description":"This field indicates the nature and format of the form received by querying the url. MIME types are defined and standardized in IETF's RFC 6838.","type":"string","enum":["text/html","application/html","application/xml","application/pdf"]},"url":{"description":"The URL from where the form can be fetched. The content fetched from the url must be processed as per the mime_type specified in this object.","type":"string","format":"uri"}}}},"refund_terms":{"description":"Refund terms of this item","type":"array","items":{"$ref":"#/components/schemas/Item/properties/refund_terms/items"}},"replacement_terms":{"description":"Replacement terms of this item","type":"array","items":{"$ref":"#/components/schemas/ReplacementTerm"}},"return_terms":{"description":"Return terms of this item","type":"array","items":{"$ref":"#/components/schemas/ReturnTerm"}},"quote":{"description":"The mutually agreed upon quotation for this order.","allOf":[{"$ref":"#/components/schemas/Quotation"}]},"payments":{"description":"The terms of settlement for this order","type":"array","items":{"$ref":"#/components/schemas/Payment"}},"created_at":{"description":"The date-time of creation of this order","type":"string","format":"date-time"},"updated_at":{"description":"The date-time of updated of this order","type":"string","format":"date-time"},"xinput":{"description":"Additional input required from the customer to confirm this order","allOf":[{"$ref":"#/components/schemas/XInput"}]},"tags":{"type":"array","items":{"$ref":"#/components/schemas/TagGroup"}}}},"Organization":{"description":"An organization. Usually a recognized business entity.","type":"object","additionalProperties":false,"properties":{"descriptor":{"$ref":"#/components/schemas/Descriptor"},"address":{"description":"The postal address of the organization","allOf":[{"$ref":"#/components/schemas/Address"}]},"state":{"description":"The state where the organization's address is registered","allOf":[{"$ref":"#/components/schemas/State"}]},"city":{"description":"The city where the the organization's address is registered","allOf":[{"$ref":"#/components/schemas/City"}]},"contact":{"$ref":"#/components/schemas/Contact"}}},"Payment":{"description":"Describes the terms of settlement between the BAP and the BPP for a single transaction. When instantiated, this object contains
  1. the amount that has to be settled,
  2. The payment destination destination details
  3. When the settlement should happen, and
  4. A transaction reference ID
. During a transaction, the BPP reserves the right to decide the terms of payment. However, the BAP can send its terms to the BPP first. If the BPP does not agree to those terms, it must overwrite the terms and return them to the BAP. If overridden, the BAP must either agree to the terms sent by the BPP in order to preserve the provider's autonomy, or abort the transaction. In case of such disagreements, the BAP and the BPP can perform offline negotiations on the payment terms. Once an agreement is reached, the BAP and BPP can resume transactions.","type":"object","additionalProperties":false,"properties":{"id":{"description":"ID of the payment term that can be referred at an item or an order level in a catalog","type":"string"},"collected_by":{"description":"This field indicates who is the collector of payment. The BAP can set this value to 'bap' if it wants to collect the payment first and settle it to the BPP. If the BPP agrees to those terms, the BPP should not send the payment url. Alternatively, the BPP can set this field with the value 'bpp' if it wants the payment to be made directly.","type":"string"},"url":{"type":"string","description":"A payment url to be called by the BAP. If empty, then the payment is to be done offline. The details of payment should be present in the params object. If tl_method = http/get, then the payment details will be sent as url params. Two url param values, ```$transaction_id``` and ```$amount``` are mandatory.","format":"uri"},"tl_method":{"type":"string"},"params":{"type":"object","additionalProperties":false,"properties":{"transaction_id":{"type":"string","description":"The reference transaction ID associated with a payment activity"},"amount":{"type":"string"},"currency":{"type":"string"},"bank_code":{"type":"string"},"bank_account_number":{"type":"string"},"virtual_payment_address":{"type":"string"},"source_bank_code":{"type":"string"},"source_bank_account_number":{"type":"string"},"source_virtual_payment_address":{"type":"string"}}},"type":{"type":"string","enum":["PRE-ORDER","PRE-FULFILLMENT","ON-FULFILLMENT","POST-FULFILLMENT","ON-ORDER","PART-PAYMENT"]},"status":{"type":"string","enum":["PAID","NOT-PAID"]},"time":{"$ref":"#/components/schemas/Time"},"tags":{"type":"array","items":{"$ref":"#/components/schemas/TagGroup"}}}},"Person":{"description":"Describes a person as any individual","type":"object","additionalProperties":false,"properties":{"id":{"type":"string","description":"Describes the identity of the person"},"url":{"description":"Profile url of the person","type":"string","format":"uri"},"name":{"description":"the name of the person","type":"string"},"image":{"$ref":"#/components/schemas/Image"},"age":{"description":"Age of the person","allOf":[{"$ref":"#/components/schemas/Duration"}]},"dob":{"description":"Date of birth of the person","type":"string","format":"date"},"gender":{"type":"string","description":"Gender of something, typically a Person, but possibly also fictional characters, animals, etc. While Male and Female may be used, text strings are also acceptable for people who do not identify as a binary gender.Allowed values for this field can be published in the network policy"},"creds":{"type":"array","items":{"$ref":"#/components/schemas/Credential"}},"languages":{"type":"array","items":{"description":"Describes a language known to the person.","type":"object","additionalProperties":false,"properties":{"code":{"type":"string"},"name":{"type":"string"}}}},"skills":{"type":"array","items":{"description":"Describes a skill of the person.","type":"object","additionalProperties":false,"properties":{"code":{"type":"string"},"name":{"type":"string"}}}},"tags":{"type":"array","items":{"$ref":"#/components/schemas/TagGroup"}}}},"Price":{"description":"Describes the price of a product or service","type":"object","additionalProperties":false,"properties":{"currency":{"type":"string"},"value":{"$ref":"#/components/schemas/DecimalValue"},"estimated_value":{"$ref":"#/components/schemas/DecimalValue"},"computed_value":{"$ref":"#/components/schemas/DecimalValue"},"listed_value":{"$ref":"#/components/schemas/DecimalValue"},"offered_value":{"$ref":"#/components/schemas/DecimalValue"},"minimum_value":{"$ref":"#/components/schemas/DecimalValue"},"maximum_value":{"$ref":"#/components/schemas/DecimalValue"}}},"Provider":{"description":"Describes the catalog of a business.","type":"object","additionalProperties":false,"properties":{"id":{"type":"string","description":"Id of the provider"},"descriptor":{"$ref":"#/components/schemas/Descriptor"},"category_id":{"type":"string","description":"Category Id of the provider at the BPP-level catalog"},"rating":{"$ref":"#/components/schemas/Rating/properties/value"},"time":{"$ref":"#/components/schemas/Time"},"categories":{"type":"array","items":{"$ref":"#/components/schemas/Category"}},"fulfillments":{"type":"array","items":{"$ref":"#/components/schemas/Fulfillment"}},"payments":{"type":"array","items":{"$ref":"#/components/schemas/Payment"}},"locations":{"type":"array","items":{"$ref":"#/components/schemas/Location"}},"offers":{"type":"array","items":{"$ref":"#/components/schemas/Offer"}},"items":{"type":"array","items":{"$ref":"#/components/schemas/Item"}},"exp":{"type":"string","description":"Time after which catalog has to be refreshed","format":"date-time"},"rateable":{"description":"Whether this provider can be rated or not","type":"boolean"},"ttl":{"description":"The time-to-live in seconds, for this object. This can be overriden at deeper levels. A value of -1 indicates that this object is not cacheable.","type":"string"},"tags":{"type":"array","items":{"$ref":"#/components/schemas/TagGroup"}}}},"Quotation":{"description":"Describes a quote. It is the estimated price of products or services from the BPP.
This has properties like price, breakup, ttl","type":"object","additionalProperties":false,"properties":{"id":{"description":"ID of the quote.","type":"string","format":"uuid"},"price":{"description":"The total quoted price","allOf":[{"$ref":"#/components/schemas/Price"}]},"breakup":{"description":"the breakup of the total quoted price","type":"array","items":{"type":"object","additionalProperties":false,"properties":{"item":{"$ref":"#/components/schemas/Item"},"title":{"type":"string"},"price":{"$ref":"#/components/schemas/Price"}}}},"ttl":{"$ref":"#/components/schemas/Duration"}}},"Rating":{"description":"Describes the rating of an entity","type":"object","additionalProperties":false,"properties":{"rating_category":{"description":"Category of the entity being rated","type":"string","enum":["Item","Order","Fulfillment","Provider","Agent","Support"]},"id":{"description":"Id of the object being rated","type":"string"},"value":{"description":"Rating value given to the object. This can be a single value or can also contain an inequality operator like gt, gte, lt, lte. This can also contain an inequality expression containing logical operators like && and ||.","type":"string"}}},"Region":{"description":"Describes an arbitrary region of space. The network policy should contain a published list of supported regions by the network.","type":"object","additionalProperties":false,"properties":{"dimensions":{"description":"The number of dimensions that are used to describe any point inside that region. The most common dimensionality of a region is 2, that represents an area on a map. There are regions on the map that can be approximated to one-dimensional regions like roads, railway lines, or shipping lines. 3 dimensional regions are rarer, but are gaining popularity as flying drones are being adopted for various fulfillment services.","type":"string","enum":["1","2","3"]},"type":{"description":"The type of region. This is used to specify the granularity of the region represented by this object. Various examples of two-dimensional region types are city, country, state, district, and so on. The network policy should contain a list of all possible region types supported by the network.","type":"string"},"name":{"type":"string","description":"Name of the region as specified on the map where that region exists."},"code":{"type":"string","description":"A standard code representing the region. This should be interpreted in the same way by all network participants."},"boundary":{"type":"string","description":"A string representing the boundary of the region. One-dimensional regions are represented by polylines. Two-dimensional regions are represented by polygons, and three-dimensional regions can represented by polyhedra."},"map_url":{"type":"string","description":"The url to the map of the region. This can be a globally recognized map or the one specified by the network policy."}}},"ReplacementTerm":{"description":"The replacement policy of an item or an order","type":"object","additionalProperties":false,"properties":{"fulfillment_state":{"description":"The state of fulfillment during which this term is applicable.","allOf":[{"$ref":"#/components/schemas/State"}]},"replace_within":{"description":"Applicable only for buyer managed returns where the buyer has to replace the item before a certain date-time, failing which they will not be eligible for replacement","allOf":[{"$ref":"#/components/schemas/Time"}]},"external_ref":{"$ref":"#/components/schemas/MediaFile"}}},"ReturnTerm":{"description":"Describes the return policy of an item or an order","type":"object","additionalProperties":false,"properties":{"fulfillment_state":{"description":"The state of fulfillment during which this term IETF''s applicable.","allOf":[{"$ref":"#/components/schemas/State"}]},"return_eligible":{"description":"Indicates whether the item is eligible for return","type":"boolean"},"return_time":{"description":"Applicable only for buyer managed returns where the buyer has to return the item to the origin before a certain date-time, failing which they will not be eligible for refund.","allOf":[{"$ref":"#/components/schemas/Time"}]},"return_location":{"description":"The location where the item or order must / will be returned to","allOf":[{"$ref":"#/components/schemas/Location"}]},"fulfillment_managed_by":{"description":"The entity that will perform the return","type":"string","enum":["CONSUMER","PROVIDER"]}}},"Scalar":{"description":"Describes a scalar","type":"object","additionalProperties":false,"properties":{"type":{"type":"string","enum":["CONSTANT","VARIABLE"]},"value":{"$ref":"#/components/schemas/DecimalValue"},"estimated_value":{"$ref":"#/components/schemas/DecimalValue"},"computed_value":{"$ref":"#/components/schemas/DecimalValue"},"range":{"type":"object","additionalProperties":false,"properties":{"min":{"$ref":"#/components/schemas/DecimalValue"},"max":{"$ref":"#/components/schemas/DecimalValue"}}},"unit":{"type":"string"}}},"Schedule":{"description":"Describes schedule as a repeating time period used to describe a regularly recurring event. At a minimum a schedule will specify frequency which describes the interval between occurrences of the event. Additional information can be provided to specify the schedule more precisely. This includes identifying the timestamps(s) of when the event will take place. Schedules may also have holidays to exclude a specific day from the schedule.
This has properties like frequency, holidays, times","type":"object","additionalProperties":false,"properties":{"frequency":{"$ref":"#/components/schemas/Duration"},"holidays":{"type":"array","items":{"type":"string","format":"date-time"}},"times":{"type":"array","items":{"type":"string","format":"date-time"}}}},"State":{"description":"A bounded geopolitical region of governance inside a country.","type":"object","additionalProperties":false,"properties":{"name":{"type":"string","description":"Name of the state"},"code":{"type":"string","description":"State code as per country or international standards"}}},"Stop":{"description":"A logical point in space and time during the fulfillment of an order.","type":"object","additionalProperties":false,"properties":{"id":{"type":"string"},"parent_stop_id":{"type":"string"},"location":{"description":"Location of the stop","allOf":[{"$ref":"#/components/schemas/Location"}]},"type":{"description":"The type of stop. Allowed values of this property can be defined by the network policy.","type":"string"},"time":{"description":"Timings applicable at the stop.","allOf":[{"$ref":"#/components/schemas/Time"}]},"instructions":{"description":"Instructions that need to be followed at the stop","allOf":[{"$ref":"#/components/schemas/Descriptor"}]},"contact":{"description":"Contact details of the stop","allOf":[{"$ref":"#/components/schemas/Contact"}]},"person":{"description":"The details of the person present at the stop","allOf":[{"$ref":"#/components/schemas/Person"}]},"authorization":{"$ref":"#/components/schemas/Authorization"}}},"Support":{"description":"Details of customer support","type":"object","additionalProperties":false,"properties":{"ref_id":{"type":"string"},"callback_phone":{"type":"string","format":"phone"},"phone":{"type":"string","format":"phone"},"email":{"type":"string","format":"email"},"url":{"type":"string","format":"uri"}}},"Tag":{"description":"Describes a tag. This is used to contain extended metadata. This object can be added as a property to any schema to describe extended attributes. For BAPs, tags can be sent during search to optimize and filter search results. BPPs can use tags to index their catalog to allow better search functionality. Tags are sent by the BPP as part of the catalog response in the `on_search` callback. Tags are also meant for display purposes. Upon receiving a tag, BAPs are meant to render them as name-value pairs. This is particularly useful when rendering tabular information about a product or service.","type":"object","additionalProperties":false,"properties":{"descriptor":{"description":"Description of the Tag, can be used to store detailed information.","allOf":[{"$ref":"#/components/schemas/Descriptor"}]},"value":{"description":"The value of the tag. This set by the BPP and rendered as-is by the BAP.","type":"string"},"display":{"description":"This value indicates if the tag is intended for display purposes. If set to `true`, then this tag must be displayed. If it is set to `false`, it should not be displayed. This value can override the group display value.","type":"boolean"}}},"TagGroup":{"description":"A collection of tag objects with group level attributes. For detailed documentation on the Tags and Tag Groups schema go to https://github.com/beckn/protocol-specifications/discussions/316","type":"object","additionalProperties":false,"properties":{"display":{"description":"Indicates the display properties of the tag group. If display is set to false, then the group will not be displayed. If it is set to true, it should be displayed. However, group-level display properties can be overriden by individual tag-level display property. As this schema is purely for catalog display purposes, it is not recommended to send this value during search.","type":"boolean","default":true},"descriptor":{"description":"Description of the TagGroup, can be used to store detailed information.","allOf":[{"$ref":"#/components/schemas/Descriptor"}]},"list":{"description":"An array of Tag objects listed under this group. This property can be set by BAPs during search to narrow the `search` and achieve more relevant results. When received during `on_search`, BAPs must render this list under the heading described by the `name` property of this schema.","type":"array","items":{"$ref":"#/components/schemas/Tag"}}}},"Time":{"description":"Describes time in its various forms. It can be a single point in time; duration; or a structured timetable of operations
This has properties like label, time stamp,duration,range, days, schedule","type":"object","additionalProperties":false,"properties":{"label":{"type":"string"},"timestamp":{"type":"string","format":"date-time"},"duration":{"$ref":"#/components/schemas/Duration"},"range":{"type":"object","additionalProperties":false,"properties":{"start":{"type":"string","format":"date-time"},"end":{"type":"string","format":"date-time"}}},"days":{"type":"string","description":"comma separated values representing days of the week"},"schedule":{"$ref":"#/components/schemas/Schedule"}}},"Tracking":{"description":"Contains tracking information that can be used by the BAP to track the fulfillment of an order in real-time. which is useful for knowing the location of time sensitive deliveries.","type":"object","additionalProperties":false,"properties":{"id":{"description":"A unique tracking reference number","type":"string"},"url":{"description":"A URL to the tracking endpoint. This can be a link to a tracking webpage, a webhook URL created by the BAP where BPP can push the tracking data, or a GET url creaed by the BPP which the BAP can poll to get the tracking data. It can also be a websocket URL where the BPP can push real-time tracking data.","type":"string","format":"uri"},"location":{"description":"In case there is no real-time tracking endpoint available, this field will contain the latest location of the entity being tracked. The BPP will update this value everytime the BAP calls the track API.","allOf":[{"$ref":"#/components/schemas/Location"}]},"status":{"description":"This value indicates if the tracking is currently active or not. If this value is `active`, then the BAP can begin tracking the order. If this value is `inactive`, the tracking URL is considered to be expired and the BAP should stop tracking the order.","type":"string","enum":["active","inactive"]}}},"Vehicle":{"description":"Describes a vehicle is a device that is designed or used to transport people or cargo over land, water, air, or through space.
This has properties like category, capacity, make, model, size,variant,color,energy_type,registration","type":"object","additionalProperties":false,"properties":{"category":{"type":"string"},"capacity":{"type":"integer"},"make":{"type":"string"},"model":{"type":"string"},"size":{"type":"string"},"variant":{"type":"string"},"color":{"type":"string"},"energy_type":{"type":"string"},"registration":{"type":"string"},"wheels_count":{"type":"string"},"cargo_volumne":{"type":"string"},"wheelchair_access":{"type":"string"},"code":{"type":"string"},"emission_standard":{"type":"string"}}},"XInput":{"description":"Contains any additional or extended inputs required to confirm an order. This is typically a Form Input. Sometimes, selection of catalog elements is not enough for the BPP to confirm an order. For example, to confirm a flight ticket, the airline requires details of the passengers along with information on baggage, identity, in addition to the class of ticket. Similarly, a logistics company may require details on the nature of shipment in order to confirm the shipping. A recruiting firm may require additional details on the applicant in order to confirm a job application. For all such purposes, the BPP can choose to send this object attached to any object in the catalog that is required to be sent while placing the order. This object can typically be sent at an item level or at the order level. The item level XInput will override the Order level XInput as it indicates a special requirement of information for that particular item. Hence the BAP must render a separate form for the Item and another form at the Order level before confirmation.","type":"object","additionalProperties":false,"properties":{"head":{"description":"Provides the header information for the xinput.","type":"object","additionalProperties":false,"properties":{"descriptor":{"$ref":"#/components/schemas/Descriptor"},"index":{"type":"object","additionalProperties":false,"properties":{"min":{"type":"integer"},"cur":{"type":"integer"},"max":{"type":"integer"}}},"headings":{"type":"array","items":{"type":"string","description":"The heading names of the forms"}}}},"form":{"$ref":"#/components/schemas/Form"},"form_response":{"description":"Describes the response to a form submission","type":"object","additionalProperties":false,"properties":{"status":{"description":"Contains the status of form submission.","type":"string"},"signature":{"type":"string"},"submission_id":{"type":"string"},"errors":{"type":"array","items":{"$ref":"#/components/schemas/Error"}}}},"required":{"description":"Indicates whether the form data is mandatorily required by the BPP to confirm the order.","type":"boolean"}}}}},"x-enum":{"search":{"context":{"action":[{"code":"search","description":"Buyer app indicates the search intent","reference":""}],"location":{"country":{"code":[{"code":"IND","description":"Represents the country","reference":""}]},"city":{"code":[{"code":"std:080","description":"Bangalore","reference":""}]}},"domain":[{"code":"ONDC:TRV14","description":"mobility domain Public Transit","reference":""}]},"message":{"intent":{"fulfillment":{"state":{"descriptor":{"code":[{"code":"CONFIRMED","description":"Describes the fulfillment state","reference":""}],"location":{"country":{"code":[{"code":"IND","description":"Represents the country","reference":""}]},"city":{"code":[{"code":"std:080","description":"Bangalore","reference":""}]}},"domain":[{"code":"ONDC:TRV14","description":"mobility domain Public Transit","reference":""}]},"message":{"catalog":{"providers":{"categories":{"descriptor":{"code":[{"code":"CULTURE_HERITAGE","description":"Represents type of category","reference":""}],"location":{"country":{"code":[{"code":"IND","description":"Represents the country","reference":""}]},"city":{"code":[{"code":"std:080","description":"Bangalore","reference":""}]}},"domain":[{"code":"ONDC:TRV14","description":"mobility domain Public Transit","reference":""}]},"message":{"order":{"items":{"descriptor":{"code":[{"code":"ENTRY_PASS","description":"Describes the item code as Entry Pass","reference":""}],"location":{"country":{"code":[{"code":"IND","description":"Represents the country","reference":""}]},"city":{"code":[{"code":"std:080","description":"Bangalore","reference":""}]}},"domain":[{"code":"ONDC:TRV14","description":"mobility domain Public Transit","reference":""}]},"message":{"order":{"items":{"descriptor":{"code":[{"code":"ENTRY_PASS","description":"Describes the item code as Entry Pass","reference":""}],"location":{"country":{"code":[{"code":"IND","description":"Represents the country","reference":""}]},"city":{"code":[{"code":"std:080","description":"Bangalore","reference":""}]}},"domain":[{"code":"ONDC:TRV14","description":"mobility domain Public Transit","reference":""}]},"message":{"order":{"items":{"descriptor":{"code":[{"code":"ENTRY_PASS","description":"Describes the item code as Entry Pass","reference":""}],"location":{"country":{"code":[{"code":"IND","description":"Represents the country","reference":""}]},"city":{"code":[{"code":"std:080","description":"Bangalore","reference":""}]}},"domain":[{"code":"ONDC:TRV14","description":"mobility domain Public Transit","reference":""}]},"message":{"order":{"items":{"descriptor":{"code":[{"code":"ENTRY_PASS","description":"Describes the item code as Entry Pass","reference":""}],"location":{"country":{"code":[{"code":"IND","description":"Represents the country","reference":""}]},"city":{"code":[{"code":"std:080","description":"Bangalore","reference":""}]}},"domain":[{"code":"ONDC:TRV14","description":"mobility domain Public Transit","reference":""}]},"message":{"order":{"items":{"descriptor":{"code":[{"code":"ENTRY_PASS","description":"Describes the item code as Entry Pass","reference":""}],"location":{"country":{"code":[{"code":"IND","description":"Represents the country","reference":""}]},"city":{"code":[{"code":"std:080","description":"Bangalore","reference":""}]}},"domain":[{"code":"ONDC:TRV14","description":"mobility domain Public Transit","reference":""}]},"message":{"order":{"items":{"descriptor":{"code":[{"code":"ENTRY_PASS","description":"Describes the item code as Entry Pass","reference":""}],"location":{"country":{"code":[{"code":"IND","description":"Represents the country","reference":""}]},"city":{"code":[{"code":"std:080","description":"Bangalore","reference":""}]}},"domain":[{"code":"ONDC:TRV14","description":"mobility domain Public Transit","reference":""}]}},"on_status":{"context":{"action":[{"code":"on_status","description":"Seller app return order with status , Driver pickup - driver drop","reference":""}],"location":{"country":{"code":[{"code":"IND","description":"Represents the country","reference":""}]},"city":{"code":[{"code":"std:080","description":"Bangalore","reference":""}]}},"domain":[{"code":"ONDC:TRV14","description":"mobility domain Public Transit","reference":""}]},"message":{"order":{"items":{"descriptor":{"code":[{"code":"ENTRY_PASS","description":"Describes the item code as Entry Pass","reference":""}],"location":{"country":{"code":[{"code":"IND","description":"Represents the country","reference":""}]},"city":{"code":[{"code":"std:080","description":"Bangalore","reference":""}]}},"domain":[{"code":"ONDC:TRV14","description":"mobility domain Public Transit","reference":""}]},"message":{"descriptor":{"code":[{"code":"SOFT-CANCEL","description":"Describes a soft-cancel request initiated by the buyer app, a step preceding cancellation.","reference":""}],"location":{"country":{"code":[{"code":"IND","description":"Represents the country","reference":""}]},"city":{"code":[{"code":"std:080","description":"Bangalore","reference":""}]}},"domain":[{"code":"ONDC:TRV14","description":"mobility domain Public Transit","reference":""}]},"message":{"order":{"items":{"descriptor":{"code":[{"code":"ENTRY_PASS","description":"Describes the item code as Entry Pass","reference":""}],"location":{"country":{"code":[{"code":"IND","description":"Represents the country","reference":""}]},"city":{"code":[{"code":"std:080","description":"Bangalore","reference":""}]}},"domain":[{"code":"ONDC:TRV14","description":"mobility domain Public Transit","reference":""}]},"message":{"order":{"items":{"descriptor":{"code":[{"code":"ENTRY_PASS","description":"Describes the item code as Entry Pass","reference":""}],"location":{"country":{"code":[{"code":"IND","description":"Represents the country","reference":""}]},"city":{"code":[{"code":"std:080","description":"Bangalore","reference":""}]}},"domain":[{"code":"ONDC:TRV14","description":"mobility domain Public Transit","reference":""}]},"message":{"order":{"items":{"descriptor":{"code":[{"code":"ENTRY_PASS","description":"Describes the item code as Entry Pass","reference":"","list":[{"code":"BUYER_FINDER_FEES_TYPE","description":"Buyer finder fee type","reference":""},{"code":"BUYER_FINDER_FEES_PERCENTAGE","description":"Buyer finder fee in percentage","reference":""},{"code":"BUYER_FINDER_FEES_AMOUNT","description":"Buyer finder fee in amount","reference":""},{"code":"SETTLEMENT_BASIS","description":"Basis required to complete settlement","reference":""},{"code":"SETTLEMENT_TYPE","description":"Payment method to complete settlement","reference":""},{"code":"DELAY_INTEREST","description":"Denotes interest to be paid as a delay charge","reference":""},{"code":"STATIC_TERMS","description":"Terms for settlement","reference":""},{"code":"SETTLEMENT_AMOUNT","description":"Denotes settlement amount","reference":""},{"code":"SETTLEMENT_BANK_CODE","description":"Denotes settlement bank code","reference":""},{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER","description":"Denotes settlement bank account number","reference":""}]},{"code":"BPP_TERMS","description":"Details about fare for the ride","reference":"","list":[{"code":"BUYER_FINDER_FEES_TYPE","description":"Buyer finder fee type","reference":""},{"code":"BUYER_FINDER_FEES_PERCENTAGE","description":"Buyer finder fee in percentage","reference":""},{"code":"BUYER_FINDER_FEES_AMOUNT","description":"Buyer finder fee in amount","reference":""},{"code":"SETTLEMENT_BASIS","description":"Basis required to complete settlement","reference":""},{"code":"SETTLEMENT_TYPE","description":"Payment method to complete settlement","reference":""},{"code":"DELAY_INTEREST","description":"Denotes interest to be paid as a delay charge","reference":""},{"code":"STATIC_TERMS","description":"Terms for settlement","reference":""},{"code":"SETTLEMENT_AMOUNT","description":"Denotes settlement amount","reference":""},{"code":"SETTLEMENT_BANK_CODE","description":"Denotes settlement bank code","reference":""},{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER","description":"Denotes settlement bank account number","reference":""}]},{"code":"PAGINATION","description":"Details about pagination","reference":"","list":[{"code":"PAGINATION_ID","description":"Describes the pagination ID","reference":""},{"code":"CURRENT_PAGE_NUMBER","description":"Describes the current page number","reference":""},{"code":"MAX_PAGE_NUMBER","description":"Describes the max page number","reference":""}]}]}},"on_search":{"message":{"catalog":{"providers":{"items":{"tags":[{"code":"FARE_POLICY","description":"Details about fare for the ride","reference":"","list":[{"code":"MIN_AGE","description":"Describes min age","reference":""},{"code":"MAX_AGE","description":"Describes max age","reference":""},{"code":"GENDER","description":"Describes the gender","reference":""},{"code":"NATIONALITY","description":"Describes the nationality","reference":""},{"code":"ENTRY_ELIGIBILITY","description":"Describes the entry eligibility","reference":""}]}]}},"tags":[{"code":"BAP_TERMS","description":"Details about fare for the ride","reference":"","list":[{"code":"BUYER_FINDER_FEES_TYPE","description":"Buyer finder fee type","reference":""},{"code":"BUYER_FINDER_FEES_PERCENTAGE","description":"Buyer finder fee in percentage","reference":""},{"code":"BUYER_FINDER_FEES_AMOUNT","description":"Buyer finder fee in amount","reference":""},{"code":"SETTLEMENT_BASIS","description":"Basis required to complete settlement","reference":""},{"code":"SETTLEMENT_TYPE","description":"Payment method to complete settlement","reference":""},{"code":"DELAY_INTEREST","description":"Denotes interest to be paid as a delay charge","reference":""},{"code":"STATIC_TERMS","description":"Terms for settlement","reference":""},{"code":"SETTLEMENT_AMOUNT","description":"Denotes settlement amount","reference":""},{"code":"SETTLEMENT_BANK_CODE","description":"Denotes settlement bank code","reference":""},{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER","description":"Denotes settlement bank account number","reference":""}]},{"code":"BPP_TERMS","description":"Details about fare for the ride","reference":"","list":[{"code":"BUYER_FINDER_FEES_TYPE","description":"Buyer finder fee type","reference":""},{"code":"BUYER_FINDER_FEES_PERCENTAGE","description":"Buyer finder fee in percentage","reference":""},{"code":"BUYER_FINDER_FEES_AMOUNT","description":"Buyer finder fee in amount","reference":""},{"code":"SETTLEMENT_BASIS","description":"Basis required to complete settlement","reference":""},{"code":"SETTLEMENT_TYPE","description":"Payment method to complete settlement","reference":""},{"code":"DELAY_INTEREST","description":"Denotes interest to be paid as a delay charge","reference":""},{"code":"STATIC_TERMS","description":"Terms for settlement","reference":""},{"code":"SETTLEMENT_AMOUNT","description":"Denotes settlement amount","reference":""},{"code":"SETTLEMENT_BANK_CODE","description":"Denotes settlement bank code","reference":""},{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER","description":"Denotes settlement bank account number","reference":""}]},{"code":"PAGINATION","description":"Details about pagination","reference":"","list":[{"code":"PAGINATION_ID","description":"Describes the pagination ID","reference":""},{"code":"CURRENT_PAGE_NUMBER","description":"Describes the current page number","reference":""},{"code":"MAX_PAGE_NUMBER","description":"Describes the max page number","reference":""}]}]}}},"on_select":{"message":{"order":{"items":{"tags":[{"code":"FARE_POLICY","description":"Details about fare for the ride","reference":"","list":[{"code":"MIN_AGE","description":"Describes min age","reference":""},{"code":"MAX_AGE","description":"Describes max age","reference":""},{"code":"GENDER","description":"Describes the gender","reference":""},{"code":"NATIONALITY","description":"Describes the nationality","reference":""},{"code":"ENTRY_ELIGIBILITY","description":"Describes the entry eligibility","reference":""}]}]}}}},"init":{"message":{"order":{"tags":[{"code":"BAP_TERMS","description":"Details about fare for the ride","reference":"","list":[{"code":"BUYER_FINDER_FEES_TYPE","description":"Buyer finder fee type","reference":""},{"code":"BUYER_FINDER_FEES_PERCENTAGE","description":"Buyer finder fee in percentage","reference":""},{"code":"BUYER_FINDER_FEES_AMOUNT","description":"Buyer finder fee in amount","reference":""},{"code":"SETTLEMENT_BASIS","description":"Basis required to complete settlement","reference":""},{"code":"SETTLEMENT_TYPE","description":"Payment method to complete settlement","reference":""},{"code":"DELAY_INTEREST","description":"Denotes interest to be paid as a delay charge","reference":""},{"code":"STATIC_TERMS","description":"Terms for settlement","reference":""},{"code":"SETTLEMENT_AMOUNT","description":"Denotes settlement amount","reference":""},{"code":"SETTLEMENT_BANK_CODE","description":"Denotes settlement bank code","reference":""},{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER","description":"Denotes settlement bank account number","reference":""}]},{"code":"BPP_TERMS","description":"Details about fare for the ride","reference":"","list":[{"code":"BUYER_FINDER_FEES_TYPE","description":"Buyer finder fee type","reference":""},{"code":"BUYER_FINDER_FEES_PERCENTAGE","description":"Buyer finder fee in percentage","reference":""},{"code":"BUYER_FINDER_FEES_AMOUNT","description":"Buyer finder fee in amount","reference":""},{"code":"SETTLEMENT_BASIS","description":"Basis required to complete settlement","reference":""},{"code":"SETTLEMENT_TYPE","description":"Payment method to complete settlement","reference":""},{"code":"DELAY_INTEREST","description":"Denotes interest to be paid as a delay charge","reference":""},{"code":"STATIC_TERMS","description":"Terms for settlement","reference":""},{"code":"SETTLEMENT_AMOUNT","description":"Denotes settlement amount","reference":""},{"code":"SETTLEMENT_BANK_CODE","description":"Denotes settlement bank code","reference":""},{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER","description":"Denotes settlement bank account number","reference":""}]},{"code":"PAGINATION","description":"Details about pagination","reference":"","list":[{"code":"PAGINATION_ID","description":"Describes the pagination ID","reference":""},{"code":"CURRENT_PAGE_NUMBER","description":"Describes the current page number","reference":""},{"code":"MAX_PAGE_NUMBER","description":"Describes the max page number","reference":""}]}]}}},"on_init":{"message":{"order":{"items":{"tags":[{"code":"FARE_POLICY","description":"Details about fare for the ride","reference":"","list":[{"code":"MIN_AGE","description":"Describes min age","reference":""},{"code":"MAX_AGE","description":"Describes max age","reference":""},{"code":"GENDER","description":"Describes the gender","reference":""},{"code":"NATIONALITY","description":"Describes the nationality","reference":""},{"code":"ENTRY_ELIGIBILITY","description":"Describes the entry eligibility","reference":""}]}]},"tags":[{"code":"BAP_TERMS","description":"Details about fare for the ride","reference":"","list":[{"code":"BUYER_FINDER_FEES_TYPE","description":"Buyer finder fee type","reference":""},{"code":"BUYER_FINDER_FEES_PERCENTAGE","description":"Buyer finder fee in percentage","reference":""},{"code":"BUYER_FINDER_FEES_AMOUNT","description":"Buyer finder fee in amount","reference":""},{"code":"SETTLEMENT_BASIS","description":"Basis required to complete settlement","reference":""},{"code":"SETTLEMENT_TYPE","description":"Payment method to complete settlement","reference":""},{"code":"DELAY_INTEREST","description":"Denotes interest to be paid as a delay charge","reference":""},{"code":"STATIC_TERMS","description":"Terms for settlement","reference":""},{"code":"SETTLEMENT_AMOUNT","description":"Denotes settlement amount","reference":""},{"code":"SETTLEMENT_BANK_CODE","description":"Denotes settlement bank code","reference":""},{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER","description":"Denotes settlement bank account number","reference":""}]},{"code":"BPP_TERMS","description":"Details about fare for the ride","reference":"","list":[{"code":"BUYER_FINDER_FEES_TYPE","description":"Buyer finder fee type","reference":""},{"code":"BUYER_FINDER_FEES_PERCENTAGE","description":"Buyer finder fee in percentage","reference":""},{"code":"BUYER_FINDER_FEES_AMOUNT","description":"Buyer finder fee in amount","reference":""},{"code":"SETTLEMENT_BASIS","description":"Basis required to complete settlement","reference":""},{"code":"SETTLEMENT_TYPE","description":"Payment method to complete settlement","reference":""},{"code":"DELAY_INTEREST","description":"Denotes interest to be paid as a delay charge","reference":""},{"code":"STATIC_TERMS","description":"Terms for settlement","reference":""},{"code":"SETTLEMENT_AMOUNT","description":"Denotes settlement amount","reference":""},{"code":"SETTLEMENT_BANK_CODE","description":"Denotes settlement bank code","reference":""},{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER","description":"Denotes settlement bank account number","reference":""}]},{"code":"PAGINATION","description":"Details about pagination","reference":"","list":[{"code":"PAGINATION_ID","description":"Describes the pagination ID","reference":""},{"code":"CURRENT_PAGE_NUMBER","description":"Describes the current page number","reference":""},{"code":"MAX_PAGE_NUMBER","description":"Describes the max page number","reference":""}]}]}}},"confirm":{"message":{"order":{"tags":[{"code":"BAP_TERMS","description":"Details about fare for the ride","reference":"","list":[{"code":"BUYER_FINDER_FEES_TYPE","description":"Buyer finder fee type","reference":""},{"code":"BUYER_FINDER_FEES_PERCENTAGE","description":"Buyer finder fee in percentage","reference":""},{"code":"BUYER_FINDER_FEES_AMOUNT","description":"Buyer finder fee in amount","reference":""},{"code":"SETTLEMENT_BASIS","description":"Basis required to complete settlement","reference":""},{"code":"SETTLEMENT_TYPE","description":"Payment method to complete settlement","reference":""},{"code":"DELAY_INTEREST","description":"Denotes interest to be paid as a delay charge","reference":""},{"code":"STATIC_TERMS","description":"Terms for settlement","reference":""},{"code":"SETTLEMENT_AMOUNT","description":"Denotes settlement amount","reference":""},{"code":"SETTLEMENT_BANK_CODE","description":"Denotes settlement bank code","reference":""},{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER","description":"Denotes settlement bank account number","reference":""}]},{"code":"BPP_TERMS","description":"Details about fare for the ride","reference":"","list":[{"code":"BUYER_FINDER_FEES_TYPE","description":"Buyer finder fee type","reference":""},{"code":"BUYER_FINDER_FEES_PERCENTAGE","description":"Buyer finder fee in percentage","reference":""},{"code":"BUYER_FINDER_FEES_AMOUNT","description":"Buyer finder fee in amount","reference":""},{"code":"SETTLEMENT_BASIS","description":"Basis required to complete settlement","reference":""},{"code":"SETTLEMENT_TYPE","description":"Payment method to complete settlement","reference":""},{"code":"DELAY_INTEREST","description":"Denotes interest to be paid as a delay charge","reference":""},{"code":"STATIC_TERMS","description":"Terms for settlement","reference":""},{"code":"SETTLEMENT_AMOUNT","description":"Denotes settlement amount","reference":""},{"code":"SETTLEMENT_BANK_CODE","description":"Denotes settlement bank code","reference":""},{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER","description":"Denotes settlement bank account number","reference":""}]},{"code":"PAGINATION","description":"Details about pagination","reference":"","list":[{"code":"PAGINATION_ID","description":"Describes the pagination ID","reference":""},{"code":"CURRENT_PAGE_NUMBER","description":"Describes the current page number","reference":""},{"code":"MAX_PAGE_NUMBER","description":"Describes the max page number","reference":""}]}]}}},"on_confirm":{"message":{"order":{"items":{"tags":[{"code":"FARE_POLICY","description":"Details about fare for the ride","reference":"","list":[{"code":"MIN_AGE","description":"Describes min age","reference":""},{"code":"MAX_AGE","description":"Describes max age","reference":""},{"code":"GENDER","description":"Describes the gender","reference":""},{"code":"NATIONALITY","description":"Describes the nationality","reference":""},{"code":"ENTRY_ELIGIBILITY","description":"Describes the entry eligibility","reference":""}]}]},"tags":[{"code":"BAP_TERMS","description":"Details about fare for the ride","reference":"","list":[{"code":"BUYER_FINDER_FEES_TYPE","description":"Buyer finder fee type","reference":""},{"code":"BUYER_FINDER_FEES_PERCENTAGE","description":"Buyer finder fee in percentage","reference":""},{"code":"BUYER_FINDER_FEES_AMOUNT","description":"Buyer finder fee in amount","reference":""},{"code":"SETTLEMENT_BASIS","description":"Basis required to complete settlement","reference":""},{"code":"SETTLEMENT_TYPE","description":"Payment method to complete settlement","reference":""},{"code":"DELAY_INTEREST","description":"Denotes interest to be paid as a delay charge","reference":""},{"code":"STATIC_TERMS","description":"Terms for settlement","reference":""},{"code":"SETTLEMENT_AMOUNT","description":"Denotes settlement amount","reference":""},{"code":"SETTLEMENT_BANK_CODE","description":"Denotes settlement bank code","reference":""},{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER","description":"Denotes settlement bank account number","reference":""}]},{"code":"BPP_TERMS","description":"Details about fare for the ride","reference":"","list":[{"code":"BUYER_FINDER_FEES_TYPE","description":"Buyer finder fee type","reference":""},{"code":"BUYER_FINDER_FEES_PERCENTAGE","description":"Buyer finder fee in percentage","reference":""},{"code":"BUYER_FINDER_FEES_AMOUNT","description":"Buyer finder fee in amount","reference":""},{"code":"SETTLEMENT_BASIS","description":"Basis required to complete settlement","reference":""},{"code":"SETTLEMENT_TYPE","description":"Payment method to complete settlement","reference":""},{"code":"DELAY_INTEREST","description":"Denotes interest to be paid as a delay charge","reference":""},{"code":"STATIC_TERMS","description":"Terms for settlement","reference":""},{"code":"SETTLEMENT_AMOUNT","description":"Denotes settlement amount","reference":""},{"code":"SETTLEMENT_BANK_CODE","description":"Denotes settlement bank code","reference":""},{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER","description":"Denotes settlement bank account number","reference":""}]},{"code":"PAGINATION","description":"Details about pagination","reference":"","list":[{"code":"PAGINATION_ID","description":"Describes the pagination ID","reference":""},{"code":"CURRENT_PAGE_NUMBER","description":"Describes the current page number","reference":""},{"code":"MAX_PAGE_NUMBER","description":"Describes the max page number","reference":""}]}]}}},"on_status":{"message":{"order":{"items":{"tags":[{"code":"FARE_POLICY","description":"Details about fare for the ride","reference":"","list":[{"code":"MIN_AGE","description":"Describes min age","reference":""},{"code":"MAX_AGE","description":"Describes max age","reference":""},{"code":"GENDER","description":"Describes the gender","reference":""},{"code":"NATIONALITY","description":"Describes the nationality","reference":""},{"code":"ENTRY_ELIGIBILITY","description":"Describes the entry eligibility","reference":""}]}]},"tags":[{"code":"BAP_TERMS","description":"Details about fare for the ride","reference":"","list":[{"code":"BUYER_FINDER_FEES_TYPE","description":"Buyer finder fee type","reference":""},{"code":"BUYER_FINDER_FEES_PERCENTAGE","description":"Buyer finder fee in percentage","reference":""},{"code":"BUYER_FINDER_FEES_AMOUNT","description":"Buyer finder fee in amount","reference":""},{"code":"SETTLEMENT_BASIS","description":"Basis required to complete settlement","reference":""},{"code":"SETTLEMENT_TYPE","description":"Payment method to complete settlement","reference":""},{"code":"DELAY_INTEREST","description":"Denotes interest to be paid as a delay charge","reference":""},{"code":"STATIC_TERMS","description":"Terms for settlement","reference":""},{"code":"SETTLEMENT_AMOUNT","description":"Denotes settlement amount","reference":""},{"code":"SETTLEMENT_BANK_CODE","description":"Denotes settlement bank code","reference":""},{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER","description":"Denotes settlement bank account number","reference":""}]},{"code":"BPP_TERMS","description":"Details about fare for the ride","reference":"","list":[{"code":"BUYER_FINDER_FEES_TYPE","description":"Buyer finder fee type","reference":""},{"code":"BUYER_FINDER_FEES_PERCENTAGE","description":"Buyer finder fee in percentage","reference":""},{"code":"BUYER_FINDER_FEES_AMOUNT","description":"Buyer finder fee in amount","reference":""},{"code":"SETTLEMENT_BASIS","description":"Basis required to complete settlement","reference":""},{"code":"SETTLEMENT_TYPE","description":"Payment method to complete settlement","reference":""},{"code":"DELAY_INTEREST","description":"Denotes interest to be paid as a delay charge","reference":""},{"code":"STATIC_TERMS","description":"Terms for settlement","reference":""},{"code":"SETTLEMENT_AMOUNT","description":"Denotes settlement amount","reference":""},{"code":"SETTLEMENT_BANK_CODE","description":"Denotes settlement bank code","reference":""},{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER","description":"Denotes settlement bank account number","reference":""}]},{"code":"PAGINATION","description":"Details about pagination","reference":"","list":[{"code":"PAGINATION_ID","description":"Describes the pagination ID","reference":""},{"code":"CURRENT_PAGE_NUMBER","description":"Describes the current page number","reference":""},{"code":"MAX_PAGE_NUMBER","description":"Describes the max page number","reference":""}]}]}}}},"x-flows":[{"summary":"Unreserved Entry Pass - Seller App Pagination Flow (Culture-Heritage)","details":[{"description":"The illustrative flow to perform a transaction to create an ecosystem where entry tickets/ passes can be bought and sold over the network.","mermaid":"sequenceDiagram\n title Unreserved Entry Pass Discovery\n Buyer Platform (BAP)->>Gateway (BG): search\n Gateway (BG) ->> Buyer Platform (BAP): ACK\n Gateway (BG)->>Registry: Lookup Seller Platforms (lookup)\n Registry->>Gateway (BG): List of Seller Platforms (200 OK)\n Gateway (BG)->>Seller Platform (BPP): search\n Seller Platform (BPP)->>Gateway (BG) : ACK\n Seller Platform (BPP)->>Buyer Platform (BAP): Publish Catalog of Seller 1 (on_search)\n Buyer Platform (BAP)->>Seller Platform (BPP): ACK "}],"steps":[{"summary":"Search for the Unreserved Entry Pass","api":"search","details":[{"description":"Users searches over the network to avail the Unreserved Entry Pass","mermaid":"sequenceDiagram\n rect rgb(191, 223, 255)\n Buyer Platform (BAP)->>Gateway (BG): search\n Gateway (BG) ->> Buyer Platform (BAP): ACK\n Gateway (BG)->>Registry: Lookup Seller Platforms (lookup)\n Registry->>Gateway (BG): List of Seller Platforms (200 OK)\n Gateway (BG)->>Seller Platform (BPP): search\n Seller Platform (BPP)->>Gateway (BG) : ACK\n end\n Seller Platform (BPP)->>Buyer Platform (BAP): Publish Catalog of Seller 1 (on_search)\n Buyer Platform (BAP)->>Seller Platform (BPP): ACK "}],"reference":"if any","example":{"summary":"Search for unreserved entry pass","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:41:16.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"5fd86e70-3465-4759-ac6c-910ab16e2db9","version":"2.0.0","action":"search","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S"},"message":{"intent":{"category":{"descriptor":{"code":"CULTURE_HERITAGE"}},"fulfillment":{"stops":[{"type":"START","location":{"city":{"code":"std:040"}},"time":{"timestamp":"2024-06-27T04:41:16.000Z"}}],"vehicle":{"category":"SITE"}},"payment":{"collected_by":"BAP"},"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]}]}}}}},{"summary":"Return a catalog of all unreserved-entry-pass services","api":"on_search","details":[{"description":"Provider platform sends the catalog of all the services","mermaid":"sequenceDiagram\n Buyer Platform (BAP)->>Gateway (BG): search\n Gateway (BG) ->> Buyer Platform (BAP): ACK\n Gateway (BG)->>Registry: Lookup Seller Platforms (lookup)\n Registry->>Gateway (BG): List of Seller Platforms (200 OK)\n Gateway (BG)->>Seller Platform (BPP): search\n Seller Platform (BPP)->>Gateway (BG) : ACK\n rect rgb(191, 223, 255)\n Seller Platform (BPP)->>Buyer Platform (BAP): Publish Catalog of Seller 1 (on_search)\n Buyer Platform (BAP)->>Seller Platform (BPP): ACK \n end "}],"reference":"if any","example":{"summary":"Return a catalog for unreserved entry pass","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:43:16.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"5fd86e70-3465-4759-ac6c-910ab16e2db9","version":"2.0.0","action":"on_search","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"catalog":{"descriptor":{"name":"India tourism","long_desc":"Online ticket booking service","images":[{"url":"https://api.unreserved-entry-pass.com/logos/logo.ico","size_type":"xs"}]},"providers":[{"id":"P1","descriptor":{"name":"India tourism","short_desc":"Online Ticket Booking Service","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"categories":[{"descriptor":{"name":"Culture & Heritage","code":"CULTURE_HERITAGE"},"id":"C1"},{"descriptor":{"name":"Standard"},"parent_category_id":"C1","id":"C2"},{"descriptor":{"name":"Premium"},"parent_category_id":"C1","id":"C3"}],"time":{"range":{"start":"2024-06-14T05:30:00.000Z","end":"2024-06-14T23:30:00.000Z"}},"locations":[{"id":"L1","gps":"28.524596, 77.185577","descriptor":{"name":"Qutab Minar","short_desc":"Seth Sarai, Mehrauli, New Delhi, Delhi. The Qutb Minar, also spelled Qutub Minar and Qutab Minar, is a minaret and \"victory tower\" that forms part of the Qutb complex","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"5"},{"id":"L2","gps":"28.5244946, 77.1855177","descriptor":{"name":"Red Fort","short_desc":"Red Fort, Mughal fort in Old Delhi, India. It was built by Shah Jahān in the mid-17th century and remains a major tourist attraction.","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"4"}],"payments":[{"collected_by":"BAP"}]}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]},{"descriptor":{"code":"BPP_TERMS","name":"BPP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"MANDATORY_ARBITRATION"},"value":"true"},{"descriptor":{"code":"COURT_JURISDICTION"},"value":"New Delhi"},{"descriptor":{"code":"DELAY_INTEREST"},"value":"2.5 %"}]},{"descriptor":{"code":"PAGINATION","name":"Pagination"},"display":true,"list":[{"descriptor":{"code":"PAGINATION_ID"},"value":"P1"},{"descriptor":{"code":"MAX_PAGE_NUMBER"},"value":"2"}]}]}}}}},{"summary":"Return a catalog of all unreserved-entry-pass services","api":"on_search","details":[{"description":"Provider platform sends the catalog of all the services","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n rect rgb(191, 223, 255)\n Buyer Platform (BAP)->>Seller Platform (BPP): search\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n end\n Seller Platform (BPP)->>Buyer Platform (BAP):on_search\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK "}],"reference":"if any","example":{"summary":"Return a catalog for unreserved entry pass","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:43:16.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"84e573df-0f06-449b-9f02-7bf1f1694d83","version":"2.0.0","action":"on_search","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"catalog":{"descriptor":{"name":"India tourism","long_desc":"Online ticket booking service","images":[{"url":"https://api.unreserved-entry-pass.com/logos/logo.ico","size_type":"xs"}]},"providers":[{"id":"P1","descriptor":{"name":"India tourism","short_desc":"Online Ticket Booking Service","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"categories":[{"descriptor":{"name":"Culture & Heritage","code":"CULTURE_HERITAGE"},"id":"C1"},{"descriptor":{"name":"Standard"},"parent_category_id":"C1","id":"C2"},{"descriptor":{"name":"Premium"},"parent_category_id":"C1","id":"C3"}],"time":{"range":{"start":"2024-06-14T05:30:00.000Z","end":"2024-06-14T23:30:00.000Z"}},"locations":[{"id":"L1","gps":"28.524596, 77.185577","descriptor":{"name":"Qutab Minar","short_desc":"Seth Sarai, Mehrauli, New Delhi, Delhi. The Qutb Minar, also spelled Qutub Minar and Qutab Minar, is a minaret and \"victory tower\" that forms part of the Qutb complex","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"5"},{"id":"L2","gps":"28.5244946, 77.1855177","descriptor":{"name":"Red Fort","short_desc":"Red Fort, Mughal fort in Old Delhi, India. It was built by Shah Jahān in the mid-17th century and remains a major tourist attraction.","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"4"}],"items":[{"id":"I0","descriptor":{"name":"Parent Item for Culture & Heritage","code":"ABSTRACT","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C2"],"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"cancellation_terms":[{"cancellation_fee":{"percentage":"10"},"fulfillment_state":{"descriptor":{"code":"CONFIRMED"}},"cancel_by":{"label":"DURATION","duration":"PT1H30M"}},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}},{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":true}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass/beckn/replacement.html"}}],"tags":[{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I1","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1","C2"],"price":{"currency":"INR","value":"350"},"quantity":{"maximum":{"count":6},"minimum":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"available":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"18"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I2","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1","C2"],"price":{"currency":"INR","value":"150"},"quantity":{"maximum":{"count":4},"minimum":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"available":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I3","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C3"],"price":{"currency":"INR","value":"400"},"quantity":{"maximum":{"count":6},"minimum":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"available":{"count":1}},"price":{"value":"100","currency":"INR"}}],"cancellation_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":false},{"cancellation_fee":{"percentage":"10"},"cancel_by":{"label":"TIMESTAMP","timestamp":"2024-07-26T04:43:16.000Z"},"cancellation_eligible":false}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass/beckn/replacement.html"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"18"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]},{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"},{"value":"guide_tour"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I4","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C3"],"price":{"currency":"INR","value":"250"},"quantity":{"maximum":{"count":4},"minimum":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"available":{"count":1}},"price":{"value":"100","currency":"INR"}}],"cancellation_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":false},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass/beckn/replacement.html"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]},{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"},{"value":"guide_tour"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I5","descriptor":{"name":"Add on item","code":"ADD_ON","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"price":{"currency":"INR","value":"100"},"quantity":{"maximum":{"count":3},"minimum":{"count":1}}}],"fulfillments":[{"id":"F1","type":"VISIT","stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"timestamp":"2024-06-28T05:00:16.000Z"}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}},{"id":"F2","type":"VISIT","stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"range":{"start":"2024-06-14T05:30:00.000Z","end":"2024-06-14T05:45:00.000Z"}}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}}],"payments":[{"collected_by":"BAP"}]}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]},{"descriptor":{"code":"BPP_TERMS","name":"BPP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"MANDATORY_ARBITRATION"},"value":"true"},{"descriptor":{"code":"COURT_JURISDICTION"},"value":"New Delhi"},{"descriptor":{"code":"DELAY_INTEREST"},"value":"2.5 %"}]},{"descriptor":{"code":"PAGINATION","name":"Pagination"},"display":true,"list":[{"descriptor":{"code":"PAGINATION_ID"},"value":"P1"},{"descriptor":{"code":"CURRENT_PAGE_NUMBER"},"value":"1"},{"descriptor":{"code":"MAX_PAGE_NUMBER"},"value":"2"}]}]}}}}},{"summary":"Return a catalog of all unreserved-entry-pass services","api":"on_search","details":[{"description":"Provider platform sends the catalog of all the services","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n Buyer Platform (BAP)->>Seller Platform (BPP): search\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n rect rgb(191, 223, 255)\n Seller Platform (BPP)->>Buyer Platform (BAP):on_search\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK\n end "}],"reference":"if any","example":{"summary":"Return a catalog for unreserved entry pass","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:43:16.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"0e035130-d548-46c3-a4af-28a65f2d5192","version":"2.0.0","action":"on_search","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"catalog":{"descriptor":{"name":"India tourism","long_desc":"Online ticket booking service","images":[{"url":"https://api.unreserved-entry-pass.com/logos/logo.ico","size_type":"xs"}]},"providers":[{"id":"P1","descriptor":{"name":"India tourism","short_desc":"Online Ticket Booking Service","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"categories":[{"descriptor":{"name":"Culture & Heritage","code":"CULTURE_HERITAGE"},"id":"C1"},{"descriptor":{"name":"Standard"},"parent_category_id":"C1","id":"C2"},{"descriptor":{"name":"Premium"},"parent_category_id":"C1","id":"C3"}],"time":{"range":{"start":"2024-06-14T05:30:00.000Z","end":"2024-06-14T23:30:00.000Z"}},"locations":[{"id":"L1","gps":"28.524596, 77.185577","descriptor":{"name":"Qutab Minar","short_desc":"Seth Sarai, Mehrauli, New Delhi, Delhi. The Qutb Minar, also spelled Qutub Minar and Qutab Minar, is a minaret and \"victory tower\" that forms part of the Qutb complex","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"5"},{"id":"L2","gps":"28.5244946, 77.1855177","descriptor":{"name":"Red Fort","short_desc":"Red Fort, Mughal fort in Old Delhi, India. It was built by Shah Jahān in the mid-17th century and remains a major tourist attraction.","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"4"}],"items":[{"id":"I0","descriptor":{"name":"Parent Item for Culture & Heritage","code":"ABSTRACT","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C2"],"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"cancellation_terms":[{"cancellation_fee":{"percentage":"10"},"fulfillment_state":{"descriptor":{"code":"CONFIRMED"}},"cancel_by":{"label":"DURATION","duration":"PT1H30M"}},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}},{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":true}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass/beckn/replacement.html"}}],"tags":[{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I1","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1","C2"],"price":{"currency":"INR","value":"350"},"quantity":{"maximum":{"count":6},"minimum":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"available":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"18"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I2","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1","C2"],"price":{"currency":"INR","value":"150"},"quantity":{"maximum":{"count":4},"minimum":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"available":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I3","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C3"],"price":{"currency":"INR","value":"400"},"quantity":{"maximum":{"count":6},"minimum":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"available":{"count":1}},"price":{"value":"100","currency":"INR"}}],"cancellation_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":false},{"cancellation_fee":{"percentage":"10"},"cancel_by":{"label":"TIMESTAMP","timestamp":"2024-07-26T04:43:16.000Z"},"cancellation_eligible":false}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass/beckn/replacement.html"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"18"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]},{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"},{"value":"guide_tour"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I4","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C3"],"price":{"currency":"INR","value":"250"},"quantity":{"maximum":{"count":4},"minimum":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"available":{"count":1}},"price":{"value":"100","currency":"INR"}}],"cancellation_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":false},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass/beckn/replacement.html"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]},{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"},{"value":"guide_tour"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I5","descriptor":{"name":"Add on item","code":"ADD_ON","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"price":{"currency":"INR","value":"100"},"quantity":{"maximum":{"count":3},"minimum":{"count":1}}}],"fulfillments":[{"id":"F1","type":"VISIT","stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"timestamp":"2024-06-28T05:00:16.000Z"}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}},{"id":"F2","type":"VISIT","stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"range":{"start":"2024-06-14T05:30:00.000Z","end":"2024-06-14T05:45:00.000Z"}}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}}],"payments":[{"collected_by":"BAP"}]}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]},{"descriptor":{"code":"BPP_TERMS","name":"BPP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"MANDATORY_ARBITRATION"},"value":"true"},{"descriptor":{"code":"COURT_JURISDICTION"},"value":"New Delhi"},{"descriptor":{"code":"DELAY_INTEREST"},"value":"2.5 %"}]},{"descriptor":{"code":"PAGINATION","name":"Pagination"},"display":true,"list":[{"descriptor":{"code":"PAGINATION_ID"},"value":"P1"},{"descriptor":{"code":"CURRENT_PAGE_NUMBER"},"value":"2"},{"descriptor":{"code":"MAX_PAGE_NUMBER"},"value":"2"}]}]}}}}}]},{"summary":"Unreserved Entry Pass - Purchase Journey(Culture-Heritage)","details":[{"description":"The illustrative flow to perform a transaction to create an ecosystem where entry tickets/ passes can be bought and sold over the network.","mermaid":"sequenceDiagram\n title Unreserved Entry Pass Discovery\n Buyer Platform (BAP)->>Gateway (BG): search\n Gateway (BG) ->> Buyer Platform (BAP): ACK\n Gateway (BG)->>Registry: Lookup Seller Platforms (lookup)\n Registry->>Gateway (BG): List of Seller Platforms (200 OK)\n Gateway (BG)->>Seller Platform (BPP): search\n Seller Platform (BPP)->>Gateway (BG) : ACK\n Seller Platform (BPP)->>Buyer Platform (BAP): Publish Catalog of Seller 1 (on_search)\n Buyer Platform (BAP)->>Seller Platform (BPP): ACK "},{"description":"Ordering","mermaid":"sequenceDiagram\n title Selection\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n Buyer Platform (BAP)->>Seller Platform (BPP): select\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n Seller Platform (BPP)->>Buyer Platform (BAP):on_select\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK"},{"description":"Initializing the order","mermaid":"sequenceDiagram\n title Initializing Order\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n Buyer Platform (BAP)->>Seller Platform (BPP): init\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n Seller Platform (BPP)->>Buyer Platform (BAP):on_init\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK "},{"description":"Order Confirmation","mermaid":"sequenceDiagram\n title Order Confirmation\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n Buyer Platform (BAP)->>Seller Platform (BPP): confirm\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n Seller Platform (BPP)->>Buyer Platform (BAP):on_confirm\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK "},{"description":"Fulfillment","mermaid":"sequenceDiagram\n title Order Fulfillment\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n Buyer Platform (BAP)->>Seller Platform (BPP): status-Request application status\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n Seller Platform (BPP)->>Buyer Platform (BAP):on_status - Provide application status\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK "}],"steps":[{"summary":"Selection of specific service","api":"select","details":[{"description":"The end consumer have to select the specific service and would like to have the necessary details","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n rect rgb(191, 223, 255)\n Buyer Platform (BAP)->>Seller Platform (BPP): select\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n end\n Buyer Platform (BAP)->>Seller Form Service: Get Form\n Seller Form Service-->>Buyer Platform (BAP): Form Received\n Buyer Platform (BAP)->>Seller Form Service: Form Submission\n Seller Form Service-->>Buyer Platform (BAP): Submission ID"}],"reference":"if any","example":{"summary":"Select a an item for unreserved-entry-pass","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:50:16.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"7b355323-11aa-4be9-9648-9628618b1157","version":"2.0.0","action":"select","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"items":[{"id":"I1","parent_item_id":"I0","quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","quantity":{"selected":{"count":1}}}]},{"id":"I2","parent_item_id":"I0","quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","quantity":{"selected":{"count":1}}}]},{"id":"I5","parent_item_id":"I0","quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","stops":[{"type":"START","time":{"timestamp":"2024-06-28T05:00:16.000Z"}}]}],"provider":{"id":"P1"}}}}}},{"summary":"Provider platform provides the quote for selected service of unreserved-entry-pass","api":"on_select","details":[{"description":"Provider platform responds with the service detailed information and quotes for the specific service that consumer would like to avail","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n Buyer Platform (BAP)->>Seller Platform (BPP): select\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n rect rgb(191, 223, 255)\n Seller Platform (BPP)->>Buyer Platform (BAP):on_select\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK\n end\n Buyer Platform (BAP)->>Seller Form Service: Get Form\n Seller Form Service-->>Buyer Platform (BAP): Form Received\n Buyer Platform (BAP)->>Seller Form Service: Form Submission\n Seller Form Service-->>Buyer Platform (BAP): Submission ID"}],"reference":"if any","example":{"summary":"Return a selected item for unreserved-entry-pass","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:51:16.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"7b355323-11aa-4be9-9648-9628618b1157","version":"2.0.0","action":"on_select","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"items":[{"id":"I0","descriptor":{"name":"Parent Item for Culture & Heritage","code":"ABSTRACT","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C2"],"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"tags":[{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I1","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]},{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"},{"value":"guide_tour"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}],"xinput":{"head":{"descriptor":{"name":"Additional Details"},"index":{"min":0,"cur":0,"max":0},"headings":["ADDITIONAL_DETAILS"]},"form":{"id":"F01","mime_type":"text/html","url":"https://api.unreserved-entry-pass.com/xinput/additonal-details/F01","resubmit":false,"multiple_sumbissions":false},"required":true}},{"id":"I2","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"xinput":{"head":{"descriptor":{"name":"Additional Details"},"index":{"min":0,"cur":0,"max":0},"headings":["ADDITIONAL_DETAILS"]},"form":{"id":"F01","mime_type":"text/html","url":"https://api.unreserved-entry-pass.com/xinput/additonal-details/F01","resubmit":false,"multiple_sumbissions":false},"required":true},"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]},{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"},{"value":"guide_tour"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I5","descriptor":{"name":"Add on item","code":"ADD_ON","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","price":{"currency":"INR","value":"100"},"quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","type":"VISIT","stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"timestamp":"2024-06-28T05:00:16.000Z"}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}}],"provider":{"id":"P1","descriptor":{"name":"Unreserved Entry Pass","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"locations":[{"id":"L1","gps":"28.524596, 77.185577","descriptor":{"name":"Qutab Minar","short_desc":"Seth Sarai, Mehrauli, New Delhi, Delhi. The Qutb Minar, also spelled Qutub Minar and Qutab Minar, is a minaret and \"victory tower\" that forms part of the Qutb complex","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"5"}]},"cancellation_terms":[{"cancellation_fee":{"percentage":"10"},"fulfillment_state":{"descriptor":{"code":"CONFIRMED"}},"cancel_by":{"label":"DURATION","duration":"PT1H30M"}},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}},{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":true}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/replacement.html"}}],"quote":{"breakup":[{"title":"BASE_FARE","item":{"id":"I1","price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"350"}},{"title":"BASE_FARE","item":{"id":"I2","price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"150"}},{"title":"TAX","price":{"currency":"INR","value":"0"}},{"title":"ADD_ONS","item":{"id":"I1","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I2","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I5"},"price":{"currency":"INR","value":"100"}}],"price":{"currency":"INR","value":"800"}}}}}}},{"summary":"Provider platform share the additional details form","api":"form","details":[{"description":"Buyer platform fetches the additional details form from the Provider platform using the link provided in the previous step","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n Buyer Platform (BAP)->>Seller Platform (BPP): select\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n Seller Platform (BPP)->>Buyer Platform (BAP):on_select\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK\n rect rgb(191, 223, 255)\n Buyer Platform (BAP)->>Seller Form Service: Get Form\n Seller Form Service-->>Buyer Platform (BAP): Form Received\n Buyer Platform (BAP)->>Seller Form Service: Form Submission\n Seller Form Service-->>Buyer Platform (BAP): Submission ID\n end"}],"reference":"if any","example":{"value":"\n\n\n\n \n \n Additional Details\n\n\n\n
\n \n \n \n \n \n \n \n
\n\n\n"}},{"summary":"Buyer app submit the Additional Details Form","api":"select","details":[{"description":"Buyer app submit the Additional Details Form","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n rect rgb(191, 223, 255)\n Buyer Platform (BAP)->>Seller Platform (BPP): select\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n end\n Buyer Platform (BAP)->>Seller Form Service: Get Form\n Seller Form Service-->>Buyer Platform (BAP): Form Received\n Buyer Platform (BAP)->>Seller Form Service: Form Submission\n Seller Form Service-->>Buyer Platform (BAP): Submission ID"}],"reference":"if any","example":{"summary":"Select a an item for unreserved-entry-pass","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:50:16.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"7b355323-11aa-4be9-9648-9628618b1157","version":"2.0.0","action":"select","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"items":[{"id":"I1","parent_item_id":"I0","quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","quantity":{"selected":{"count":1}}}],"xinput":{"form":{"id":"F01"},"form_response":{"status":"SUCCESS","submission_id":"F01_SUBMISSION_ID"}}},{"id":"I2","parent_item_id":"I0","quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","quantity":{"selected":{"count":1}}}],"xinput":{"form":{"id":"F01"},"form_response":{"status":"SUCCESS","submission_id":"F01_SUBMISSION_ID"}}},{"id":"I5","parent_item_id":"I0","quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","stops":[{"type":"START","time":{"timestamp":"2024-06-28T05:00:16.000Z"}}]}],"provider":{"id":"P1"}}}}}},{"summary":"Provider platform provides the quote for selected service of unreserved-entry-pass","api":"on_select","details":[{"description":"Provider platform responds with the service detailed information and quotes for the specific service that consumer would like to avail","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n Buyer Platform (BAP)->>Seller Platform (BPP): select\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n rect rgb(191, 223, 255)\n Seller Platform (BPP)->>Buyer Platform (BAP):on_select\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK\n end\n Buyer Platform (BAP)->>Seller Form Service: Get Form\n Seller Form Service-->>Buyer Platform (BAP): Form Received\n Buyer Platform (BAP)->>Seller Form Service: Form Submission\n Seller Form Service-->>Buyer Platform (BAP): Submission ID"}],"reference":"if any","example":{"summary":"Return a selected item for unreserved-entry-pass","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:51:16.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"7b355323-11aa-4be9-9648-9628618b1157","version":"2.0.0","action":"on_select","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"items":[{"id":"I0","descriptor":{"name":"Parent Item for Culture & Heritage","code":"ABSTRACT","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C2"],"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"tags":[{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I1","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]},{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"},{"value":"guide_tour"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}],"xinput":{"form":{"id":"F01"},"form_response":{"status":"SUCCESS","submission_id":"F01_SUBMISSION_ID"}}},{"id":"I2","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]},{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"},{"value":"guide_tour"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}],"xinput":{"form":{"id":"F01"},"form_response":{"status":"SUCCESS","submission_id":"F01_SUBMISSION_ID"}}},{"id":"I5","descriptor":{"name":"Add on item","code":"ADD_ON","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","price":{"currency":"INR","value":"100"},"quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","type":"VISIT","stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"timestamp":"2024-06-28T05:00:16.000Z"}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}}],"provider":{"id":"P1","descriptor":{"name":"Unreserved Entry Pass","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"locations":[{"id":"L1","gps":"28.524596, 77.185577","descriptor":{"name":"Qutab Minar","short_desc":"Seth Sarai, Mehrauli, New Delhi, Delhi. The Qutb Minar, also spelled Qutub Minar and Qutab Minar, is a minaret and \"victory tower\" that forms part of the Qutb complex","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"5"}]},"cancellation_terms":[{"cancellation_fee":{"percentage":"10"},"fulfillment_state":{"descriptor":{"code":"CONFIRMED"}},"cancel_by":{"label":"DURATION","duration":"PT1H30M"}},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}},{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":true}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/replacement.html"}}],"quote":{"breakup":[{"title":"BASE_FARE","item":{"id":"I1","price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"350"}},{"title":"BASE_FARE","item":{"id":"I2","price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"150"}},{"title":"TAX","price":{"currency":"INR","value":"0"}},{"title":"ADD_ONS","item":{"id":"I1","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I2","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I5"},"price":{"currency":"INR","value":"100"}}],"price":{"currency":"INR","value":"800"}}}}}}},{"summary":"Consumer platform initializes the order","api":"init","details":[{"description":"Consumer platform shares the terms of order and initializes the order","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n rect rgb(191, 223, 255)\n Buyer Platform (BAP)->>Seller Platform (BPP): init\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n end\n Seller Platform (BPP)->>Buyer Platform (BAP):on_init\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK"}],"reference":"if any","example":{"summary":"Initialize the order by providing billing details","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:52:16.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"764b4322-8f7c-402c-b907-80484e9ad40c","version":"2.0.0","action":"init","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"items":[{"id":"I1","parent_item_id":"I0","quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","quantity":{"selected":{"count":1}}}]},{"id":"I2","parent_item_id":"I0","quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","quantity":{"selected":{"count":1}}}]},{"id":"I5","parent_item_id":"I0","quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","stops":[{"type":"START","time":{"timestamp":"2024-06-28T05:00:16.000Z"}}]}],"billing":{"name":"John Doe","email":"john.doe@example.com","phone":"+91-9897867564"},"provider":{"id":"P1"},"payments":[{"collected_by":"BAP","status":"NOT-PAID","type":"PRE-ORDER"}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]}]}}}}},{"summary":"Provider platform accepts/appends the terms of orders","api":"on_init","details":[{"description":"Provider platform accepts the terms of orders and appends its own terms and responds with the final draft","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n Buyer Platform (BAP)->>Seller Platform (BPP): init\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n rect rgb(191, 223, 255)\n Seller Platform (BPP)->>Buyer Platform (BAP):on_init\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK\n end "}],"reference":"if any","example":{"summary":"Return draft order for transit ticket with settlement details","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:52:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"036eedaf-7af0-42b5-8764-5b00b5b55a5d","version":"2.0.0","action":"on_init","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"items":[{"id":"I0","descriptor":{"name":"Parent Item for Culture & Heritage","code":"ABSTRACT","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C2"],"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"tags":[{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I1","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I2","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I5","descriptor":{"name":"Add on item","code":"ADD_ON","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","price":{"currency":"INR","value":"100"},"quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","type":"VISIT","stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"timestamp":"2024-06-28T05:00:16.000Z"}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}}],"provider":{"id":"P1","descriptor":{"name":"Unreserved Entry Pass","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"locations":[{"id":"L1","gps":"28.524596, 77.185577","descriptor":{"name":"Qutab Minar","short_desc":"Seth Sarai, Mehrauli, New Delhi, Delhi. The Qutb Minar, also spelled Qutub Minar and Qutab Minar, is a minaret and \"victory tower\" that forms part of the Qutb complex","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"5"}]},"cancellation_terms":[{"cancellation_fee":{"percentage":"10"},"fulfillment_state":{"descriptor":{"code":"CONFIRMED"}},"cancel_by":{"label":"DURATION","duration":"PT1H30M"}},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}},{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":true}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/replacement.html"}}],"quote":{"breakup":[{"title":"BASE_FARE","item":{"id":"I1","price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"350"}},{"title":"BASE_FARE","item":{"id":"I2","price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"150"}},{"title":"TAX","price":{"currency":"INR","value":"0"}},{"title":"ADD_ONS","item":{"id":"I1","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I2","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I5"},"price":{"currency":"INR","value":"100"}}],"price":{"currency":"INR","value":"800"}},"billing":{"name":"John Doe","email":"john.doe@example.com","phone":"+91-9897867564"},"payments":[{"id":"PA1","collected_by":"BAP","status":"NOT-PAID","type":"PRE-ORDER"}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]},{"descriptor":{"code":"BPP_TERMS","name":"BPP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"MANDATORY_ARBITRATION"},"value":"true"},{"descriptor":{"code":"COURT_JURISDICTION"},"value":"New Delhi"},{"descriptor":{"code":"DELAY_INTEREST"},"value":"2.5 %"},{"descriptor":{"code":"SETTLEMENT_AMOUNT"},"value":"7 INR"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_BANK_CODE"},"value":"XXXXXXXX"},{"descriptor":{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER"},"value":"xxxxxxxxxxxxxx"}]}]}}}}},{"summary":"Consumer confirms the booking and provides details.","api":"confirm","details":[{"description":"Consumer platform confirms the booking and provides all information required for confirmation as per the terms of order","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n rect rgb(191, 223, 255)\n Buyer Platform (BAP)->>Seller Platform (BPP): confirm\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n end\n Seller Platform (BPP)->>Buyer Platform (BAP):on_confirm\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK"}],"reference":"if any","example":{"summary":"Confirm ticket booking","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:53:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"6d287e01-59bc-4c6d-b0ab-e07649eae6b2","version":"2.0.0","action":"confirm","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"items":[{"id":"I1","parent_item_id":"I0","quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","quantity":{"selected":{"count":1}}}]},{"id":"I2","parent_item_id":"I0","quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","quantity":{"selected":{"count":1}}}]},{"id":"I5","parent_item_id":"I0","quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","stops":[{"type":"START","time":{"timestamp":"2024-06-28T05:00:16.000Z"}}]}],"billing":{"name":"John Doe","email":"john.doe@example.com","phone":"+91-9897867564"},"provider":{"id":"P1"},"payments":[{"collected_by":"BAP","status":"NOT-PAID","type":"PRE-ORDER","params":{"transaction_id":"61b4be7e-d85c-456a-99e5-ce3d83be135d","currency":"INR","amount":"800"}}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]},{"descriptor":{"code":"BPP_TERMS","name":"BPP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"MANDATORY_ARBITRATION"},"value":"true"},{"descriptor":{"code":"COURT_JURISDICTION"},"value":"New Delhi"},{"descriptor":{"code":"DELAY_INTEREST"},"value":"2.5 %"},{"descriptor":{"code":"SETTLEMENT_AMOUNT"},"value":"7 INR"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_BANK_CODE"},"value":"XXXXXXXX"},{"descriptor":{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER"},"value":"xxxxxxxxxxxxxx"}]}]}}}}},{"summary":"Provider platform confirms the order","api":"on_confirm","details":[{"description":"Provider platform confirms the order and provides details of the journey on confirmation","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n Buyer Platform (BAP)->>Seller Platform (BPP): confirm\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n rect rgb(191, 223, 255)\n Seller Platform (BPP)->>Buyer Platform (BAP):on_confirm\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK\n end"}],"reference":"if any","example":{"summary":"Return confirmed ticket order with payment confirmation","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:53:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"6d287e01-59bc-4c6d-b0ab-e07649eae6b2","version":"2.0.0","action":"on_confirm","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"id":"01","status":"ACTIVE","items":[{"id":"I0","descriptor":{"name":"Parent Item for Culture & Heritage","code":"ABSTRACT","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C2"],"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"tags":[{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I1","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I2","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I5","descriptor":{"name":"Add on item","code":"ADD_ON","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","price":{"currency":"INR","value":"100"},"quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","type":"VISIT","state":{"descriptor":{"code":"CONFIRMED"}},"stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"timestamp":"2024-06-28T05:00:16.000Z"},"authorization":{"type":"QR","token":"iVBORw0KGgoAAAANSUhEUgAAAH0AAAB9AQAAAACn+1GIAAAApklEQVR4Xu2UMQ4EMQgD/QP+/0vK6zjsvayUMmavWxQpMAUBkwS12wcveAAkgNSCD3rR5Lkgoai3GUCMgWqbAEYR3HxAkZlzU/0MyBisYRsgI1ERFfcpBpA+ze6k56Cj7KTdXNigFWZvSOpsgqLfd18i2aAukXh9TXBNmdWt5gzA/oqzWkkN8HtA7G8CNOwYAiZt3wZixUfkA32OHNQq7Bxs9oI/gC/9fV8AVCkPjQAAAABJRU5ErkJggg==","valid_to":"2024-06-30T05:00:16.000Z","status":"UNCLAIMED"}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}}],"provider":{"id":"P1","descriptor":{"name":"Unreserved Entry Pass","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"locations":[{"id":"L1","gps":"28.524596, 77.185577","descriptor":{"name":"Qutab Minar","short_desc":"Seth Sarai, Mehrauli, New Delhi, Delhi. The Qutb Minar, also spelled Qutub Minar and Qutab Minar, is a minaret and \"victory tower\" that forms part of the Qutb complex","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"5"}]},"cancellation_terms":[{"cancellation_fee":{"percentage":"10"},"fulfillment_state":{"descriptor":{"code":"CONFIRMED"}},"cancel_by":{"label":"DURATION","duration":"PT1H30M"}},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}},{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":true}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/replacement.html"}}],"billing":{"name":"John Doe","email":"john.doe@example.com","phone":"+91-9897867564"},"quote":{"breakup":[{"title":"BASE_FARE","item":{"id":"I1","price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"350"}},{"title":"BASE_FARE","item":{"id":"I2","price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"150"}},{"title":"TAX","price":{"currency":"INR","value":"0"}},{"title":"ADD_ONS","item":{"id":"I1","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I2","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I5"},"price":{"currency":"INR","value":"100"}}],"price":{"currency":"INR","value":"800"}},"payments":[{"id":"PA1","collected_by":"BAP","status":"PAID","type":"PRE-ORDER","params":{"transaction_id":"61b4be7e-d85c-456a-99e5-ce3d83be135d","amount":"800","currency":"INR"}}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]},{"descriptor":{"code":"BPP_TERMS","name":"BPP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"MANDATORY_ARBITRATION"},"value":"true"},{"descriptor":{"code":"COURT_JURISDICTION"},"value":"New Delhi"},{"descriptor":{"code":"DELAY_INTEREST"},"value":"2.5 %"},{"descriptor":{"code":"SETTLEMENT_AMOUNT"},"value":"7 INR"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_BANK_CODE"},"value":"XXXXXXXX"},{"descriptor":{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER"},"value":"xxxxxxxxxxxxxx"}]}],"created_at":"2024-06-26T04:53:26.000Z","updated_at":"2024-06-26T04:53:26.000Z"}}}}},{"summary":"Consumer platform requests for latest status","api":"status","details":[{"description":"Consumer platform request the provider platform to provide with latest order status.","mermaid":"sequenceDiagram\n title Order Fulfillment\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n rect rgb(191, 223, 255)\n Buyer Platform (BAP)->>Seller Platform (BPP): status-Request application status\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n end\n Seller Platform (BPP)->>Buyer Platform (BAP):on_status - Provide application status\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK "}],"reference":"if any","example":{"summary":"Fetch the latest status of order","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:55:16.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"213a32eb-b7a4-4877-9f53-bad6a629b167","version":"2.0.0","action":"status","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order_id":"01"}}}},{"summary":"Provider platform provides latest order status","api":"on_status","details":[{"description":"Provider platform provides the updated order status to the consumer.","mermaid":"sequenceDiagram\n title Order Fulfillment\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n Buyer Platform (BAP)->>Seller Platform (BPP): status-Request application status\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n rect rgb(191, 223, 255)\n Seller Platform (BPP)->>Buyer Platform (BAP):on_status - Provide application status\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK\n end "}],"reference":"if any","example":{"summary":"Return confirmed ticket order with payment confirmation","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:53:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"6d287e01-59bc-4c6d-b0ab-e07649eae6b2","version":"2.0.0","action":"on_status","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"id":"01","status":"COMPLETED","items":[{"id":"I0","descriptor":{"name":"Parent Item for Culture & Heritage","code":"ABSTRACT","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C2"],"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"tags":[{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I1","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I2","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I5","descriptor":{"name":"Add on item","code":"ADD_ON","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","price":{"currency":"INR","value":"100"},"quantity":{"selected":{"count":1}}}],"billing":{"name":"John Doe","email":"john.doe@example.com","phone":"+91-9897867564"},"fulfillments":[{"id":"F1","type":"VISIT","state":{"descriptor":{"code":"COMPLETED"}},"stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"timestamp":"2024-06-28T05:00:16.000Z"},"authorization":{"type":"QR","token":"iVBORw0KGgoAAAANSUhEUgAAAH0AAAB9AQAAAACn+1GIAAAApklEQVR4Xu2UMQ4EMQgD/QP+/0vK6zjsvayUMmavWxQpMAUBkwS12wcveAAkgNSCD3rR5Lkgoai3GUCMgWqbAEYR3HxAkZlzU/0MyBisYRsgI1ERFfcpBpA+ze6k56Cj7KTdXNigFWZvSOpsgqLfd18i2aAukXh9TXBNmdWt5gzA/oqzWkkN8HtA7G8CNOwYAiZt3wZixUfkA32OHNQq7Bxs9oI/gC/9fV8AVCkPjQAAAABJRU5ErkJggg==","valid_to":"2024-06-30T05:00:16.000Z","status":"CLAIMED"}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}}],"provider":{"id":"P1","descriptor":{"name":"Unreserved Entry Pass","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"locations":[{"id":"L1","gps":"28.524596, 77.185577","descriptor":{"name":"Qutab Minar","short_desc":"Seth Sarai, Mehrauli, New Delhi, Delhi. The Qutb Minar, also spelled Qutub Minar and Qutab Minar, is a minaret and \"victory tower\" that forms part of the Qutb complex","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"5"}]},"cancellation_terms":[{"cancellation_fee":{"percentage":"10"},"fulfillment_state":{"descriptor":{"code":"CONFIRMED"}},"cancel_by":{"label":"DURATION","duration":"PT1H30M"}},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}},{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":true}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/replacement.html"}}],"quote":{"breakup":[{"title":"BASE_FARE","item":{"id":"I1","price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"350"}},{"title":"BASE_FARE","item":{"id":"I2","price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"150"}},{"title":"TAX","price":{"currency":"INR","value":"0"}},{"title":"ADD_ONS","item":{"id":"I1","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I2","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I5"},"price":{"currency":"INR","value":"100"}}],"price":{"currency":"INR","value":"800"}},"payments":[{"id":"PA1","collected_by":"BAP","status":"PAID","type":"PRE-ORDER","params":{"transaction_id":"61b4be7e-d85c-456a-99e5-ce3d83be135d","amount":"800","currency":"INR"}}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]},{"descriptor":{"code":"BPP_TERMS","name":"BPP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"MANDATORY_ARBITRATION"},"value":"true"},{"descriptor":{"code":"COURT_JURISDICTION"},"value":"New Delhi"},{"descriptor":{"code":"DELAY_INTEREST"},"value":"2.5 %"},{"descriptor":{"code":"SETTLEMENT_AMOUNT"},"value":"7 INR"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_BANK_CODE"},"value":"XXXXXXXX"},{"descriptor":{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER"},"value":"xxxxxxxxxxxxxx"}]}],"created_at":"2024-06-26T04:53:26.000Z","updated_at":"2024-06-26T04:53:26.000Z"}}}}}]},{"summary":"Unreserved Entry Pass - Technical Cancellation Flow","details":[{"description":"Detailed process of cancelling a ticket with soft & confirm status.","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n Seller Platform (BPP)->>Buyer Platform (BAP):on_confirm\n Buyer Platform (BAP)-->>Seller Platform (BPP): NACK \n Buyer Platform (BAP)->>Seller Platform (BPP): status\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK \n Seller Platform (BPP)->>Buyer Platform (BAP):on_status\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK\n Buyer Platform (BAP)->>Seller Platform (BPP): cancel - with soft_cancel request\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n Seller Platform (BPP)->>Buyer Platform (BAP):on_cancel\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK\n Buyer Platform (BAP)->>Seller Platform (BPP): cancel - with confirm_cancel request\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n Seller Platform (BPP)->>Buyer Platform (BAP):on_cancel\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK "}],"steps":[{"summary":"Provider confirms the request","api":"on_confirm","details":[{"description":"The provider has confirmed the request, but the buyer app received the request after the TTL had expired.","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n rect rgb(191, 223, 255)\n Seller Platform (BPP)->>Buyer Platform (BAP):on_confirm\n Buyer Platform (BAP)-->>Seller Platform (BPP): NACK \n end\n Buyer Platform (BAP)->>Seller Platform (BPP): status\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n Seller Platform (BPP)->>Buyer Platform (BAP):on_status\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK "}],"reference":"if any","example":{"summary":"Return confirmed ticket order with payment confirmation","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:53:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"6d287e01-59bc-4c6d-b0ab-e07649eae6b2","version":"2.0.0","action":"on_confirm","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"id":"01","status":"ACTIVE","items":[{"id":"I0","descriptor":{"name":"Parent Item for Culture & Heritage","code":"ABSTRACT","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C2"],"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"tags":[{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I1","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I2","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I5","descriptor":{"name":"Add on item","code":"ADD_ON","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","price":{"currency":"INR","value":"100"},"quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","type":"VISIT","state":{"descriptor":{"code":"CONFIRMED"}},"stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"timestamp":"2024-06-28T05:00:16.000Z"},"authorization":{"type":"QR","token":"iVBORw0KGgoAAAANSUhEUgAAAH0AAAB9AQAAAACn+1GIAAAApklEQVR4Xu2UMQ4EMQgD/QP+/0vK6zjsvayUMmavWxQpMAUBkwS12wcveAAkgNSCD3rR5Lkgoai3GUCMgWqbAEYR3HxAkZlzU/0MyBisYRsgI1ERFfcpBpA+ze6k56Cj7KTdXNigFWZvSOpsgqLfd18i2aAukXh9TXBNmdWt5gzA/oqzWkkN8HtA7G8CNOwYAiZt3wZixUfkA32OHNQq7Bxs9oI/gC/9fV8AVCkPjQAAAABJRU5ErkJggg==","valid_to":"2024-06-30T05:00:16.000Z","status":"UNCLAIMED"}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}}],"provider":{"id":"P1","descriptor":{"name":"Unreserved Entry Pass","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"locations":[{"id":"L1","gps":"28.524596, 77.185577","descriptor":{"name":"Qutab Minar","short_desc":"Seth Sarai, Mehrauli, New Delhi, Delhi. The Qutb Minar, also spelled Qutub Minar and Qutab Minar, is a minaret and \"victory tower\" that forms part of the Qutb complex","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"5"}]},"cancellation_terms":[{"cancellation_fee":{"percentage":"10"},"fulfillment_state":{"descriptor":{"code":"CONFIRMED"}},"cancel_by":{"label":"DURATION","duration":"PT1H30M"}},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}},{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":true}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/replacement.html"}}],"billing":{"name":"John Doe","email":"john.doe@example.com","phone":"+91-9897867564"},"quote":{"breakup":[{"title":"BASE_FARE","item":{"id":"I1","price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"350"}},{"title":"BASE_FARE","item":{"id":"I2","price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"150"}},{"title":"TAX","price":{"currency":"INR","value":"0"}},{"title":"ADD_ONS","item":{"id":"I1","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I2","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I5"},"price":{"currency":"INR","value":"100"}}],"price":{"currency":"INR","value":"800"}},"payments":[{"id":"PA1","collected_by":"BAP","status":"PAID","type":"PRE-ORDER","params":{"transaction_id":"61b4be7e-d85c-456a-99e5-ce3d83be135d","amount":"800","currency":"INR"}}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]},{"descriptor":{"code":"BPP_TERMS","name":"BPP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"MANDATORY_ARBITRATION"},"value":"true"},{"descriptor":{"code":"COURT_JURISDICTION"},"value":"New Delhi"},{"descriptor":{"code":"DELAY_INTEREST"},"value":"2.5 %"},{"descriptor":{"code":"SETTLEMENT_AMOUNT"},"value":"7 INR"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_BANK_CODE"},"value":"XXXXXXXX"},{"descriptor":{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER"},"value":"xxxxxxxxxxxxxx"}]}],"created_at":"2024-06-26T04:53:26.000Z","updated_at":"2024-06-26T04:53:26.000Z"}}}}},{"summary":"Buyer app request for latest order status","api":"status","details":[{"description":"Buyer app request for latest order status","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n Seller Platform (BPP)->>Buyer Platform (BAP):on_confirm\n Buyer Platform (BAP)-->>Seller Platform (BPP): NACK \n rect rgb(191, 223, 255)\n Buyer Platform (BAP)->>Seller Platform (BPP): status\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n end\n Seller Platform (BPP)->>Buyer Platform (BAP):on_status\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK "}],"reference":"if any","example":{"summary":"Return confirmed ticket order with payment confirmation","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:55:16.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"0ca6e299-b980-41c9-8bcc-b6a9a77cbd8d","version":"2.0.0","action":"status","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"ref_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222"}}}},{"summary":"Provider sends the latest order status","api":"on_status","details":[{"description":"Provider sends the latest order status","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n Seller Platform (BPP)->>Buyer Platform (BAP):on_confirm\n Buyer Platform (BAP)-->>Seller Platform (BPP): NACK \n Buyer Platform (BAP)->>Seller Platform (BPP): status\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n rect rgb(191, 223, 255)\n Seller Platform (BPP)->>Buyer Platform (BAP):on_status\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK\n end "}],"reference":"if any","example":{"summary":"Return confirmed ticket order with payment confirmation","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:53:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"0ca6e299-b980-41c9-8bcc-b6a9a77cbd8d","version":"2.0.0","action":"on_status","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"id":"01","status":"ACTIVE","items":[{"id":"I0","descriptor":{"name":"Parent Item for Culture & Heritage","code":"ABSTRACT","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C2"],"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"tags":[{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I1","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I2","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I5","descriptor":{"name":"Add on item","code":"ADD_ON","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","price":{"currency":"INR","value":"100"},"quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","type":"VISIT","state":{"descriptor":{"code":"CONFIRMED"}},"stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"timestamp":"2024-06-28T05:00:16.000Z"},"authorization":{"type":"QR","token":"iVBORw0KGgoAAAANSUhEUgAAAH0AAAB9AQAAAACn+1GIAAAApklEQVR4Xu2UMQ4EMQgD/QP+/0vK6zjsvayUMmavWxQpMAUBkwS12wcveAAkgNSCD3rR5Lkgoai3GUCMgWqbAEYR3HxAkZlzU/0MyBisYRsgI1ERFfcpBpA+ze6k56Cj7KTdXNigFWZvSOpsgqLfd18i2aAukXh9TXBNmdWt5gzA/oqzWkkN8HtA7G8CNOwYAiZt3wZixUfkA32OHNQq7Bxs9oI/gC/9fV8AVCkPjQAAAABJRU5ErkJggg==","valid_to":"2024-06-30T05:00:16.000Z","status":"UNCLAIMED"}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}}],"provider":{"id":"P1","descriptor":{"name":"Unreserved Entry Pass","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"locations":[{"id":"L1","gps":"28.524596, 77.185577","descriptor":{"name":"Qutab Minar","short_desc":"Seth Sarai, Mehrauli, New Delhi, Delhi. The Qutb Minar, also spelled Qutub Minar and Qutab Minar, is a minaret and \"victory tower\" that forms part of the Qutb complex","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"5"}]},"cancellation_terms":[{"cancellation_fee":{"percentage":"10"},"fulfillment_state":{"descriptor":{"code":"CONFIRMED"}},"cancel_by":{"label":"DURATION","duration":"PT1H30M"}},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}},{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":true}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/replacement.html"}}],"billing":{"name":"John Doe","email":"john.doe@example.com","phone":"+91-9897867564"},"quote":{"breakup":[{"title":"BASE_FARE","item":{"id":"I1","price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"350"}},{"title":"BASE_FARE","item":{"id":"I2","price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"150"}},{"title":"TAX","price":{"currency":"INR","value":"0"}},{"title":"ADD_ONS","item":{"id":"I1","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I2","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I5"},"price":{"currency":"INR","value":"100"}}],"price":{"currency":"INR","value":"800"}},"payments":[{"id":"PA1","collected_by":"BAP","status":"PAID","type":"PRE-ORDER","params":{"transaction_id":"61b4be7e-d85c-456a-99e5-ce3d83be135d","amount":"800","currency":"INR"}}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]},{"descriptor":{"code":"BPP_TERMS","name":"BPP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"MANDATORY_ARBITRATION"},"value":"true"},{"descriptor":{"code":"COURT_JURISDICTION"},"value":"New Delhi"},{"descriptor":{"code":"DELAY_INTEREST"},"value":"2.5 %"},{"descriptor":{"code":"SETTLEMENT_AMOUNT"},"value":"7 INR"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_BANK_CODE"},"value":"XXXXXXXX"},{"descriptor":{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER"},"value":"xxxxxxxxxxxxxx"}]}],"created_at":"2024-06-26T04:53:26.000Z","updated_at":"2024-06-26T04:53:26.000Z"}}}}},{"summary":"Buyer app cancels the request for ticket(Optional)","api":"cancel","details":[{"description":"Buyer app requests for cancellation of ticket.","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n rect rgb(191, 223, 255)\n Buyer Platform (BAP)->>Seller Platform (BPP): cancel - with soft_cancel request\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n end\n Seller Platform (BPP)->>Buyer Platform (BAP):on_cancel\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK"}],"reference":"if any","example":{"summary":"Cancel ticket booking","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T05:10:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"83fc2d6c-9d92-4b8a-a0bb-9e410d2b2a1e","version":"2.0.0","action":"cancel","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order_id":"O1","cancellation_reason_id":"0","descriptor":{"name":"Ride Cancellation","code":"SOFT_CANCEL"}}}}},{"summary":"Provider accepts/appends the terms of cancellation(Optional)","api":"on_cancel","details":[{"description":"Provider accepts the terms of order and appends its own terms and provides with latest order update.","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n Buyer Platform (BAP)->>Seller Platform (BPP): cancel - with soft_cancel request\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n rect rgb(191, 223, 255)\n Seller Platform (BPP)->>Buyer Platform (BAP):on_cancel\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK\n end"}],"reference":"if any","example":{"summary":"Cancel ticket booking","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T05:11:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"83fc2d6c-9d92-4b8a-a0bb-9e410d2b2a1e","version":"2.0.0","action":"on_cancel","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"id":"01","status":"SOFT_CANCEL","items":[{"id":"I0","descriptor":{"name":"Parent Item for Culture & Heritage","code":"ABSTRACT","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C2"],"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"tags":[{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I1","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I2","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I5","descriptor":{"name":"Add on item","code":"ADD_ON","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","price":{"currency":"INR","value":"100"},"quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","type":"VISIT","state":{"descriptor":{"code":"CONFIRMED"}},"stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"timestamp":"2024-06-28T05:00:16.000Z"},"authorization":{"type":"QR","token":"iVBORw0KGgoAAAANSUhEUgAAAH0AAAB9AQAAAACn+1GIAAAApklEQVR4Xu2UMQ4EMQgD/QP+/0vK6zjsvayUMmavWxQpMAUBkwS12wcveAAkgNSCD3rR5Lkgoai3GUCMgWqbAEYR3HxAkZlzU/0MyBisYRsgI1ERFfcpBpA+ze6k56Cj7KTdXNigFWZvSOpsgqLfd18i2aAukXh9TXBNmdWt5gzA/oqzWkkN8HtA7G8CNOwYAiZt3wZixUfkA32OHNQq7Bxs9oI/gC/9fV8AVCkPjQAAAABJRU5ErkJggg==","valid_to":"2024-06-30T05:00:16.000Z","status":"UNCLAIMED"}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}}],"provider":{"id":"P1","descriptor":{"name":"Event ticketing","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"locations":[{"id":"L1","gps":"28.524596, 77.185577","descriptor":{"name":"Qutab Minar","short_desc":"Seth Sarai, Mehrauli, New Delhi, Delhi. The Qutb Minar, also spelled Qutub Minar and Qutab Minar, is a minaret and \"victory tower\" that forms part of the Qutb complex","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"5"}]},"cancellation_terms":[{"cancellation_fee":{"percentage":"10"},"fulfillment_state":{"descriptor":{"code":"CONFIRMED"}},"cancel_by":{"label":"DURATION","duration":"PT1H30M"}},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}},{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":true}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/replacement.html"}}],"quote":{"breakup":[{"title":"BASE_FARE","item":{"id":"I1","price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"350"}},{"title":"BASE_FARE","item":{"id":"I2","price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"150"}},{"title":"TAX","price":{"currency":"INR","value":"0"}},{"title":"ADD_ONS","item":{"id":"I1","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I2","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I5"},"price":{"currency":"INR","value":"100"}},{"title":"REFUND","item":{"id":"I1","price":{"currency":"INR","value":"-350"},"quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","price":{"currency":"INR","value":"-100"}}]},"price":{"currency":"INR","value":"-450"}},{"title":"REFUND","item":{"id":"I2","price":{"currency":"INR","value":"-150"},"quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","price":{"currency":"INR","value":"100"}}]},"price":{"currency":"INR","value":"-250"}},{"title":"REFUND","item":{"id":"I5"},"price":{"currency":"INR","value":"-100"}},{"title":"CANCELLATION_CHARGES","price":{"currency":"INR","value":"100"}}],"price":{"currency":"INR","value":"100"}},"payments":[{"id":"PA1","collected_by":"BAP","status":"PAID","type":"PRE-ORDER","params":{"transaction_id":"61b4be7e-d85c-456a-99e5-ce3d83be135d","amount":"800","currency":"INR"}}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]},{"descriptor":{"code":"BPP_TERMS","name":"BPP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"MANDATORY_ARBITRATION"},"value":"true"},{"descriptor":{"code":"COURT_JURISDICTION"},"value":"New Delhi"},{"descriptor":{"code":"DELAY_INTEREST"},"value":"2.5 %"},{"descriptor":{"code":"SETTLEMENT_AMOUNT"},"value":"7 INR"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_BANK_CODE"},"value":"XXXXXXXX"},{"descriptor":{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER"},"value":"xxxxxxxxxxxxxx"}]}]}}}}},{"summary":"Buyer app confirms the cancel request for ticket","api":"cancel","details":[{"description":"Buyer app give the confirmation to cancel the ticket.","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n rect rgb(191, 223, 255)\n Buyer Platform (BAP)->>Seller Platform (BPP): cancel - with confirm_cancel request\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n end\n Seller Platform (BPP)->>Buyer Platform (BAP):on_cancel\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK"}],"reference":"if any","example":{"summary":"Cancel ticket booking","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T05:12:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"af0fb8a7-0ca0-4c40-85f5-f95dcff61215","version":"2.0.0","action":"cancel","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order_id":"O1","cancellation_reason_id":"0","descriptor":{"name":"Ride Cancellation","code":"CONFIRM_CANCEL"}}}}},{"summary":"Provider accepts the terms of cancellation","api":"on_cancel","details":[{"description":"Provider accepts the terms of order and provides with latest order update.","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n Buyer Platform (BAP)->>Seller Platform (BPP): cancel - with confirm_cancel request\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n rect rgb(191, 223, 255)\n Seller Platform (BPP)->>Buyer Platform (BAP):on_cancel\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK\n end "}],"reference":"if any","example":{"summary":"Cancel ticket booking","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T05:11:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"af0fb8a7-0ca0-4c40-85f5-f95dcff61215","version":"2.0.0","action":"on_cancel","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"id":"01","status":"CANCELLED","items":[{"id":"I0","descriptor":{"name":"Parent Item for Culture & Heritage","code":"ABSTRACT","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C2"],"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"tags":[{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I1","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I2","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I5","descriptor":{"name":"Add on item","code":"ADD_ON","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","price":{"currency":"INR","value":"100"},"quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","type":"VISIT","state":{"descriptor":{"code":"CONFIRMED"}},"stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"timestamp":"2024-06-28T05:00:16.000Z"},"authorization":{"type":"QR","token":"iVBORw0KGgoAAAANSUhEUgAAAH0AAAB9AQAAAACn+1GIAAAApklEQVR4Xu2UMQ4EMQgD/QP+/0vK6zjsvayUMmavWxQpMAUBkwS12wcveAAkgNSCD3rR5Lkgoai3GUCMgWqbAEYR3HxAkZlzU/0MyBisYRsgI1ERFfcpBpA+ze6k56Cj7KTdXNigFWZvSOpsgqLfd18i2aAukXh9TXBNmdWt5gzA/oqzWkkN8HtA7G8CNOwYAiZt3wZixUfkA32OHNQq7Bxs9oI/gC/9fV8AVCkPjQAAAABJRU5ErkJggg==","valid_to":"2024-06-30T05:00:16.000Z","status":"UNCLAIMED"}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}}],"provider":{"id":"P1","descriptor":{"name":"Unreserved Entry Pass","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"locations":[{"id":"L1","gps":"28.524596, 77.185577","descriptor":{"name":"Qutab Minar","short_desc":"Seth Sarai, Mehrauli, New Delhi, Delhi. The Qutb Minar, also spelled Qutub Minar and Qutab Minar, is a minaret and \"victory tower\" that forms part of the Qutb complex","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"5"}]},"cancellation_terms":[{"cancellation_fee":{"percentage":"10"},"fulfillment_state":{"descriptor":{"code":"CONFIRMED"}},"cancel_by":{"label":"DURATION","duration":"PT1H30M"}},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}},{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":true}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/replacement.html"}}],"quote":{"breakup":[{"title":"BASE_FARE","item":{"id":"I1","price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"350"}},{"title":"BASE_FARE","item":{"id":"I2","price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"150"}},{"title":"TAX","price":{"currency":"INR","value":"0"}},{"title":"ADD_ONS","item":{"id":"I1","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I2","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I5"},"price":{"currency":"INR","value":"100"}},{"title":"REFUND","item":{"id":"I1","price":{"currency":"INR","value":"-350"},"quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","price":{"currency":"INR","value":"-100"}}]},"price":{"currency":"INR","value":"-450"}},{"title":"REFUND","item":{"id":"I2","price":{"currency":"INR","value":"-150"},"quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","price":{"currency":"INR","value":"100"}}]},"price":{"currency":"INR","value":"-250"}},{"title":"REFUND","item":{"id":"I5"},"price":{"currency":"INR","value":"-100"}},{"title":"CANCELLATION_CHARGES","price":{"currency":"INR","value":"100"}}],"price":{"currency":"INR","value":"100"}},"payments":[{"id":"PA1","collected_by":"BAP","status":"PAID","type":"PRE-ORDER","params":{"transaction_id":"61b4be7e-d85c-456a-99e5-ce3d83be135d","amount":"800","currency":"INR"}}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]},{"descriptor":{"code":"BPP_TERMS","name":"BPP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"MANDATORY_ARBITRATION"},"value":"true"},{"descriptor":{"code":"COURT_JURISDICTION"},"value":"New Delhi"},{"descriptor":{"code":"DELAY_INTEREST"},"value":"2.5 %"},{"descriptor":{"code":"SETTLEMENT_AMOUNT"},"value":"7 INR"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_BANK_CODE"},"value":"XXXXXXXX"},{"descriptor":{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER"},"value":"xxxxxxxxxxxxxx"}]}]}}}}}]},{"summary":"Unreserved Entry Pass - User Cancellation Flow","details":[{"description":"Detailed process of cancelling a ticket with soft & confirm status.","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n Seller Platform (BPP)->>Buyer Platform (BAP):on_confirm\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK \n Buyer Platform (BAP)->>Seller Platform (BPP): status\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK \n Seller Platform (BPP)->>Buyer Platform (BAP):on_status\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK\n Buyer Platform (BAP)->>Seller Platform (BPP): cancel - with soft_cancel request\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n Seller Platform (BPP)->>Buyer Platform (BAP):on_cancel\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK\n Buyer Platform (BAP)->>Seller Platform (BPP): cancel - with confirm_cancel request\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n Seller Platform (BPP)->>Buyer Platform (BAP):on_cancel\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK "}],"steps":[{"summary":"Provider confirms the request","api":"on_confirm","details":[{"description":"Provider platform confirms the order and provides details of the journey on confirmation","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n rect rgb(191, 223, 255)\n Seller Platform (BPP)->>Buyer Platform (BAP):on_confirm\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK \n end\n Buyer Platform (BAP)->>Seller Platform (BPP): cancel - with soft_cancel request\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n Seller Platform (BPP)->>Buyer Platform (BAP):on_cancel\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK"}],"reference":"if any","example":{"summary":"Return confirmed ticket order with payment confirmation","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:53:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"6d287e01-59bc-4c6d-b0ab-e07649eae6b2","version":"2.0.0","action":"on_confirm","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"id":"01","status":"ACTIVE","items":[{"id":"I0","descriptor":{"name":"Parent Item for Culture & Heritage","code":"ABSTRACT","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C2"],"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"tags":[{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I1","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I2","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I5","descriptor":{"name":"Add on item","code":"ADD_ON","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","price":{"currency":"INR","value":"100"},"quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","type":"VISIT","state":{"descriptor":{"code":"CONFIRMED"}},"stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"timestamp":"2024-06-28T05:00:16.000Z"},"authorization":{"type":"QR","token":"iVBORw0KGgoAAAANSUhEUgAAAH0AAAB9AQAAAACn+1GIAAAApklEQVR4Xu2UMQ4EMQgD/QP+/0vK6zjsvayUMmavWxQpMAUBkwS12wcveAAkgNSCD3rR5Lkgoai3GUCMgWqbAEYR3HxAkZlzU/0MyBisYRsgI1ERFfcpBpA+ze6k56Cj7KTdXNigFWZvSOpsgqLfd18i2aAukXh9TXBNmdWt5gzA/oqzWkkN8HtA7G8CNOwYAiZt3wZixUfkA32OHNQq7Bxs9oI/gC/9fV8AVCkPjQAAAABJRU5ErkJggg==","valid_to":"2024-06-30T05:00:16.000Z","status":"UNCLAIMED"}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}}],"provider":{"id":"P1","descriptor":{"name":"Unreserved Entry Pass","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"locations":[{"id":"L1","gps":"28.524596, 77.185577","descriptor":{"name":"Qutab Minar","short_desc":"Seth Sarai, Mehrauli, New Delhi, Delhi. The Qutb Minar, also spelled Qutub Minar and Qutab Minar, is a minaret and \"victory tower\" that forms part of the Qutb complex","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"5"}]},"cancellation_terms":[{"cancellation_fee":{"percentage":"10"},"fulfillment_state":{"descriptor":{"code":"CONFIRMED"}},"cancel_by":{"label":"DURATION","duration":"PT1H30M"}},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}},{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":true}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/replacement.html"}}],"billing":{"name":"John Doe","email":"john.doe@example.com","phone":"+91-9897867564"},"quote":{"breakup":[{"title":"BASE_FARE","item":{"id":"I1","price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"350"}},{"title":"BASE_FARE","item":{"id":"I2","price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"150"}},{"title":"TAX","price":{"currency":"INR","value":"0"}},{"title":"ADD_ONS","item":{"id":"I1","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I2","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I5"},"price":{"currency":"INR","value":"100"}}],"price":{"currency":"INR","value":"800"}},"payments":[{"id":"PA1","collected_by":"BAP","status":"PAID","type":"PRE-ORDER","params":{"transaction_id":"61b4be7e-d85c-456a-99e5-ce3d83be135d","amount":"800","currency":"INR"}}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]},{"descriptor":{"code":"BPP_TERMS","name":"BPP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"MANDATORY_ARBITRATION"},"value":"true"},{"descriptor":{"code":"COURT_JURISDICTION"},"value":"New Delhi"},{"descriptor":{"code":"DELAY_INTEREST"},"value":"2.5 %"},{"descriptor":{"code":"SETTLEMENT_AMOUNT"},"value":"7 INR"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_BANK_CODE"},"value":"XXXXXXXX"},{"descriptor":{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER"},"value":"xxxxxxxxxxxxxx"}]}],"created_at":"2024-06-26T04:53:26.000Z","updated_at":"2024-06-26T04:53:26.000Z"}}}}},{"summary":"Buyer app cancels the request for ticket","api":"cancel","details":[{"description":"Buyer app requests for cancellation of ticket.","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n Seller Platform (BPP)->>Buyer Platform (BAP):on_confirm\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK \n rect rgb(191, 223, 255)\n Buyer Platform (BAP)->>Seller Platform (BPP): cancel - with soft_cancel request\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n end\n Seller Platform (BPP)->>Buyer Platform (BAP):on_cancel\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK"}],"reference":"if any","example":{"summary":"Cancel ticket booking","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T05:10:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"83fc2d6c-9d92-4b8a-a0bb-9e410d2b2a1e","version":"2.0.0","action":"cancel","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order_id":"O1","cancellation_reason_id":"0","descriptor":{"name":"Ride Cancellation","code":"SOFT_CANCEL"}}}}},{"summary":"Provider accepts/appends the terms of cancellation","api":"on_cancel","details":[{"description":"Provider accepts the terms of order and appends its own terms and provides with latest order update.","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n Seller Platform (BPP)->>Buyer Platform (BAP):on_confirm\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK\n Buyer Platform (BAP)->>Seller Platform (BPP): cancel - with soft_cancel request\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n rect rgb(191, 223, 255)\n Seller Platform (BPP)->>Buyer Platform (BAP):on_cancel\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK\n end"}],"reference":"if any","example":{"summary":"Cancel ticket booking","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T05:11:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"af0fb8a7-0ca0-4c40-85f5-f95dcff61215","version":"2.0.0","action":"on_cancel","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"id":"01","status":"CANCELLED","items":[{"id":"I0","descriptor":{"name":"Parent Item for Culture & Heritage","code":"ABSTRACT","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C2"],"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"tags":[{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I1","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I2","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I5","descriptor":{"name":"Add on item","code":"ADD_ON","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","price":{"currency":"INR","value":"100"},"quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","type":"VISIT","state":{"descriptor":{"code":"CONFIRMED"}},"stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"timestamp":"2024-06-28T05:00:16.000Z"},"authorization":{"type":"QR","token":"iVBORw0KGgoAAAANSUhEUgAAAH0AAAB9AQAAAACn+1GIAAAApklEQVR4Xu2UMQ4EMQgD/QP+/0vK6zjsvayUMmavWxQpMAUBkwS12wcveAAkgNSCD3rR5Lkgoai3GUCMgWqbAEYR3HxAkZlzU/0MyBisYRsgI1ERFfcpBpA+ze6k56Cj7KTdXNigFWZvSOpsgqLfd18i2aAukXh9TXBNmdWt5gzA/oqzWkkN8HtA7G8CNOwYAiZt3wZixUfkA32OHNQq7Bxs9oI/gC/9fV8AVCkPjQAAAABJRU5ErkJggg==","valid_to":"2024-06-30T05:00:16.000Z","status":"UNCLAIMED"}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}}],"provider":{"id":"P1","descriptor":{"name":"Unreserved Entry Pass","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"locations":[{"id":"L1","gps":"28.524596, 77.185577","descriptor":{"name":"Qutab Minar","short_desc":"Seth Sarai, Mehrauli, New Delhi, Delhi. The Qutb Minar, also spelled Qutub Minar and Qutab Minar, is a minaret and \"victory tower\" that forms part of the Qutb complex","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"5"}]},"cancellation_terms":[{"cancellation_fee":{"percentage":"10"},"fulfillment_state":{"descriptor":{"code":"CONFIRMED"}},"cancel_by":{"label":"DURATION","duration":"PT1H30M"}},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}},{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":true}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/replacement.html"}}],"quote":{"breakup":[{"title":"BASE_FARE","item":{"id":"I1","price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"350"}},{"title":"BASE_FARE","item":{"id":"I2","price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"150"}},{"title":"TAX","price":{"currency":"INR","value":"0"}},{"title":"ADD_ONS","item":{"id":"I1","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I2","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I5"},"price":{"currency":"INR","value":"100"}},{"title":"REFUND","item":{"id":"I1","price":{"currency":"INR","value":"-350"},"quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","price":{"currency":"INR","value":"-100"}}]},"price":{"currency":"INR","value":"-450"}},{"title":"REFUND","item":{"id":"I2","price":{"currency":"INR","value":"-150"},"quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","price":{"currency":"INR","value":"100"}}]},"price":{"currency":"INR","value":"-250"}},{"title":"REFUND","item":{"id":"I5"},"price":{"currency":"INR","value":"-100"}},{"title":"CANCELLATION_CHARGES","price":{"currency":"INR","value":"100"}}],"price":{"currency":"INR","value":"100"}},"payments":[{"id":"PA1","collected_by":"BAP","status":"PAID","type":"PRE-ORDER","params":{"transaction_id":"61b4be7e-d85c-456a-99e5-ce3d83be135d","amount":"800","currency":"INR"}}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]},{"descriptor":{"code":"BPP_TERMS","name":"BPP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"MANDATORY_ARBITRATION"},"value":"true"},{"descriptor":{"code":"COURT_JURISDICTION"},"value":"New Delhi"},{"descriptor":{"code":"DELAY_INTEREST"},"value":"2.5 %"},{"descriptor":{"code":"SETTLEMENT_AMOUNT"},"value":"7 INR"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_BANK_CODE"},"value":"XXXXXXXX"},{"descriptor":{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER"},"value":"xxxxxxxxxxxxxx"}]}]}}}}},{"summary":"Buyer app confirms the cancel request for ticket","api":"cancel","details":[{"description":"Buyer app give the confirmation to cancel the ticket.","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n rect rgb(191, 223, 255)\n Buyer Platform (BAP)->>Seller Platform (BPP): cancel - with confirm_cancel request\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n end\n Seller Platform (BPP)->>Buyer Platform (BAP):on_cancel\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK"}],"reference":"if any","example":{"summary":"Cancel ticket booking","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T05:12:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"af0fb8a7-0ca0-4c40-85f5-f95dcff61215","version":"2.0.0","action":"cancel","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order_id":"O1","cancellation_reason_id":"0","descriptor":{"name":"Ride Cancellation","code":"CONFIRM_CANCEL"}}}}},{"summary":"Provider accepts the terms of cancellation","api":"on_cancel","details":[{"description":"Provider accepts the terms of order and provides with latest order update.","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n Buyer Platform (BAP)->>Seller Platform (BPP): cancel - with confirm_cancel request\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n rect rgb(191, 223, 255)\n Seller Platform (BPP)->>Buyer Platform (BAP):on_cancel\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK\n end "}],"reference":"if any","example":{"summary":"Cancel ticket booking","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T05:11:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"af0fb8a7-0ca0-4c40-85f5-f95dcff61215","version":"2.0.0","action":"on_cancel","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"id":"01","status":"CANCELLED","items":[{"id":"I0","descriptor":{"name":"Parent Item for Culture & Heritage","code":"ABSTRACT","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C2"],"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"tags":[{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I1","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I2","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I5","descriptor":{"name":"Add on item","code":"ADD_ON","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","price":{"currency":"INR","value":"100"},"quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","type":"VISIT","state":{"descriptor":{"code":"CONFIRMED"}},"stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"timestamp":"2024-06-28T05:00:16.000Z"},"authorization":{"type":"QR","token":"iVBORw0KGgoAAAANSUhEUgAAAH0AAAB9AQAAAACn+1GIAAAApklEQVR4Xu2UMQ4EMQgD/QP+/0vK6zjsvayUMmavWxQpMAUBkwS12wcveAAkgNSCD3rR5Lkgoai3GUCMgWqbAEYR3HxAkZlzU/0MyBisYRsgI1ERFfcpBpA+ze6k56Cj7KTdXNigFWZvSOpsgqLfd18i2aAukXh9TXBNmdWt5gzA/oqzWkkN8HtA7G8CNOwYAiZt3wZixUfkA32OHNQq7Bxs9oI/gC/9fV8AVCkPjQAAAABJRU5ErkJggg==","valid_to":"2024-06-30T05:00:16.000Z","status":"UNCLAIMED"}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}}],"provider":{"id":"P1","descriptor":{"name":"Unreserved Entry Pass","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"locations":[{"id":"L1","gps":"28.524596, 77.185577","descriptor":{"name":"Qutab Minar","short_desc":"Seth Sarai, Mehrauli, New Delhi, Delhi. The Qutb Minar, also spelled Qutub Minar and Qutab Minar, is a minaret and \"victory tower\" that forms part of the Qutb complex","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"5"}]},"cancellation_terms":[{"cancellation_fee":{"percentage":"10"},"fulfillment_state":{"descriptor":{"code":"CONFIRMED"}},"cancel_by":{"label":"DURATION","duration":"PT1H30M"}},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}},{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":true}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/replacement.html"}}],"quote":{"breakup":[{"title":"BASE_FARE","item":{"id":"I1","price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"350"}},{"title":"BASE_FARE","item":{"id":"I2","price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"150"}},{"title":"TAX","price":{"currency":"INR","value":"0"}},{"title":"ADD_ONS","item":{"id":"I1","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I2","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I5"},"price":{"currency":"INR","value":"100"}},{"title":"REFUND","item":{"id":"I1","price":{"currency":"INR","value":"-350"},"quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","price":{"currency":"INR","value":"-100"}}]},"price":{"currency":"INR","value":"-450"}},{"title":"REFUND","item":{"id":"I2","price":{"currency":"INR","value":"-150"},"quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","price":{"currency":"INR","value":"100"}}]},"price":{"currency":"INR","value":"-250"}},{"title":"REFUND","item":{"id":"I5"},"price":{"currency":"INR","value":"-100"}},{"title":"CANCELLATION_CHARGES","price":{"currency":"INR","value":"100"}}],"price":{"currency":"INR","value":"100"}},"payments":[{"id":"PA1","collected_by":"BAP","status":"PAID","type":"PRE-ORDER","params":{"transaction_id":"61b4be7e-d85c-456a-99e5-ce3d83be135d","amount":"800","currency":"INR"}}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]},{"descriptor":{"code":"BPP_TERMS","name":"BPP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"MANDATORY_ARBITRATION"},"value":"true"},{"descriptor":{"code":"COURT_JURISDICTION"},"value":"New Delhi"},{"descriptor":{"code":"DELAY_INTEREST"},"value":"2.5 %"},{"descriptor":{"code":"SETTLEMENT_AMOUNT"},"value":"7 INR"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_BANK_CODE"},"value":"XXXXXXXX"},{"descriptor":{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER"},"value":"xxxxxxxxxxxxxx"}]}]}}}}}]},{"summary":"Unreserved Entry Pass - Partial Cancellation Flow","details":[{"description":"Detailed process of cancelling a ticket with soft & confirm status.","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n Buyer Platform (BAP)->>Seller Platform (BPP): update - with soft_cancel request\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK \n Seller Platform (BPP)->>Buyer Platform (BAP):on_update\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK\n Buyer Platform (BAP)->>Seller Platform (BPP): update - with confirm_cancel request\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK\n Seller Platform (BPP)->>Buyer Platform (BAP):on_update \n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK "}],"steps":[{"summary":"Buyer app sends the request for partial cancel","api":"update","details":[{"description":"Buyer app sends the request for partial cancel with soft cancel request","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n rect rgb(191, 223, 255)\n Buyer Platform (BAP)->>Seller Platform (BPP): update - with soft_cancel request\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK \n end\n Seller Platform (BPP)->>Buyer Platform (BAP):on_update\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK"}],"reference":"if any","example":{"summary":"Return confirmed ticket order with payment confirmation","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:53:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"5805a26e-f0b0-423d-8913-acb5a7744acf","version":"2.0.0","action":"update","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"update_target":"order.items[1]","order":{"cancellation":{"reason":{"id":"0","descriptor":{"code":"SOFT_CANCEL"}}},"items":[{"id":"I2","quantity":{"selected":{"count":0}}}]}}}}},{"summary":"Provider app return the updated order with soft_cancel status","api":"on_update","details":[{"description":"Provider app return the updated order with soft_cancel status.","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n Buyer Platform (BAP)->>Seller Platform (BPP): update - with soft_cancel request\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK \n rect rgb(191, 223, 255)\n Seller Platform (BPP)->>Buyer Platform (BAP):on_update\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK\n end"}],"reference":"if any","example":{"summary":"Cancel ticket booking","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:53:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"5805a26e-f0b0-423d-8913-acb5a7744acf","version":"2.0.0","action":"on_update","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"id":"01","status":"SOFT_CANCEL","items":[{"id":"I0","descriptor":{"name":"Parent Item for Culture & Heritage","code":"ABSTRACT","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C2"],"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"tags":[{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I1","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I2","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":0}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I5","descriptor":{"name":"Add on item","code":"ADD_ON","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","price":{"currency":"INR","value":"100"},"quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","type":"VISIT","state":{"descriptor":{"code":"CONFIRMED"}},"stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"timestamp":"2024-06-28T05:00:16.000Z"},"authorization":{"type":"QR","token":"iVBORw0KGgoAAAANSUhEUgAAAH0AAAB9AQAAAACn+1GIAAAApklEQVR4Xu2UMQ4EMQgD/QP+/0vK6zjsvayUMmavWxQpMAUBkwS12wcveAAkgNSCD3rR5Lkgoai3GUCMgWqbAEYR3HxAkZlzU/0MyBisYRsgI1ERFfcpBpA+ze6k56Cj7KTdXNigFWZvSOpsgqLfd18i2aAukXh9TXBNmdWt5gzA/oqzWkkN8HtA7G8CNOwYAiZt3wZixUfkA32OHNQq7Bxs9oI/gC/9fV8AVCkPjQAAAABJRU5ErkJggg==","valid_to":"2024-06-30T05:00:16.000Z","status":"UNCLAIMED"}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}}],"provider":{"id":"P1","descriptor":{"name":"Unreserved Entry Pass","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"locations":[{"id":"L1","gps":"28.524596, 77.185577","descriptor":{"name":"Qutab Minar","short_desc":"Seth Sarai, Mehrauli, New Delhi, Delhi. The Qutb Minar, also spelled Qutub Minar and Qutab Minar, is a minaret and \"victory tower\" that forms part of the Qutb complex","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"5"}]},"cancellation_terms":[{"cancellation_fee":{"percentage":"10"},"fulfillment_state":{"descriptor":{"code":"CONFIRMED"}},"cancel_by":{"label":"DURATION","duration":"PT1H30M"}},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}},{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":true}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/replacement.html"}}],"billing":{"name":"John Doe","email":"john.doe@example.com","phone":"+91-9897867564"},"quote":{"breakup":[{"title":"BASE_FARE","item":{"id":"I1","price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"350"}},{"title":"BASE_FARE","item":{"id":"I2","price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"150"}},{"title":"TAX","price":{"currency":"INR","value":"0"}},{"title":"ADD_ONS","item":{"id":"I1","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I2","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I5"},"price":{"currency":"INR","value":"100"}},{"title":"REFUND","item":{"id":"I2","price":{"currency":"INR","value":"-150"},"quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","price":{"currency":"INR","value":"100"}}]},"price":{"currency":"INR","value":"-250"}},{"title":"CANCELLATION_CHARGES","price":{"currency":"INR","value":"0"}}],"price":{"currency":"INR","value":"550"}},"payments":[{"id":"PA1","collected_by":"BAP","status":"PAID","type":"PRE-ORDER","params":{"transaction_id":"61b4be7e-d85c-456a-99e5-ce3d83be135d","amount":"800","currency":"INR"}}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]},{"descriptor":{"code":"BPP_TERMS","name":"BPP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"MANDATORY_ARBITRATION"},"value":"true"},{"descriptor":{"code":"COURT_JURISDICTION"},"value":"New Delhi"},{"descriptor":{"code":"DELAY_INTEREST"},"value":"2.5 %"},{"descriptor":{"code":"SETTLEMENT_AMOUNT"},"value":"7 INR"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_BANK_CODE"},"value":"XXXXXXXX"},{"descriptor":{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER"},"value":"xxxxxxxxxxxxxx"}]}],"created_at":"2024-06-26T04:53:26.000Z","updated_at":"2024-06-26T04:53:26.000Z"}}}}},{"summary":"Buyer app sends the request for partial cancel","api":"update","details":[{"description":"Buyer app sends the request for partial cancel with confirm cancel request","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n rect rgb(191, 223, 255)\n Buyer Platform (BAP)->>Seller Platform (BPP): update - with soft_cancel request\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK \n end\n Seller Platform (BPP)->>Buyer Platform (BAP):on_update\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK"}],"reference":"if any","example":{"summary":"Return confirmed ticket order with payment confirmation","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:53:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"29e8528f-e679-4264-995b-0f6b9a4ffc0d","version":"2.0.0","action":"update","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"update_target":"order.items[1]","order":{"cancellation":{"reason":{"id":"0","descriptor":{"code":"CONFIRM_CANCEL"}}},"items":[{"id":"I2","quantity":{"selected":{"count":0}}}]}}}}},{"summary":"Provider app return the updated order with soft_cancel status","api":"on_update","details":[{"description":"Provider app return the order with updated status.","mermaid":"sequenceDiagram\n participant Buyer Platform (BAP)\n participant Seller Platform (BPP)\n Buyer Platform (BAP)->>Seller Platform (BPP): update - with soft_cancel request\n Seller Platform (BPP)-->>Buyer Platform (BAP):ACK \n rect rgb(191, 223, 255)\n Seller Platform (BPP)->>Buyer Platform (BAP):on_update\n Buyer Platform (BAP)-->>Seller Platform (BPP): ACK\n end"}],"reference":"if any","example":{"summary":"Cancel ticket booking","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:53:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"29e8528f-e679-4264-995b-0f6b9a4ffc0d","version":"2.0.0","action":"on_update","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"id":"01","status":"ACTIVE","items":[{"id":"I0","descriptor":{"name":"Parent Item for Culture & Heritage","code":"ABSTRACT","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C2"],"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"tags":[{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I1","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I2","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":0}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I5","descriptor":{"name":"Add on item","code":"ADD_ON","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","price":{"currency":"INR","value":"100"},"quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","type":"VISIT","state":{"descriptor":{"code":"CONFIRMED"}},"stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"timestamp":"2024-06-28T05:00:16.000Z"},"authorization":{"type":"QR","token":"iVBORw0KGgoAAAANSUhEUgAAAH0AAAB9AQAAAACn+1GIAAAApklEQVR4Xu2UMQ4EMQgD/QP+/0vK6zjsvayUMmavWxQpMAUBkwS12wcveAAkgNSCD3rR5Lkgoai3GUCMgWqbAEYR3HxAkZlzU/0MyBisYRsgI1ERFfcpBpA+ze6k56Cj7KTdXNigFWZvSOpsgqLfd18i2aAukXh9TXBNmdWt5gzA/oqzWkkN8HtA7G8CNOwYAiZt3wZixUfkA32OHNQq7Bxs9oI/gC/9fV8AVCkPjQAAAABJRU5ErkJggg==","valid_to":"2024-06-30T05:00:16.000Z","status":"UNCLAIMED"}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}}],"provider":{"id":"P1","descriptor":{"name":"Unreserved Entry Pass","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"locations":[{"id":"L1","gps":"28.524596, 77.185577","descriptor":{"name":"Qutab Minar","short_desc":"Seth Sarai, Mehrauli, New Delhi, Delhi. The Qutb Minar, also spelled Qutub Minar and Qutab Minar, is a minaret and \"victory tower\" that forms part of the Qutb complex","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"5"}]},"cancellation_terms":[{"cancellation_fee":{"percentage":"10"},"fulfillment_state":{"descriptor":{"code":"CONFIRMED"}},"cancel_by":{"label":"DURATION","duration":"PT1H30M"}},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}},{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":true}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/replacement.html"}}],"billing":{"name":"John Doe","email":"john.doe@example.com","phone":"+91-9897867564"},"quote":{"breakup":[{"title":"BASE_FARE","item":{"id":"I1","price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"350"}},{"title":"BASE_FARE","item":{"id":"I2","price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"150"}},{"title":"TAX","price":{"currency":"INR","value":"0"}},{"title":"ADD_ONS","item":{"id":"I1","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I2","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I5"},"price":{"currency":"INR","value":"100"}},{"title":"REFUND","item":{"id":"I2","price":{"currency":"INR","value":"-150"},"quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","price":{"currency":"INR","value":"100"}}]},"price":{"currency":"INR","value":"-250"}},{"title":"CANCELLATION_CHARGES","price":{"currency":"INR","value":"0"}}],"price":{"currency":"INR","value":"550"}},"payments":[{"id":"PA1","collected_by":"BAP","status":"PAID","type":"PRE-ORDER","params":{"transaction_id":"61b4be7e-d85c-456a-99e5-ce3d83be135d","amount":"800","currency":"INR"}}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]},{"descriptor":{"code":"BPP_TERMS","name":"BPP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"MANDATORY_ARBITRATION"},"value":"true"},{"descriptor":{"code":"COURT_JURISDICTION"},"value":"New Delhi"},{"descriptor":{"code":"DELAY_INTEREST"},"value":"2.5 %"},{"descriptor":{"code":"SETTLEMENT_AMOUNT"},"value":"7 INR"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_BANK_CODE"},"value":"XXXXXXXX"},{"descriptor":{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER"},"value":"xxxxxxxxxxxxxx"}]}],"created_at":"2024-06-26T04:53:26.000Z","updated_at":"2024-06-26T04:53:26.000Z"}}}}}]}],"x-examples":{"unreserved-entry-pass":{"summary":"Unreserved Entry Pass Use Case Specification","description":"Unreserved Entry Pass use case on the network would enable NPs to create an ecosystem where entry tickets/ passes can be bought and sold over the network.","example_set":{"search":{"examples":[{"summary":"Search_for_unreserved_entry_pass","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:41:16.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"3cc45230-9250-4ef5-9100-6f5ba980d7d2","version":"2.0.0","action":"search","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S"},"message":{"intent":{"category":{"descriptor":{"code":"CULTURE_HERITAGE"}},"fulfillment":{"stops":[{"type":"START","location":{"gps":"28.666576, 77.233332","circle":{"radius":{"value":"10.12"}}},"time":{"timestamp":"2024-06-27T04:41:16.000Z"}}],"vehicle":{"category":"SITE"}},"payment":{"collected_by":"BAP"},"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]}]}}}},{"summary":"Search_for_unreserved_entry_pass_2","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:41:16.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"5fd86e70-3465-4759-ac6c-910ab16e2db9","version":"2.0.0","action":"search","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S"},"message":{"intent":{"category":{"descriptor":{"code":"CULTURE_HERITAGE"}},"fulfillment":{"stops":[{"type":"START","location":{"city":{"code":"std:040"}},"time":{"timestamp":"2024-06-27T04:41:16.000Z"}}],"vehicle":{"category":"SITE"}},"payment":{"collected_by":"BAP"},"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]}]}}}},{"summary":"Search_for_unreserved_entry_pass_without_timestamp(FOOD_DINING)","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:41:16.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"5fd86e70-3465-4759-ac6c-910ab16e2db9","version":"2.0.0","action":"search","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S"},"message":{"intent":{"category":{"descriptor":{"code":"FOOD_DINING"}},"fulfillment":{"stops":[{"type":"START","location":{"city":{"code":"std:011"}}}],"vehicle":{"category":"SITE"}},"payment":{"collected_by":"BAP"},"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]}]}}}}]},"select":{"examples":[{"summary":"Select_a_an_item_for_unreserved-entry-pass","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:50:16.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"7b355323-11aa-4be9-9648-9628618b1157","version":"2.0.0","action":"select","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"items":[{"id":"I1","parent_item_id":"I0","quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","quantity":{"selected":{"count":1}}}]},{"id":"I2","parent_item_id":"I0","quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","quantity":{"selected":{"count":1}}}]},{"id":"I5","parent_item_id":"I0","quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","stops":[{"type":"START","time":{"timestamp":"2024-06-28T05:00:16.000Z"}}]}],"provider":{"id":"P1"}}}}}]},"init":{"examples":[{"summary":"Initialize_the_order_by_providing_billing_details","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:52:16.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"764b4322-8f7c-402c-b907-80484e9ad40c","version":"2.0.0","action":"init","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"items":[{"id":"I1","parent_item_id":"I0","quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","quantity":{"selected":{"count":1}}}]},{"id":"I2","parent_item_id":"I0","quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","quantity":{"selected":{"count":1}}}]},{"id":"I5","parent_item_id":"I0","quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","stops":[{"type":"START","time":{"timestamp":"2024-06-28T05:00:16.000Z"}}]}],"billing":{"name":"John Doe","email":"john.doe@example.com","phone":"+91-9897867564"},"provider":{"id":"P1"},"payments":[{"collected_by":"BAP","status":"NOT-PAID","type":"PRE-ORDER"}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]}]}}}}]},"confirm":{"examples":[{"summary":"Confirm_ticket_booking","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:53:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"6d287e01-59bc-4c6d-b0ab-e07649eae6b2","version":"2.0.0","action":"confirm","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"items":[{"id":"I1","parent_item_id":"I0","quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","quantity":{"selected":{"count":1}}}]},{"id":"I2","parent_item_id":"I0","quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","quantity":{"selected":{"count":1}}}]},{"id":"I5","parent_item_id":"I0","quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","stops":[{"type":"START","time":{"timestamp":"2024-06-28T05:00:16.000Z"}}]}],"billing":{"name":"John Doe","email":"john.doe@example.com","phone":"+91-9897867564"},"provider":{"id":"P1"},"payments":[{"collected_by":"BAP","status":"NOT-PAID","type":"PRE-ORDER","params":{"transaction_id":"61b4be7e-d85c-456a-99e5-ce3d83be135d","currency":"INR","amount":"800"}}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]},{"descriptor":{"code":"BPP_TERMS","name":"BPP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"MANDATORY_ARBITRATION"},"value":"true"},{"descriptor":{"code":"COURT_JURISDICTION"},"value":"New Delhi"},{"descriptor":{"code":"DELAY_INTEREST"},"value":"2.5 %"},{"descriptor":{"code":"SETTLEMENT_AMOUNT"},"value":"7 INR"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_BANK_CODE"},"value":"XXXXXXXX"},{"descriptor":{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER"},"value":"xxxxxxxxxxxxxx"}]}]}}}}]},"cancel":{"examples":[{"summary":"Cancel_ticket_booking","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T05:10:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"83fc2d6c-9d92-4b8a-a0bb-9e410d2b2a1e","version":"2.0.0","action":"cancel","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order_id":"O1","cancellation_reason_id":"0","descriptor":{"name":"Ride Cancellation","code":"SOFT_CANCEL"}}}},{"summary":"Cancel_ticket_booking_2","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T05:12:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"af0fb8a7-0ca0-4c40-85f5-f95dcff61215","version":"2.0.0","action":"cancel","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order_id":"O1","cancellation_reason_id":"0","descriptor":{"name":"Ride Cancellation","code":"CONFIRM_CANCEL"}}}}]},"status":{"examples":[{"summary":"Fetch_the_latest_status_of_order","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:55:16.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"213a32eb-b7a4-4877-9f53-bad6a629b167","version":"2.0.0","action":"status","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order_id":"01"}}}]},"on_search":{"examples":[{"summary":"Return_a_catalog_for_unreserved_entry_pass","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:43:16.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"84e573df-0f06-449b-9f02-7bf1f1694d83","version":"2.0.0","action":"on_search","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"catalog":{"descriptor":{"name":"India tourism","long_desc":"Online ticket booking service","images":[{"url":"https://api.unreserved-entry-pass.com/logos/logo.ico","size_type":"xs"}]},"providers":[{"id":"P1","descriptor":{"name":"India tourism","short_desc":"Online Ticket Booking Service","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"categories":[{"descriptor":{"name":"Culture & Heritage","code":"CULTURE_HERITAGE"},"id":"C1"},{"descriptor":{"name":"Standard"},"parent_category_id":"C1","id":"C2"},{"descriptor":{"name":"Premium"},"parent_category_id":"C1","id":"C3"}],"time":{"range":{"start":"2024-06-14T05:30:00.000Z","end":"2024-06-14T23:30:00.000Z"}},"locations":[{"id":"L1","gps":"28.524596, 77.185577","descriptor":{"name":"Qutab Minar","short_desc":"Seth Sarai, Mehrauli, New Delhi, Delhi. The Qutb Minar, also spelled Qutub Minar and Qutab Minar, is a minaret and \"victory tower\" that forms part of the Qutb complex","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"5"},{"id":"L2","gps":"28.5244946, 77.1855177","descriptor":{"name":"Red Fort","short_desc":"Red Fort, Mughal fort in Old Delhi, India. It was built by Shah Jahān in the mid-17th century and remains a major tourist attraction.","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"4"}],"items":[{"id":"I0","descriptor":{"name":"Parent Item for Culture & Heritage","code":"ABSTRACT","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C2"],"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"cancellation_terms":[{"cancellation_fee":{"percentage":"10"},"fulfillment_state":{"descriptor":{"code":"CONFIRMED"}},"cancel_by":{"label":"DURATION","duration":"PT1H30M"}},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}},{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":true}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass/beckn/replacement.html"}}],"tags":[{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I1","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1","C2"],"price":{"currency":"INR","value":"350"},"quantity":{"maximum":{"count":6},"minimum":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"available":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"18"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I2","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1","C2"],"price":{"currency":"INR","value":"150"},"quantity":{"maximum":{"count":4},"minimum":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"available":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I3","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C3"],"price":{"currency":"INR","value":"400"},"quantity":{"maximum":{"count":6},"minimum":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"available":{"count":1}},"price":{"value":"100","currency":"INR"}}],"cancellation_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":false},{"cancellation_fee":{"percentage":"10"},"cancel_by":{"label":"TIMESTAMP","timestamp":"2024-07-26T04:43:16.000Z"},"cancellation_eligible":false}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass/beckn/replacement.html"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"18"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]},{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"},{"value":"guide_tour"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I4","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C3"],"price":{"currency":"INR","value":"250"},"quantity":{"maximum":{"count":4},"minimum":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"available":{"count":1}},"price":{"value":"100","currency":"INR"}}],"cancellation_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":false},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass/beckn/replacement.html"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]},{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"},{"value":"guide_tour"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I5","descriptor":{"name":"Add on item","code":"ADD_ON","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"price":{"currency":"INR","value":"100"},"quantity":{"maximum":{"count":3},"minimum":{"count":1}}}],"fulfillments":[{"id":"F1","type":"VISIT","stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"timestamp":"2024-06-28T05:00:16.000Z"}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}},{"id":"F2","type":"VISIT","stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"range":{"start":"2024-06-14T05:30:00.000Z","end":"2024-06-14T05:45:00.000Z"}}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}}],"payments":[{"collected_by":"BAP"}]}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]},{"descriptor":{"code":"BPP_TERMS","name":"BPP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"MANDATORY_ARBITRATION"},"value":"true"},{"descriptor":{"code":"COURT_JURISDICTION"},"value":"New Delhi"},{"descriptor":{"code":"DELAY_INTEREST"},"value":"2.5 %"}]},{"descriptor":{"code":"PAGINATION","name":"Pagination"},"display":true,"list":[{"descriptor":{"code":"PAGINATION_ID"},"value":"P1"},{"descriptor":{"code":"CURRENT_PAGE_NUMBER"},"value":"1"},{"descriptor":{"code":"MAX_PAGE_NUMBER"},"value":"2"}]}]}}}}]},"on_select":{"examples":[{"summary":"Return_a_selected_item_for_unreserved-entry-pass","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:51:16.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"7b355323-11aa-4be9-9648-9628618b1157","version":"2.0.0","action":"on_select","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"items":[{"id":"I0","descriptor":{"name":"Parent Item for Culture & Heritage","code":"ABSTRACT","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C2"],"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"tags":[{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I1","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]},{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"},{"value":"guide_tour"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}],"xinput":{"head":{"descriptor":{"name":"Additional Details"},"index":{"min":0,"cur":0,"max":0},"headings":["ADDITIONAL_DETAILS"]},"form":{"id":"F01","mime_type":"text/html","url":"https://api.unreserved-entry-pass.com/xinput/additonal-details/F01","resubmit":false,"multiple_sumbissions":false},"required":true}},{"id":"I2","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"xinput":{"head":{"descriptor":{"name":"Additional Details"},"index":{"min":0,"cur":0,"max":0},"headings":["ADDITIONAL_DETAILS"]},"form":{"id":"F01","mime_type":"text/html","url":"https://api.unreserved-entry-pass.com/xinput/additonal-details/F01","resubmit":false,"multiple_sumbissions":false},"required":true},"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]},{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"},{"value":"guide_tour"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I5","descriptor":{"name":"Add on item","code":"ADD_ON","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","price":{"currency":"INR","value":"100"},"quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","type":"VISIT","stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"timestamp":"2024-06-28T05:00:16.000Z"}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}}],"provider":{"id":"P1","descriptor":{"name":"Unreserved Entry Pass","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"locations":[{"id":"L1","gps":"28.524596, 77.185577","descriptor":{"name":"Qutab Minar","short_desc":"Seth Sarai, Mehrauli, New Delhi, Delhi. The Qutb Minar, also spelled Qutub Minar and Qutab Minar, is a minaret and \"victory tower\" that forms part of the Qutb complex","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"5"}]},"cancellation_terms":[{"cancellation_fee":{"percentage":"10"},"fulfillment_state":{"descriptor":{"code":"CONFIRMED"}},"cancel_by":{"label":"DURATION","duration":"PT1H30M"}},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}},{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":true}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/replacement.html"}}],"quote":{"breakup":[{"title":"BASE_FARE","item":{"id":"I1","price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"350"}},{"title":"BASE_FARE","item":{"id":"I2","price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"150"}},{"title":"TAX","price":{"currency":"INR","value":"0"}},{"title":"ADD_ONS","item":{"id":"I1","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I2","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I5"},"price":{"currency":"INR","value":"100"}}],"price":{"currency":"INR","value":"800"}}}}}}]},"on_init":{"examples":[{"summary":"Return_draft_order_for_transit_ticket_with_settlement_details","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:52:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"036eedaf-7af0-42b5-8764-5b00b5b55a5d","version":"2.0.0","action":"on_init","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"items":[{"id":"I0","descriptor":{"name":"Parent Item for Culture & Heritage","code":"ABSTRACT","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C2"],"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"tags":[{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I1","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I2","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I5","descriptor":{"name":"Add on item","code":"ADD_ON","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","price":{"currency":"INR","value":"100"},"quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","type":"VISIT","stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"timestamp":"2024-06-28T05:00:16.000Z"}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}}],"provider":{"id":"P1","descriptor":{"name":"Unreserved Entry Pass","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"locations":[{"id":"L1","gps":"28.524596, 77.185577","descriptor":{"name":"Qutab Minar","short_desc":"Seth Sarai, Mehrauli, New Delhi, Delhi. The Qutb Minar, also spelled Qutub Minar and Qutab Minar, is a minaret and \"victory tower\" that forms part of the Qutb complex","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"5"}]},"cancellation_terms":[{"cancellation_fee":{"percentage":"10"},"fulfillment_state":{"descriptor":{"code":"CONFIRMED"}},"cancel_by":{"label":"DURATION","duration":"PT1H30M"}},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}},{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":true}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/replacement.html"}}],"quote":{"breakup":[{"title":"BASE_FARE","item":{"id":"I1","price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"350"}},{"title":"BASE_FARE","item":{"id":"I2","price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"150"}},{"title":"TAX","price":{"currency":"INR","value":"0"}},{"title":"ADD_ONS","item":{"id":"I1","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I2","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I5"},"price":{"currency":"INR","value":"100"}}],"price":{"currency":"INR","value":"800"}},"billing":{"name":"John Doe","email":"john.doe@example.com","phone":"+91-9897867564"},"payments":[{"id":"PA1","collected_by":"BAP","status":"NOT-PAID","type":"PRE-ORDER"}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]},{"descriptor":{"code":"BPP_TERMS","name":"BPP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"MANDATORY_ARBITRATION"},"value":"true"},{"descriptor":{"code":"COURT_JURISDICTION"},"value":"New Delhi"},{"descriptor":{"code":"DELAY_INTEREST"},"value":"2.5 %"},{"descriptor":{"code":"SETTLEMENT_AMOUNT"},"value":"7 INR"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_BANK_CODE"},"value":"XXXXXXXX"},{"descriptor":{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER"},"value":"xxxxxxxxxxxxxx"}]}]}}}}]},"on_confirm":{"examples":[{"summary":"Return_confirmed_ticket_order_with_payment_confirmation","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:53:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"6d287e01-59bc-4c6d-b0ab-e07649eae6b2","version":"2.0.0","action":"on_confirm","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"id":"01","status":"ACTIVE","items":[{"id":"I0","descriptor":{"name":"Parent Item for Culture & Heritage","code":"ABSTRACT","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C2"],"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"tags":[{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I1","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I2","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I5","descriptor":{"name":"Add on item","code":"ADD_ON","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","price":{"currency":"INR","value":"100"},"quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","type":"VISIT","state":{"descriptor":{"code":"CONFIRMED"}},"stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"timestamp":"2024-06-28T05:00:16.000Z"},"authorization":{"type":"QR","token":"iVBORw0KGgoAAAANSUhEUgAAAH0AAAB9AQAAAACn+1GIAAAApklEQVR4Xu2UMQ4EMQgD/QP+/0vK6zjsvayUMmavWxQpMAUBkwS12wcveAAkgNSCD3rR5Lkgoai3GUCMgWqbAEYR3HxAkZlzU/0MyBisYRsgI1ERFfcpBpA+ze6k56Cj7KTdXNigFWZvSOpsgqLfd18i2aAukXh9TXBNmdWt5gzA/oqzWkkN8HtA7G8CNOwYAiZt3wZixUfkA32OHNQq7Bxs9oI/gC/9fV8AVCkPjQAAAABJRU5ErkJggg==","valid_to":"2024-06-30T05:00:16.000Z","status":"UNCLAIMED"}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}}],"provider":{"id":"P1","descriptor":{"name":"Unreserved Entry Pass","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"locations":[{"id":"L1","gps":"28.524596, 77.185577","descriptor":{"name":"Qutab Minar","short_desc":"Seth Sarai, Mehrauli, New Delhi, Delhi. The Qutb Minar, also spelled Qutub Minar and Qutab Minar, is a minaret and \"victory tower\" that forms part of the Qutb complex","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"5"}]},"cancellation_terms":[{"cancellation_fee":{"percentage":"10"},"fulfillment_state":{"descriptor":{"code":"CONFIRMED"}},"cancel_by":{"label":"DURATION","duration":"PT1H30M"}},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}},{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":true}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/replacement.html"}}],"billing":{"name":"John Doe","email":"john.doe@example.com","phone":"+91-9897867564"},"quote":{"breakup":[{"title":"BASE_FARE","item":{"id":"I1","price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"350"}},{"title":"BASE_FARE","item":{"id":"I2","price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"150"}},{"title":"TAX","price":{"currency":"INR","value":"0"}},{"title":"ADD_ONS","item":{"id":"I1","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I2","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I5"},"price":{"currency":"INR","value":"100"}}],"price":{"currency":"INR","value":"800"}},"payments":[{"id":"PA1","collected_by":"BAP","status":"PAID","type":"PRE-ORDER","params":{"transaction_id":"61b4be7e-d85c-456a-99e5-ce3d83be135d","amount":"800","currency":"INR"}}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]},{"descriptor":{"code":"BPP_TERMS","name":"BPP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"MANDATORY_ARBITRATION"},"value":"true"},{"descriptor":{"code":"COURT_JURISDICTION"},"value":"New Delhi"},{"descriptor":{"code":"DELAY_INTEREST"},"value":"2.5 %"},{"descriptor":{"code":"SETTLEMENT_AMOUNT"},"value":"7 INR"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_BANK_CODE"},"value":"XXXXXXXX"},{"descriptor":{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER"},"value":"xxxxxxxxxxxxxx"}]}],"created_at":"2024-06-26T04:53:26.000Z","updated_at":"2024-06-26T04:53:26.000Z"}}}}]},"on_cancel":{"examples":[{"summary":"Cancel_ticket_booking_1","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T05:11:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"83fc2d6c-9d92-4b8a-a0bb-9e410d2b2a1e","version":"2.0.0","action":"on_cancel","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"id":"01","status":"SOFT_CANCEL","items":[{"id":"I0","descriptor":{"name":"Parent Item for Culture & Heritage","code":"ABSTRACT","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C2"],"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"tags":[{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I1","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I2","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I5","descriptor":{"name":"Add on item","code":"ADD_ON","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","price":{"currency":"INR","value":"100"},"quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","type":"VISIT","state":{"descriptor":{"code":"CONFIRMED"}},"stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"timestamp":"2024-06-28T05:00:16.000Z"},"authorization":{"type":"QR","token":"iVBORw0KGgoAAAANSUhEUgAAAH0AAAB9AQAAAACn+1GIAAAApklEQVR4Xu2UMQ4EMQgD/QP+/0vK6zjsvayUMmavWxQpMAUBkwS12wcveAAkgNSCD3rR5Lkgoai3GUCMgWqbAEYR3HxAkZlzU/0MyBisYRsgI1ERFfcpBpA+ze6k56Cj7KTdXNigFWZvSOpsgqLfd18i2aAukXh9TXBNmdWt5gzA/oqzWkkN8HtA7G8CNOwYAiZt3wZixUfkA32OHNQq7Bxs9oI/gC/9fV8AVCkPjQAAAABJRU5ErkJggg==","valid_to":"2024-06-30T05:00:16.000Z","status":"UNCLAIMED"}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}}],"provider":{"id":"P1","descriptor":{"name":"Event ticketing","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"locations":[{"id":"L1","gps":"28.524596, 77.185577","descriptor":{"name":"Qutab Minar","short_desc":"Seth Sarai, Mehrauli, New Delhi, Delhi. The Qutb Minar, also spelled Qutub Minar and Qutab Minar, is a minaret and \"victory tower\" that forms part of the Qutb complex","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"5"}]},"cancellation_terms":[{"cancellation_fee":{"percentage":"10"},"fulfillment_state":{"descriptor":{"code":"CONFIRMED"}},"cancel_by":{"label":"DURATION","duration":"PT1H30M"}},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}},{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":true}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/replacement.html"}}],"quote":{"breakup":[{"title":"BASE_FARE","item":{"id":"I1","price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"350"}},{"title":"BASE_FARE","item":{"id":"I2","price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"150"}},{"title":"TAX","price":{"currency":"INR","value":"0"}},{"title":"ADD_ONS","item":{"id":"I1","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I2","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I5"},"price":{"currency":"INR","value":"100"}},{"title":"REFUND","item":{"id":"I1","price":{"currency":"INR","value":"-350"},"quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","price":{"currency":"INR","value":"-100"}}]},"price":{"currency":"INR","value":"-450"}},{"title":"REFUND","item":{"id":"I2","price":{"currency":"INR","value":"-150"},"quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","price":{"currency":"INR","value":"100"}}]},"price":{"currency":"INR","value":"-250"}},{"title":"REFUND","item":{"id":"I5"},"price":{"currency":"INR","value":"-100"}},{"title":"CANCELLATION_CHARGES","price":{"currency":"INR","value":"100"}}],"price":{"currency":"INR","value":"100"}},"payments":[{"id":"PA1","collected_by":"BAP","status":"PAID","type":"PRE-ORDER","params":{"transaction_id":"61b4be7e-d85c-456a-99e5-ce3d83be135d","amount":"800","currency":"INR"}}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]},{"descriptor":{"code":"BPP_TERMS","name":"BPP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"MANDATORY_ARBITRATION"},"value":"true"},{"descriptor":{"code":"COURT_JURISDICTION"},"value":"New Delhi"},{"descriptor":{"code":"DELAY_INTEREST"},"value":"2.5 %"},{"descriptor":{"code":"SETTLEMENT_AMOUNT"},"value":"7 INR"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_BANK_CODE"},"value":"XXXXXXXX"},{"descriptor":{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER"},"value":"xxxxxxxxxxxxxx"}]}]}}}},{"summary":"Cancel_ticket_booking_2","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T05:11:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"af0fb8a7-0ca0-4c40-85f5-f95dcff61215","version":"2.0.0","action":"on_cancel","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"id":"01","status":"CANCELLED","items":[{"id":"I0","descriptor":{"name":"Parent Item for Culture & Heritage","code":"ABSTRACT","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C2"],"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"tags":[{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I1","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I2","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I5","descriptor":{"name":"Add on item","code":"ADD_ON","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","price":{"currency":"INR","value":"100"},"quantity":{"selected":{"count":1}}}],"fulfillments":[{"id":"F1","type":"VISIT","state":{"descriptor":{"code":"CONFIRMED"}},"stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"timestamp":"2024-06-28T05:00:16.000Z"},"authorization":{"type":"QR","token":"iVBORw0KGgoAAAANSUhEUgAAAH0AAAB9AQAAAACn+1GIAAAApklEQVR4Xu2UMQ4EMQgD/QP+/0vK6zjsvayUMmavWxQpMAUBkwS12wcveAAkgNSCD3rR5Lkgoai3GUCMgWqbAEYR3HxAkZlzU/0MyBisYRsgI1ERFfcpBpA+ze6k56Cj7KTdXNigFWZvSOpsgqLfd18i2aAukXh9TXBNmdWt5gzA/oqzWkkN8HtA7G8CNOwYAiZt3wZixUfkA32OHNQq7Bxs9oI/gC/9fV8AVCkPjQAAAABJRU5ErkJggg==","valid_to":"2024-06-30T05:00:16.000Z","status":"UNCLAIMED"}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}}],"provider":{"id":"P1","descriptor":{"name":"Unreserved Entry Pass","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"locations":[{"id":"L1","gps":"28.524596, 77.185577","descriptor":{"name":"Qutab Minar","short_desc":"Seth Sarai, Mehrauli, New Delhi, Delhi. The Qutb Minar, also spelled Qutub Minar and Qutab Minar, is a minaret and \"victory tower\" that forms part of the Qutb complex","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"5"}]},"cancellation_terms":[{"cancellation_fee":{"percentage":"10"},"fulfillment_state":{"descriptor":{"code":"CONFIRMED"}},"cancel_by":{"label":"DURATION","duration":"PT1H30M"}},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}},{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":true}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/replacement.html"}}],"quote":{"breakup":[{"title":"BASE_FARE","item":{"id":"I1","price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"350"}},{"title":"BASE_FARE","item":{"id":"I2","price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"150"}},{"title":"TAX","price":{"currency":"INR","value":"0"}},{"title":"ADD_ONS","item":{"id":"I1","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I2","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I5"},"price":{"currency":"INR","value":"100"}},{"title":"REFUND","item":{"id":"I1","price":{"currency":"INR","value":"-350"},"quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","price":{"currency":"INR","value":"-100"}}]},"price":{"currency":"INR","value":"-450"}},{"title":"REFUND","item":{"id":"I2","price":{"currency":"INR","value":"-150"},"quantity":{"selected":{"count":1}},"add_ons":[{"id":"A1","price":{"currency":"INR","value":"100"}}]},"price":{"currency":"INR","value":"-250"}},{"title":"REFUND","item":{"id":"I5"},"price":{"currency":"INR","value":"-100"}},{"title":"CANCELLATION_CHARGES","price":{"currency":"INR","value":"100"}}],"price":{"currency":"INR","value":"100"}},"payments":[{"id":"PA1","collected_by":"BAP","status":"PAID","type":"PRE-ORDER","params":{"transaction_id":"61b4be7e-d85c-456a-99e5-ce3d83be135d","amount":"800","currency":"INR"}}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]},{"descriptor":{"code":"BPP_TERMS","name":"BPP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"MANDATORY_ARBITRATION"},"value":"true"},{"descriptor":{"code":"COURT_JURISDICTION"},"value":"New Delhi"},{"descriptor":{"code":"DELAY_INTEREST"},"value":"2.5 %"},{"descriptor":{"code":"SETTLEMENT_AMOUNT"},"value":"7 INR"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_BANK_CODE"},"value":"XXXXXXXX"},{"descriptor":{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER"},"value":"xxxxxxxxxxxxxx"}]}]}}}}]},"on_status":{"examples":[{"summary":"Return_confirmed_ticket_order_with_payment_confirmation_1","value":{"context":{"location":{"country":{"code":"IND"},"city":{"code":"std:011"}},"domain":"ONDC:TRV14","timestamp":"2024-06-26T04:53:26.000Z","bap_id":"api.example-bap.com","transaction_id":"cf7bb367-c820-4bc9-9be8-f548e0bbf222","message_id":"6d287e01-59bc-4c6d-b0ab-e07649eae6b2","version":"2.0.0","action":"on_status","bap_uri":"https://api.example-bap.com/beckn/","ttl":"PT30S","bpp_id":"api.unreserved-entry-pass.com","bpp_uri":"https://api.unreserved-entry-pass.com/beckn/"},"message":{"order":{"id":"01","status":"COMPLETED","items":[{"id":"I0","descriptor":{"name":"Parent Item for Culture & Heritage","code":"ABSTRACT","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"location_ids":["L1"],"category_ids":["C1","C2"],"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1","F2"],"tags":[{"descriptor":{"code":"INCLUSIONS"},"list":[{"value":"water"}]},{"descriptor":{"code":"EXCLUSIONS"},"list":[{"value":"out side food"},{"value":"photography"}]}]},{"id":"I1","descriptor":{"name":"Adult-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I2","descriptor":{"name":"Child-Ticket Culture & Heritage Item","code":"ENTRY_PASS","short_desc":"Ticket for Qutab Minar","long_desc":"This ticket grants entry to the Qutab Minar.","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","location_ids":["L1"],"category_ids":["C1"],"price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}},"time":{"label":"VALIDITY","duration":"P2D"},"fulfillment_ids":["F1"],"add_ons":[{"id":"A1","descriptor":{"name":"Audio Assistance"},"quantity":{"selected":{"count":1}},"price":{"value":"100","currency":"INR"}}],"tags":[{"descriptor":{"code":"FARE_POLICY"},"list":[{"descriptor":{"code":"MIN_AGE"},"value":"1"},{"descriptor":{"code":"MAX_AGE"},"value":"70"},{"descriptor":{"code":"GENDER"},"value":"MALE"},{"descriptor":{"code":"NATIONALITY"},"value":"INDIAN"}]}]},{"id":"I5","descriptor":{"name":"Add on item","code":"ADD_ON","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"parent_item_id":"I0","price":{"currency":"INR","value":"100"},"quantity":{"selected":{"count":1}}}],"billing":{"name":"John Doe","email":"john.doe@example.com","phone":"+91-9897867564"},"fulfillments":[{"id":"F1","type":"VISIT","state":{"descriptor":{"code":"COMPLETED"}},"stops":[{"type":"START","instructions":{"additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"}},"time":{"timestamp":"2024-06-28T05:00:16.000Z"},"authorization":{"type":"QR","token":"iVBORw0KGgoAAAANSUhEUgAAAH0AAAB9AQAAAACn+1GIAAAApklEQVR4Xu2UMQ4EMQgD/QP+/0vK6zjsvayUMmavWxQpMAUBkwS12wcveAAkgNSCD3rR5Lkgoai3GUCMgWqbAEYR3HxAkZlzU/0MyBisYRsgI1ERFfcpBpA+ze6k56Cj7KTdXNigFWZvSOpsgqLfd18i2aAukXh9TXBNmdWt5gzA/oqzWkkN8HtA7G8CNOwYAiZt3wZixUfkA32OHNQq7Bxs9oI/gC/9fV8AVCkPjQAAAABJRU5ErkJggg==","valid_to":"2024-06-30T05:00:16.000Z","status":"CLAIMED"}}],"agent":{"organization":{"contact":{"phone":"+91-9999999999","email":"john.doe@example.com"}}},"vehicle":{"category":"SITE"}}],"provider":{"id":"P1","descriptor":{"name":"Unreserved Entry Pass","images":[{"url":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","size_type":"xs"}]},"locations":[{"id":"L1","gps":"28.524596, 77.185577","descriptor":{"name":"Qutab Minar","short_desc":"Seth Sarai, Mehrauli, New Delhi, Delhi. The Qutb Minar, also spelled Qutub Minar and Qutab Minar, is a minaret and \"victory tower\" that forms part of the Qutb complex","additional_desc":{"url":"https://api.unreserved-entry-pass.com/sites/additional-info","content_type":"text/plain"},"images":[{"url":"https://api.unreserved-entry-pass.com/sites/images/location.png","size_type":"md"}]},"rating":"5"}]},"cancellation_terms":[{"cancellation_fee":{"percentage":"10"},"fulfillment_state":{"descriptor":{"code":"CONFIRMED"}},"cancel_by":{"label":"DURATION","duration":"PT1H30M"}},{"cancellation_fee":{"percentage":"15"},"fulfillment_state":{"descriptor":{"code":"COMPLETED"}},"cancel_by":{"label":"DURATION","duration":"PT1H"}},{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/tnc.html"},"cancellation_eligible":true}],"replacement_terms":[{"external_ref":{"mimetype":"text/html","url":"https://api.unreserved-entry-pass.com/beckn/replacement.html"}}],"quote":{"breakup":[{"title":"BASE_FARE","item":{"id":"I1","price":{"currency":"INR","value":"350"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"350"}},{"title":"BASE_FARE","item":{"id":"I2","price":{"currency":"INR","value":"150"},"quantity":{"selected":{"count":1}}},"price":{"currency":"INR","value":"150"}},{"title":"TAX","price":{"currency":"INR","value":"0"}},{"title":"ADD_ONS","item":{"id":"I1","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I2","add_ons":[{"id":"A1"}]},"price":{"currency":"INR","value":"100"}},{"title":"ADD_ONS","item":{"id":"I5"},"price":{"currency":"INR","value":"100"}}],"price":{"currency":"INR","value":"800"}},"payments":[{"id":"PA1","collected_by":"BAP","status":"PAID","type":"PRE-ORDER","params":{"transaction_id":"61b4be7e-d85c-456a-99e5-ce3d83be135d","amount":"800","currency":"INR"}}],"tags":[{"descriptor":{"code":"BAP_TERMS","name":"BAP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_BASIS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"SETTLEMENT_WINDOW"},"value":"P30D"}]},{"descriptor":{"code":"BPP_TERMS","name":"BPP Terms of Engagement"},"display":false,"list":[{"descriptor":{"code":"BUYER_FINDER_FEES_PERCENTAGE"},"value":"1"},{"descriptor":{"code":"BUYER_FINDER_FEES_TYPE"},"value":"percent"},{"descriptor":{"code":"STATIC_TERMS"},"value":"https://api.example-bap.com/booking/terms"},{"descriptor":{"code":"MANDATORY_ARBITRATION"},"value":"true"},{"descriptor":{"code":"COURT_JURISDICTION"},"value":"New Delhi"},{"descriptor":{"code":"DELAY_INTEREST"},"value":"2.5 %"},{"descriptor":{"code":"SETTLEMENT_AMOUNT"},"value":"7 INR"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_TYPE"},"value":"upi"},{"descriptor":{"code":"SETTLEMENT_BANK_CODE"},"value":"XXXXXXXX"},{"descriptor":{"code":"SETTLEMENT_BANK_ACCOUNT_NUMBER"},"value":"xxxxxxxxxxxxxx"}]}],"created_at":"2024-06-26T04:53:26.000Z","updated_at":"2024-06-26T04:53:26.000Z"}}}}]}}}},"x-attributes":{"unreserved-entry-pass":{"attribute_set":{"search":{"context":{"location":{"country":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"IND","description":"Describes country code as per ISO 3166-1 and ISO 3166-2 format"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes the country"}},"city":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"*","description":"Describes the city code this location is, or is located within"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes the city "}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes the location"}},"domain":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"ONDC:FIS13","description":"Describes domain code that is relevant to this transaction context"},"timestamp":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"2023-03-23T04:41:16.000Z","description":"Describes tme of request generation in RFC3339 format"},"bap_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"fis.test.bap.io","description":"Describes subscriber ID of the BAP"},"transaction_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"6743e9e2","description":"Describes a unique value which persists across all API calls"},"message_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"13ba8018f176","description":"Describes a unique value which persists during a request / callback cycle."},"version":{"required":"MANDATORY","type":"integer","owner":"BAP","usage":"2.0.0","description":"Describes the version of transaction protocol being used by the sender."},"action":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"search","description":"Describes the Beckn protocol method being called by the sender and executed at the receiver."},"bap_uri":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"https://fis.test.bap.io/","description":"Describes subscriber URL of the BAP for accepting callbacks from BPPs."},"ttl":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"PT30S","description":"Describes the duration in ISO8601 format after timestamp for which this message holds valid"}},"message":{"intent":{"category":{"descriptor":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"CULTURE_HERITAGE","description":"Describes the intent category"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes the intent category code"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes the intent category"}},"fulfillment":{"stops":{"type":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"START","description":"Describes the fulfillment type"},"location":{"gps":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"28.666576, 77.233332","description":"Describes the locaiton cordiantes"},"circle":{"radius":{"value":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":10.12,"description":"Describes the locaiton radius"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the info about the location raidus."}},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the info about the location descriptor."}},"city":{"code":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"std:040","description":"Describes the locaiton city code."},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the info about the location city."}},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the info about the fulfillment location."}},"time":{"timestamp":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"2024-06-27T04:41:16.000Z","description":"Describes the timestamp for fulfillment"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the info about the stops time."}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes the info about the fulfillment stops."}},"vehicle":{"category":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"SITE","description":"Describes the vechilce category"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes the info about the vechicle."}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes the info about the fulfillments."}},"payment":{"collected_by":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"BAP","description":"Describes the payment collector"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"The terms of settlement for this order. It describes that how the customer wants to pay for the order."}},"tags":{"BAP_TERMS":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes the BAP terms","list":{"BUYER_FINDER_FEES_PERCENTAGE":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes the Buyer finder fee percentage"},"BUYER_FINDER_FEES_TYPE":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes the Buyer finder fee type"},"STATIC_TERMS":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the static terms"},"SETTLEMENT_BASIS":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"--","description":"Describes the settlement basis"},"SETTLEMENT_WINDOW":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"--","description":"Describes the sttlement window"}}}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describe the intent to buy or avail a product or a service."}}}},"on_search":{"context":{"location":{"country":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"IND","description":"Describes country code as per ISO 3166-1 and ISO 3166-2 format"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes the country"}},"city":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"*","description":"Describes the city code this location is, or is located within"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes the city "}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes the location"}},"domain":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"ONDC:FIS13","description":"Describes domain code that is relevant to this transaction context"},"timestamp":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"2023-03-23T04:41:16.000Z","description":"Describes tme of request generation in RFC3339 format"},"bap_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"fis.test.bap.io","description":"Describes subscriber ID of the BAP"},"transaction_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"6743e9e2","description":"Describes a unique value which persists across all API calls"},"message_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"13ba8018f176","description":"Describes a unique value which persists during a request / callback cycle."},"version":{"required":"MANDATORY","type":"integer","owner":"BAP","usage":"2.0.0","description":"Describes the version of transaction protocol being used by the sender."},"action":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"on_search","description":"Describes the Beckn protocol method being called by the sender and executed at the receiver."},"bap_uri":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"https://fis.test.bap.io/","description":"Describes subscriber URL of the BAP for accepting callbacks from BPPs."},"ttl":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"PT30S","description":"Describes the duration in ISO8601 format after timestamp for which this message holds valid"},"bpp_id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"fis.test.bpp.io","description":"Describes subscriber ID of the BPP"},"bpp_uri":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://fis.test.bpp.io/","description":"Describes subscriber URL of the BPP for accepting calls from BAPs."}},"message":{"catalog":{"descriptor":{"name":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"India tourism","description":"Describes name of the name of catalog"},"long_desc":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"Online ticket booking service","description":"Describes long description of the of catalog"},"images":{"url":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/logos/logo.ico","description":"Describes images for catalog"},"size_type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"xs","description":"Describes images type for catalog"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the images's description."}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the catalog's descriptor."}},"providers":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"P1","description":"Describes unique id of provider"},"categories":{"descriptor":{"name":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"Culture & Heritage","description":"Describes category name of the provider"},"code":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"CULTURE_HERITAGE","description":"Describes category code of the provider"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the provider's categories description."}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the provider's categories."}},"descriptor":{"name":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"India tourism","description":"Describes the provider name"},"images":{"url":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://www.abcinsurance.com/content/dam/abc/india/assets/images/header/logo.png","description":"Describes images for provider"},"size_type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"xs","description":"Describes images size type for provider"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes images for provider"}},"short_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Online ticket booking service","description":"Describes short description of the of provider"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the provider's description."}},"time":{"range":{"start":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"2024-06-14T05:30:00.000Z","description":"Describes start time for operational hours of provider"},"end":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"2024-06-14T05:30:00.000Z","description":"Describes end time for operational hours of provider"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes start time range for operational hours of provider"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes start time for operational hours of provider"}},"locations":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"4r3e9e2","description":"Describes provider locations unique id"},"gps":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"28.524596, 77.185577","description":"Describes provider gps locations "},"descriptor":{"name":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"Qutab Minar","description":"Describes provider locations descriptor"},"short_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Seth Sarai, Mehrauli, New Delhi, Delhi.","description":"Describes provider's short description"},"additional_desc":{"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/sites/additional-info","description":"Describes url for additional desc"},"content_type":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/plain","description":"Describes content type for additional desc"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes additional desc for locations"}},"_description":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes provider locations descriptor"}},"_description":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes provider locations"}},"items":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"1r3e9e2","description":"Describes unique id of item"},"descriptor":{"name":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"Adult-Ticket Culture & Heritage Item","description":"Describes name of item"},"code":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"ENTRY_PASS","description":"Describes code of item"},"short_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Ticket for Qutab Minar","description":"Describes short_desc of item"},"long_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"This ticket grants entry to the Qutab Minar.","description":"Describes long_desc of item"},"images":{"url":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","description":"Describes images url for item"},"size_type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"xs","description":"Describes images type for item"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes images url for item"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the items description."}},"location_ids":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"13r3e9e2","description":"Describes lcoation id"},"category_ids":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"c3r3e9e2","description":"Describes category id"},"price":{"value":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":350,"description":"Describes price value"},"currency":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":350,"description":"Describes price currency"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the price of an item."}},"quantity":{"maximum":{"count":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":6,"description":"Describes maximum count for item"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the maximum quantity of an item."}},"minimum":{"count":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":1,"description":"Describes minimum count for item"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the mimimum quantity of an item."}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the quantity info of an item."}},"time":{"label":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"VALIDITY","description":"Describes time label"},"duration":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"P2D","description":"Describes time duration"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes time label"}},"fulfillment_ids":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"cs3r3e9e2","description":"Describes fulfillments id assoicated to an item."},"add_ons":{"id":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"93r3e9e2","description":"Describes add_ons id."},"descriptor":{"name":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Audio Assistance","description":"Describes add_ons name."},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the add_ons description assocaited with an item."}},"quantity":{"available":{"count":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":1,"description":"Describes add_ons available count."},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the add_ons quantity available assocaited with an item."}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the add_ons quantity assocaited with an item."}},"price":{"value":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":100,"description":"Describes add_ons price value."},"currency":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"INR","description":"Describes add_ons price currency."},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the add_ons price assocaited with an item."}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the add_ons assocaited with an item."}},"cancellation_terms":{"external_ref":{"mimetype":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/html","description":"Describes mimetype for cancellation_terms"},"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/beckn/tnc.html","description":"Describes url for cancellation_terms"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes external_ref for cancellation_terms"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes cancellation_terms"}},"replacement_terms":{"external_ref":{"mimetype":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/html","description":"Describes mimetype for cancellation_terms"},"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass/beckn/replacement.html","description":"Describes url for cancellation_terms"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes external_ref for replacement terms"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes replacement terms"}},"tags":{"FARE_POLICY":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes fair policy tag group","list":{"MIN_AGE":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes min_age tag"},"MAX_AGE":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes max_age tag"},"GENDER":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes gender tag"},"NATIONALITY":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes nationality tag"}}},"INCLUSIONS":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes inclusion tag group"},"EXCLUSIONS":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes exclusion tag group"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes a product or a service offered to the end consumer by the provider. In the mobility sector, it can represent a fare product like one way journey. In the logistics sector, it can represent the delivery service offering. In the retail domain it can represent a product like a grocery item."}},"fulfillments":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"83r3e9e2","description":"Describes unique id of fulfillment"},"type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"VISIT","description":"Describes type of fulfillment"},"stops":{"type":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"START","description":"Describes type of stop"},"instructions":{"additional_desc":{"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/sites/additional-info","description":"Describes additional_desc url"},"content_type":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/plain","description":"Describes additional_desc mime type"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes additional_desc instructions"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes stops instructions"}},"time":{"timestamp":{"required":"OPTIONAL","type":"string","owner":"BAP/BPP","usage":"2024-06-28T05:00:16.000Z","description":"Describes time for fulfillments"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes the time of location."}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes the fulfillments stops."}},"agent":{"organization":{"contact":{"phone":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":-9999999908,"description":"Describes organization contact for fulfillments"},"email":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"john.doe@example.com","description":"Describes organization email for fulfillments"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes organization contact for fulfillments"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes organization contact for fulfillments"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes organization details for fulfillments"}},"vehicle":{"category":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"SITE","description":"Describes vehicle category for fulfillments"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes the vehicle type."}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes how a an order will be rendered/fulfilled to the end-customer"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the provider's description."}},"tags":{"BAP_TERMS":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes bap terms tag group","list":{"BUYER_FINDER_FEES_PERCENTAGE":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes buyer finder fee percentage"},"BUYER_FINDER_FEES_TYPE":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes buyer finder fee type"},"STATIC_TERMS":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"--","description":"Describes the static terms"},"SETTLEMENT_BASIS":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"--","description":"Describes the settlement basis "},"SETTLEMENT_WINDOW":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"--","description":"Describes the settlement window"}}},"BPP_TERMS":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes bpp terms tag group","list":{"BUYER_FINDER_FEES_PERCENTAGE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes buyer finder fee percentage"},"BUYER_FINDER_FEES_TYPE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes buyer finder fee type"},"STATIC_TERMS":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes the static terms"},"MANDATORY_ARBITRATION":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes the mandatory arbitration"},"COURT_JURISDICTION":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes the court jurisdiction"},"DELAY_INTEREST":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes the delay interest"}}}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the catalog's description."}}}},"select":{"context":{"location":{"country":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"IND","description":"Describes country code as per ISO 3166-1 and ISO 3166-2 format"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the country of location where the transaction is meant to be completed."}},"city":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"*","description":"Describes the city code this location is, or is located within"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the city of location where the transaction is meant to be completed."}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the location where the transaction is meant to be completed."}},"domain":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"ONDC:FIS13","description":"Describes domain code that is relevant to this transaction context"},"timestamp":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"2023-03-23T04:41:16.000Z","description":"Describes tme of request generation in RFC3339 format"},"bap_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"fis.test.bap.io","description":"Describes subscriber ID of the BAP"},"transaction_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"6743e9e2","description":"Describes a unique value which persists across all API calls"},"message_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"13ba8018f176","description":"Describes a unique value which persists during a request / callback cycle."},"version":{"required":"MANDATORY","type":"integer","owner":"BAP","usage":"2.0.0","description":"Describes the version of transaction protocol being used by the sender."},"action":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"select","description":"Describes the Beckn protocol method being called by the sender and executed at the receiver."},"bap_uri":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"https://fis.test.bap.io/","description":"Describes subscriber URL of the BAP for accepting callbacks from BPPs."},"ttl":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"PT30S","description":"Describes the duration in ISO8601 format after timestamp for which this message holds valid"},"bpp_id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"fis.test.bpp.io","description":"Describes subscriber ID of the BPP"},"bpp_uri":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://fis.test.bpp.io/","description":"Describes subscriber URL of the BPP for accepting calls from BAPs."}},"message":{"order":{"items":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"1r3e9e2","description":"Describes unique id of item"},"quantity":{"selected":{"count":{"required":"MANDATORY","type":"string","owner":"BAP","usage":1,"description":"Describes the selected count"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes items selected quantity"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes items quantity"}},"add_ons":{"id":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"2r3e9e2","description":"Describes the add_ons id"},"quantity":{"selected":{"count":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":2,"description":"Describes the add_ons selected count"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes add_ons selected quantity"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes add_ons quantity"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes the add_ons description"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes a product or a service offered to the end consumer by the provider. In the mobility sector, it can represent a fare product like one way journey. In the logistics sector, it can represent the delivery service offering. In the retail domain it can represent a product like a grocery item."}},"fulfillments":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"2vr3e9e2","description":"Describes the fulfillment Id"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the fulfillment"}},"provider":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"8vr3e9e2","description":"Describes the provider Id"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes provider details"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes order details"}}}},"on_select":{"context":{"location":{"country":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"IND","description":"Describes country code as per ISO 3166-1 and ISO 3166-2 format"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the country of location where the transaction is meant to be completed."}},"city":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"*","description":"Describes the city code this location is, or is located within"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the city of location where the transaction is meant to be completed."}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the location where the transaction is meant to be completed."}},"domain":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"ONDC:FIS13","description":"Describes domain code that is relevant to this transaction context"},"timestamp":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"2023-03-23T04:41:16.000Z","description":"Describes tme of request generation in RFC3339 format"},"bap_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"fis.test.bap.io","description":"Describes subscriber ID of the BAP"},"transaction_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"6743e9e2","description":"Describes a unique value which persists across all API calls"},"message_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"13ba8018f176","description":"Describes a unique value which persists during a request / callback cycle."},"version":{"required":"MANDATORY","type":"integer","owner":"BAP","usage":"2.0.0","description":"Describes the version of transaction protocol being used by the sender."},"action":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"on_select","description":"Describes the Beckn protocol method being called by the sender and executed at the receiver."},"bap_uri":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"https://fis.test.bap.io/","description":"Describes subscriber URL of the BAP for accepting callbacks from BPPs."},"ttl":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"PT30S","description":"Describes the duration in ISO8601 format after timestamp for which this message holds valid"},"bpp_id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"fis.test.bpp.io","description":"Describes subscriber ID of the BPP"},"bpp_uri":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://fis.test.bpp.io/","description":"Describes subscriber URL of the BPP for accepting calls from BAPs."}},"message":{"order":{"items":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"1r3e9e2","description":"Describes unique id of item"},"quantity":{"selected":{"count":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":1,"description":"Describes the selected count"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the items selected count"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the item quantity."}},"descriptor":{"name":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"Adult-Ticket Culture & Heritage Item","description":"Describes name of item"},"code":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"ENTRY_PASS","description":"Describes code of item"},"short_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Ticket for Qutab Minar","description":"Describes short_desc of item"},"long_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"This ticket grants entry to the Qutab Minar.","description":"Describes long_desc of item"},"images":{"url":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","description":"Describes images url for item"},"size_type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"xs","description":"Describes images type for item"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes images item"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the item descriptor"}},"location_ids":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"13r3e9e2","description":"Describes lcoation id"},"category_ids":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"c3r3e9e2","description":"Describes category id"},"price":{"value":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":350,"description":"Describes price value"},"currency":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":350,"description":"Describes price currency"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes price value"}},"time":{"label":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"VALIDITY","description":"Describes time label"},"duration":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"P2D","description":"Describes time duration"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes time label"}},"fulfillment_ids":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"cs3r3e9e2","description":"Describes fulfillments id assoicated to an item."},"add_ons":{"descriptor":{"name":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Audio Assistance","description":"Describes add_ons name."},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes add_ons descriptor."}},"price":{"value":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":100,"description":"Describes add_ons price value."},"currency":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"INR","description":"Describes add_ons price currency."},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes add_ons price value."}},"id":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"2r3e9e2","description":"Describes the add_ons id"},"quantity":{"selected":{"count":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":2,"description":"Describes the add_ons selected count"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the add_ons selected count"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the add_ons quantity"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes add_ons."}},"tags":{"FARE_POLICY":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes fair policy tag group","list":{"MIN_AGE":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes min_age tag"},"MAX_AGE":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes max_age tag"},"GENDER":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes gender tag"},"NATIONALITY":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes nationality tag"}}},"INCLUSIONS":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes inclusion tag group"},"EXCLUSIONS":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes exclusion tag group"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP/BPP","usage":"--","description":"This decription refers to the comprehensive list of the products or services selected and obtained within the specified order."}},"fulfillments":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"83r3e9e2","description":"Describes unique id of fulfillment"},"type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"VISIT","description":"Describes type of fulfillment"},"stops":{"type":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"START","description":"Describes type of stop"},"instructions":{"additional_desc":{"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/sites/additional-info","description":"Describes additional_desc url"},"content_type":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/plain","description":"Describes additional_desc mime type"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes additional_desc url"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes additional_desc instructin"}},"time":{"timestamp":{"required":"OPTIONAL","type":"string","owner":"BAP/BPP","usage":"2024-06-28T05:00:16.000Z","description":"Describes time for fulfillments"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes time for fulfillments"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes type of stop"}},"agent":{"organization":{"contact":{"phone":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":-9999999908,"description":"Describes organization contact for fulfillments"},"email":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"john.doe@example.com","description":"Describes organization email for fulfillments"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes organization contact for fulfillments"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes organization details for fulfillments"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes organization agent details"}},"vehicle":{"category":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"SITE","description":"Describes vehicle category for fulfillments"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes vehicle category for fulfillments"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes order fulfillment"}},"provider":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"8vr3e9e2","description":"Describes the provider Id"},"descriptor":{"name":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"India tourism","description":"Describes the provider name"},"images":{"url":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://www.abcinsurance.com/content/dam/abc/india/assets/images/header/logo.png","description":"Describes images for provider"},"size_type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"xs","description":"Describes images size type for provider"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes images for provider"}},"short_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Online ticket booking service","description":"Describes short description of the of provider"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the provider name"}},"locations":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"4r3e9e2","description":"Describes provider locations unique id"},"gps":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"28.524596, 77.185577","description":"Describes provider gps locations "},"descriptor":{"name":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"Qutab Minar","description":"Describes provider locations descriptor"},"short_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Seth Sarai, Mehrauli, New Delhi, Delhi.","description":"Describes provider's short description"},"additional_desc":{"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/sites/additional-info","description":"Describes url for additional desc"},"content_type":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/plain","description":"Describes content type for additional desc"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes url for additional desc"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes provider locations descriptor"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes provider locations"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"This describes the complete formulated description of the loan provider whose catalog items have been selected."}},"cancellation_terms":{"external_ref":{"mimetype":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/html","description":"Describes mimetype for cancellation_terms"},"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/beckn/tnc.html","description":"Describes url for cancellation_terms"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes external ref for cancellation_terms"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the cancellation_terms"}},"replacement_terms":{"external_ref":{"mimetype":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/html","description":"Describes mimetype for cancellation_terms"},"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass/beckn/replacement.html","description":"Describes url for cancellation_terms"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes external ref for replacement terms"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes replacement terms"}},"quote":{"breakup":{"title":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"BASE_FARE","description":"Describes breakup title"},"item":{"id":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"1r3e9e2","description":"Describes item id for breakup"},"price":{"value":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":100,"description":"Describes item price value."},"currency":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"INR","description":"Describes item price currency."},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes item price for breakup."}},"quantity":{"selected":{"count":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":2,"description":"Describes the item selected count"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the item selected count"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the item quantity."}},"add_ons":{"id":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"5r3e9e2","description":"Describes add_ons id for breakup"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes item for breakup"}},"price":{"currency":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"INR","description":"Describes item price currency."},"value":{"required":"MANDATORY","type":"string","owner":"BPP","usage":400,"description":"Describes item price currency."},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes breakup price."}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes breakup for quote"}},"price":{"value":{"required":"MANDATORY","type":"string","owner":"BPP","usage":400,"description":"Describes item price currency."},"currency":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"INR","description":"Describes item price currency."},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes quote price."}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes order quote"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP/BPP","usage":"--","description":"This refers to the complete description of the legal contract created between the buyer and the seller."}}}},"init":{"context":{"location":{"country":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"IND","description":"Describes country code as per ISO 3166-1 and ISO 3166-2 format"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the country of location where the transaction is meant to be completed."}},"city":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"*","description":"Describes the city code this location is, or is located within"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the city of location where the transaction is meant to be completed."}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the location where the transaction is meant to be completed."}},"domain":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"ONDC:FIS13","description":"Describes domain code that is relevant to this transaction context"},"timestamp":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"2023-03-23T04:41:16.000Z","description":"Describes tme of request generation in RFC3339 format"},"bap_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"fis.test.bap.io","description":"Describes subscriber ID of the BAP"},"transaction_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"6743e9e2","description":"Describes a unique value which persists across all API calls"},"message_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"13ba8018f176","description":"Describes a unique value which persists during a request / callback cycle."},"version":{"required":"MANDATORY","type":"integer","owner":"BAP","usage":"2.0.0","description":"Describes the version of transaction protocol being used by the sender."},"action":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"init","description":"Describes the Beckn protocol method being called by the sender and executed at the receiver."},"bap_uri":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"https://fis.test.bap.io/","description":"Describes subscriber URL of the BAP for accepting callbacks from BPPs."},"ttl":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"PT30S","description":"Describes the duration in ISO8601 format after timestamp for which this message holds valid"},"bpp_id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"fis.test.bpp.io","description":"Describes subscriber ID of the BPP"},"bpp_uri":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://fis.test.bpp.io/","description":"Describes subscriber URL of the BPP for accepting calls from BAPs."}},"message":{"order":{"items":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"1r3e9e2","description":"Describes unique id of item"},"quantity":{"selected":{"count":{"required":"MANDATORY","type":"string","owner":"BAP","usage":1,"description":"Describes the selected count"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes items selected quantity"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes items quantity"}},"add_ons":{"id":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"2r3e9e2","description":"Describes the add_ons id"},"quantity":{"selected":{"count":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":2,"description":"Describes the add_ons selected count"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes add_ons selected quantity"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes add_ons quantity"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes the add_ons description"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes a product or a service offered to the end consumer by the provider. In the mobility sector, it can represent a fare product like one way journey. In the logistics sector, it can represent the delivery service offering. In the retail domain it can represent a product like a grocery item."}},"fulfillments":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"2vr3e9e2","description":"Describes the fulfillment Id"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the fulfillment"}},"provider":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"8vr3e9e2","description":"Describes the provider Id"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes provider details"}},"payments":{"collected_by":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"BAP","description":"Describes the payment collector"},"status":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"NOT-PAID","description":"Describes the payment status"},"type":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"PRE-ORDER","description":"Describes the payment type"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes the payments details"}},"tags":{"BAP_TERMS":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes bap terms tag group","list":{"BUYER_FINDER_FEES_PERCENTAGE":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes buyer finder fee percentage"},"BUYER_FINDER_FEES_TYPE":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes buyer finder fee type"},"STATIC_TERMS":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"--","description":"Describes the static terms"},"SETTLEMENT_BASIS":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"--","description":"Describes the settlement basis "},"SETTLEMENT_WINDOW":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"--","description":"Describes the settlement window"}}}},"billing":{"name":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"john.doe","description":"Describes the billing name"},"email":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"john.doe@example.com","description":"Describes the billing email"},"phone":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":-9897867473,"description":"Describes the billing phone"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the billing details"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes order details"}}}},"on_init":{"context":{"location":{"country":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"IND","description":"Describes country code as per ISO 3166-1 and ISO 3166-2 format"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the country of location where the transaction is meant to be completed."}},"city":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"*","description":"Describes the city code this location is, or is located within"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the city of location where the transaction is meant to be completed."}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the location where the transaction is meant to be completed."}},"domain":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"ONDC:FIS13","description":"Describes domain code that is relevant to this transaction context"},"timestamp":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"2023-03-23T04:41:16.000Z","description":"Describes tme of request generation in RFC3339 format"},"bap_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"fis.test.bap.io","description":"Describes subscriber ID of the BAP"},"transaction_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"6743e9e2","description":"Describes a unique value which persists across all API calls"},"message_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"13ba8018f176","description":"Describes a unique value which persists during a request / callback cycle."},"version":{"required":"MANDATORY","type":"integer","owner":"BAP","usage":"2.0.0","description":"Describes the version of transaction protocol being used by the sender."},"action":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"on_init","description":"Describes the Beckn protocol method being called by the sender and executed at the receiver."},"bap_uri":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"https://fis.test.bap.io/","description":"Describes subscriber URL of the BAP for accepting callbacks from BPPs."},"ttl":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"PT30S","description":"Describes the duration in ISO8601 format after timestamp for which this message holds valid"},"bpp_id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"fis.test.bpp.io","description":"Describes subscriber ID of the BPP"},"bpp_uri":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://fis.test.bpp.io/","description":"Describes subscriber URL of the BPP for accepting calls from BAPs."}},"message":{"order":{"items":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"1r3e9e2","description":"Describes unique id of item"},"quantity":{"selected":{"count":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":1,"description":"Describes the selected count"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the items selected count"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the item quantity."}},"descriptor":{"name":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"Adult-Ticket Culture & Heritage Item","description":"Describes name of item"},"code":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"ENTRY_PASS","description":"Describes code of item"},"short_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Ticket for Qutab Minar","description":"Describes short_desc of item"},"long_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"This ticket grants entry to the Qutab Minar.","description":"Describes long_desc of item"},"images":{"url":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","description":"Describes images url for item"},"size_type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"xs","description":"Describes images type for item"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes images item"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the item descriptor"}},"location_ids":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"13r3e9e2","description":"Describes lcoation id"},"category_ids":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"c3r3e9e2","description":"Describes category id"},"price":{"value":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":350,"description":"Describes price value"},"currency":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":350,"description":"Describes price currency"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes price value"}},"time":{"label":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"VALIDITY","description":"Describes time label"},"duration":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"P2D","description":"Describes time duration"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes time label"}},"fulfillment_ids":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"cs3r3e9e2","description":"Describes fulfillments id assoicated to an item."},"add_ons":{"descriptor":{"name":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Audio Assistance","description":"Describes add_ons name."},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes add_ons descriptor."}},"price":{"value":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":100,"description":"Describes add_ons price value."},"currency":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"INR","description":"Describes add_ons price currency."},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes add_ons price value."}},"id":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"2r3e9e2","description":"Describes the add_ons id"},"quantity":{"selected":{"count":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":2,"description":"Describes the add_ons selected count"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the add_ons selected count"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the add_ons quantity"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes add_ons."}},"tags":{"FARE_POLICY":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes fair policy tag group","list":{"MIN_AGE":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes min_age tag"},"MAX_AGE":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes max_age tag"},"GENDER":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes gender tag"},"NATIONALITY":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes nationality tag"}}},"INCLUSIONS":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes inclusion tag group"},"EXCLUSIONS":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes exclusion tag group"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP/BPP","usage":"--","description":"This decription refers to the comprehensive list of the products or services selected and obtained within the specified order."}},"fulfillments":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"83r3e9e2","description":"Describes unique id of fulfillment"},"type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"VISIT","description":"Describes type of fulfillment"},"stops":{"type":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"START","description":"Describes type of stop"},"instructions":{"additional_desc":{"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/sites/additional-info","description":"Describes additional_desc url"},"content_type":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/plain","description":"Describes additional_desc mime type"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes additional_desc url"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes additional_desc instructin"}},"time":{"timestamp":{"required":"OPTIONAL","type":"string","owner":"BAP/BPP","usage":"2024-06-28T05:00:16.000Z","description":"Describes time for fulfillments"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes time for fulfillments"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes type of stop"}},"agent":{"organization":{"contact":{"phone":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":-9999999908,"description":"Describes organization contact for fulfillments"},"email":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"john.doe@example.com","description":"Describes organization email for fulfillments"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes organization contact for fulfillments"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes organization details for fulfillments"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes organization agent details"}},"vehicle":{"category":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"SITE","description":"Describes vehicle category for fulfillments"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes vehicle category for fulfillments"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes order fulfillment"}},"provider":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"8vr3e9e2","description":"Describes the provider Id"},"descriptor":{"name":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"India tourism","description":"Describes the provider name"},"images":{"url":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://www.abcinsurance.com/content/dam/abc/india/assets/images/header/logo.png","description":"Describes images for provider"},"size_type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"xs","description":"Describes images size type for provider"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes images for provider"}},"short_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Online ticket booking service","description":"Describes short description of the of provider"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the provider name"}},"locations":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"4r3e9e2","description":"Describes provider locations unique id"},"gps":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"28.524596, 77.185577","description":"Describes provider gps locations "},"descriptor":{"name":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"Qutab Minar","description":"Describes provider locations descriptor"},"short_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Seth Sarai, Mehrauli, New Delhi, Delhi.","description":"Describes provider's short description"},"additional_desc":{"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/sites/additional-info","description":"Describes url for additional desc"},"content_type":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/plain","description":"Describes content type for additional desc"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes url for additional desc"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes provider locations descriptor"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes provider locations"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"This describes the complete formulated description of the loan provider whose catalog items have been selected."}},"cancellation_terms":{"external_ref":{"mimetype":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/html","description":"Describes mimetype for cancellation_terms"},"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/beckn/tnc.html","description":"Describes url for cancellation_terms"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes external ref for cancellation_terms"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the cancellation_terms"}},"replacement_terms":{"external_ref":{"mimetype":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/html","description":"Describes mimetype for cancellation_terms"},"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass/beckn/replacement.html","description":"Describes url for cancellation_terms"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes external ref for replacement terms"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes replacement terms"}},"quote":{"breakup":{"title":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"BASE_FARE","description":"Describes breakup title"},"item":{"id":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"1r3e9e2","description":"Describes item id for breakup"},"price":{"value":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":100,"description":"Describes item price value."},"currency":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"INR","description":"Describes item price currency."},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes item price for breakup."}},"quantity":{"selected":{"count":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":2,"description":"Describes the item selected count"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the item selected count"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the item quantity."}},"add_ons":{"id":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"5r3e9e2","description":"Describes add_ons id for breakup"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes item for breakup"}},"price":{"currency":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"INR","description":"Describes item price currency."},"value":{"required":"MANDATORY","type":"string","owner":"BPP","usage":400,"description":"Describes item price currency."},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes breakup price."}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes breakup for quote"}},"price":{"value":{"required":"MANDATORY","type":"string","owner":"BPP","usage":400,"description":"Describes item price currency."},"currency":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"INR","description":"Describes item price currency."},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes quote price."}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes order quote"}},"payments":{"collected_by":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"BAP","description":"Describes the payment collector"},"status":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"NOT-PAID","description":"Describes the payment status"},"type":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"PRE-ORDER","description":"Describes the payment type"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes the payments details"}},"tags":{"BAP_TERMS":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes bap terms tag group","list":{"BUYER_FINDER_FEES_PERCENTAGE":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes buyer finder fee percentage"},"BUYER_FINDER_FEES_TYPE":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes buyer finder fee type"},"STATIC_TERMS":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes the static terms"},"SETTLEMENT_BASIS":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes the settlement basis "},"SETTLEMENT_WINDOW":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes the settlement window"}}},"BPP_TERMS":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes bpp terms tag group","list":{"BUYER_FINDER_FEES_PERCENTAGE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes buyer finder fee percentage"},"BUYER_FINDER_FEES_TYPE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes buyer finder fee type"},"STATIC_TERMS":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the static terms"},"MANDATORY_ARBITRATION":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the mandatory arbitration"},"COURT_JURISDICTION":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the court jurisdiction"},"DELAY_INTEREST":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the delay interest"},"SETTLEMENT_AMOUNT":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the settlement amount"},"SETTLEMENT_TYPE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the settlement type"},"SETTLEMENT_BANK_CODE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the settlement bank code"},"SETTLEMENT_BANK_ACCOUNT_NUMBER":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the settlement bank account number"}}}},"billing":{"name":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"john.doe","description":"Describes the billing name"},"email":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"john.doe@example.com","description":"Describes the billing email"},"phone":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":-9897867473,"description":"Describes the billing phone"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the billing details"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP/BPP","usage":"--","description":"This refers to the complete description of the legal contract created between the buyer and the seller."}}}},"confirm":{"context":{"location":{"country":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"IND","description":"Describes country code as per ISO 3166-1 and ISO 3166-2 format"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the country of location where the transaction is meant to be completed."}},"city":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"*","description":"Describes the city code this location is, or is located within"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the city of location where the transaction is meant to be completed."}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the location where the transaction is meant to be completed."}},"domain":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"ONDC:FIS13","description":"Describes domain code that is relevant to this transaction context"},"timestamp":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"2023-03-23T04:41:16.000Z","description":"Describes tme of request generation in RFC3339 format"},"bap_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"fis.test.bap.io","description":"Describes subscriber ID of the BAP"},"transaction_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"6743e9e2","description":"Describes a unique value which persists across all API calls"},"message_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"13ba8018f176","description":"Describes a unique value which persists during a request / callback cycle."},"version":{"required":"MANDATORY","type":"integer","owner":"BAP","usage":"2.0.0","description":"Describes the version of transaction protocol being used by the sender."},"action":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"confirm","description":"Describes the Beckn protocol method being called by the sender and executed at the receiver."},"bap_uri":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"https://fis.test.bap.io/","description":"Describes subscriber URL of the BAP for accepting callbacks from BPPs."},"ttl":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"PT30S","description":"Describes the duration in ISO8601 format after timestamp for which this message holds valid"},"bpp_id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"fis.test.bpp.io","description":"Describes subscriber ID of the BPP"},"bpp_uri":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://fis.test.bpp.io/","description":"Describes subscriber URL of the BPP for accepting calls from BAPs."}},"message":{"order":{"items":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"1r3e9e2","description":"Describes unique id of item"},"quantity":{"selected":{"count":{"required":"MANDATORY","type":"string","owner":"BAP","usage":1,"description":"Describes the selected count"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes items selected quantity"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes items quantity"}},"add_ons":{"id":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"2r3e9e2","description":"Describes the add_ons id"},"quantity":{"selected":{"count":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":2,"description":"Describes the add_ons selected count"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes add_ons selected quantity"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes add_ons quantity"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes the add_ons description"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes a product or a service offered to the end consumer by the provider. In the mobility sector, it can represent a fare product like one way journey. In the logistics sector, it can represent the delivery service offering. In the retail domain it can represent a product like a grocery item."}},"fulfillments":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"2vr3e9e2","description":"Describes the fulfillment Id"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the fulfillment"}},"provider":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"8vr3e9e2","description":"Describes the provider Id"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes provider details"}},"payments":{"collected_by":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"BAP","description":"Describes the payment collector"},"status":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"NOT-PAID","description":"Describes the payment status"},"type":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"PRE-ORDER","description":"Describes the payment type"},"params":{"transaction_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"61b4be7e-d85c-456a-99e5-ce3d83b","description":"Describes the payment transaction id"},"currency":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"INR","description":"Describes the payment currency"},"amount":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"INR","description":"Describes the payment amount"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes the payment params"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes the payments details"}},"tags":{"BAP_TERMS":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes bap terms tag group","list":{"BUYER_FINDER_FEES_PERCENTAGE":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes buyer finder fee percentage"},"BUYER_FINDER_FEES_TYPE":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes buyer finder fee type"},"STATIC_TERMS":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes the static terms"},"SETTLEMENT_BASIS":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes the settlement basis "},"SETTLEMENT_WINDOW":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes the settlement window"}}},"BPP_TERMS":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes bpp terms tag group","list":{"BUYER_FINDER_FEES_PERCENTAGE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes buyer finder fee percentage"},"BUYER_FINDER_FEES_TYPE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes buyer finder fee type"},"STATIC_TERMS":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the static terms"},"MANDATORY_ARBITRATION":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the mandatory arbitration"},"COURT_JURISDICTION":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the court jurisdiction"},"DELAY_INTEREST":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the delay interest"},"SETTLEMENT_AMOUNT":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the settlement amount"},"SETTLEMENT_TYPE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the settlement type"},"SETTLEMENT_BANK_CODE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the settlement bank code"},"SETTLEMENT_BANK_ACCOUNT_NUMBER":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the settlement bank account number"}}}},"billing":{"name":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"john.doe","description":"Describes the billing name"},"email":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"john.doe@example.com","description":"Describes the billing email"},"phone":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":-9897867473,"description":"Describes the billing phone"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the billing details"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes order details"}}}},"on_confirm":{"context":{"location":{"country":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"IND","description":"Describes country code as per ISO 3166-1 and ISO 3166-2 format"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the country of location where the transaction is meant to be completed."}},"city":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"*","description":"Describes the city code this location is, or is located within"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the city of location where the transaction is meant to be completed."}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the location where the transaction is meant to be completed."}},"domain":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"ONDC:FIS13","description":"Describes domain code that is relevant to this transaction context"},"timestamp":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"2023-03-23T04:41:16.000Z","description":"Describes tme of request generation in RFC3339 format"},"bap_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"fis.test.bap.io","description":"Describes subscriber ID of the BAP"},"transaction_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"6743e9e2","description":"Describes a unique value which persists across all API calls"},"message_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"13ba8018f176","description":"Describes a unique value which persists during a request / callback cycle."},"version":{"required":"MANDATORY","type":"integer","owner":"BAP","usage":"2.0.0","description":"Describes the version of transaction protocol being used by the sender."},"action":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"on_init","description":"Describes the Beckn protocol method being called by the sender and executed at the receiver."},"bap_uri":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"https://fis.test.bap.io/","description":"Describes subscriber URL of the BAP for accepting callbacks from BPPs."},"ttl":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"PT30S","description":"Describes the duration in ISO8601 format after timestamp for which this message holds valid"},"bpp_id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"fis.test.bpp.io","description":"Describes subscriber ID of the BPP"},"bpp_uri":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://fis.test.bpp.io/","description":"Describes subscriber URL of the BPP for accepting calls from BAPs."}},"message":{"order":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"5r3e9e2","description":"Describes the order id"},"status":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"ACTIVE","description":"Describes the order status"},"items":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"1r3e9e2","description":"Describes unique id of item"},"quantity":{"selected":{"count":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":1,"description":"Describes the selected count"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the items selected count"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the item quantity."}},"descriptor":{"name":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"Adult-Ticket Culture & Heritage Item","description":"Describes name of item"},"code":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"ENTRY_PASS","description":"Describes code of item"},"short_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Ticket for Qutab Minar","description":"Describes short_desc of item"},"long_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"This ticket grants entry to the Qutab Minar.","description":"Describes long_desc of item"},"images":{"url":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","description":"Describes images url for item"},"size_type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"xs","description":"Describes images type for item"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes images item"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the item descriptor"}},"location_ids":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"13r3e9e2","description":"Describes lcoation id"},"category_ids":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"c3r3e9e2","description":"Describes category id"},"price":{"value":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":350,"description":"Describes price value"},"currency":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":350,"description":"Describes price currency"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes price value"}},"time":{"label":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"VALIDITY","description":"Describes time label"},"duration":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"P2D","description":"Describes time duration"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes time label"}},"fulfillment_ids":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"cs3r3e9e2","description":"Describes fulfillments id assoicated to an item."},"add_ons":{"descriptor":{"name":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Audio Assistance","description":"Describes add_ons name."},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes add_ons descriptor."}},"price":{"value":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":100,"description":"Describes add_ons price value."},"currency":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"INR","description":"Describes add_ons price currency."},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes add_ons price value."}},"id":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"2r3e9e2","description":"Describes the add_ons id"},"quantity":{"selected":{"count":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":2,"description":"Describes the add_ons selected count"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the add_ons selected count"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the add_ons quantity"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes add_ons."}},"tags":{"FARE_POLICY":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes fair policy tag group","list":{"MIN_AGE":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes min_age tag"},"MAX_AGE":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes max_age tag"},"GENDER":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes gender tag"},"NATIONALITY":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes nationality tag"}}},"INCLUSIONS":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes inclusion tag group"},"EXCLUSIONS":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes exclusion tag group"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP/BPP","usage":"--","description":"This decription refers to the comprehensive list of the products or services selected and obtained within the specified order."}},"fulfillments":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"83r3e9e2","description":"Describes unique id of fulfillment"},"type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"VISIT","description":"Describes type of fulfillment"},"state":{"descriptor":{"code":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"CONFIRMED","description":"Describes the fulfillment state"}}},"stops":{"type":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"START","description":"Describes type of stop"},"instructions":{"additional_desc":{"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/sites/additional-info","description":"Describes additional_desc url"},"content_type":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/plain","description":"Describes additional_desc mime type"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes additional_desc url"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes additional_desc instructin"}},"time":{"timestamp":{"required":"OPTIONAL","type":"string","owner":"BAP/BPP","usage":"2024-06-28T05:00:16.000Z","description":"Describes time for fulfillments"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes time for fulfillments"}},"authorization":{"type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"QR","description":"Describes the authorization type"},"token":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"iVBORw0KGgoAAAANSUhEUg","description":"Describes the authorization token"},"valid_to":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"2024-06-30T05:00:16.000Z","description":"Describes the authorization token valid timestamp"},"status":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"UNCLAIMED","description":"Describes the authorization token status"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the authorization"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes type of stop"}},"agent":{"organization":{"contact":{"phone":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":-9999999908,"description":"Describes organization contact for fulfillments"},"email":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"john.doe@example.com","description":"Describes organization email for fulfillments"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes organization contact for fulfillments"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes organization details for fulfillments"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes organization agent details"}},"vehicle":{"category":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"SITE","description":"Describes vehicle category for fulfillments"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes vehicle category for fulfillments"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes order fulfillment"}},"provider":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"8vr3e9e2","description":"Describes the provider Id"},"descriptor":{"name":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"India tourism","description":"Describes the provider name"},"images":{"url":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://www.abcinsurance.com/content/dam/abc/india/assets/images/header/logo.png","description":"Describes images for provider"},"size_type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"xs","description":"Describes images size type for provider"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes images for provider"}},"short_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Online ticket booking service","description":"Describes short description of the of provider"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the provider name"}},"locations":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"4r3e9e2","description":"Describes provider locations unique id"},"gps":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"28.524596, 77.185577","description":"Describes provider gps locations "},"descriptor":{"name":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"Qutab Minar","description":"Describes provider locations descriptor"},"short_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Seth Sarai, Mehrauli, New Delhi, Delhi.","description":"Describes provider's short description"},"additional_desc":{"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/sites/additional-info","description":"Describes url for additional desc"},"content_type":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/plain","description":"Describes content type for additional desc"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes url for additional desc"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes provider locations descriptor"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes provider locations"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"This describes the complete formulated description of the loan provider whose catalog items have been selected."}},"cancellation_terms":{"external_ref":{"mimetype":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/html","description":"Describes mimetype for cancellation_terms"},"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/beckn/tnc.html","description":"Describes url for cancellation_terms"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes external ref for cancellation_terms"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the cancellation_terms"}},"replacement_terms":{"external_ref":{"mimetype":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/html","description":"Describes mimetype for cancellation_terms"},"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass/beckn/replacement.html","description":"Describes url for cancellation_terms"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes external ref for replacement terms"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes replacement terms"}},"quote":{"breakup":{"title":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"BASE_FARE","description":"Describes breakup title"},"item":{"id":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"1r3e9e2","description":"Describes item id for breakup"},"price":{"value":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":100,"description":"Describes item price value."},"currency":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"INR","description":"Describes item price currency."},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes item price for breakup."}},"quantity":{"selected":{"count":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":2,"description":"Describes the item selected count"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the item selected count"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the item quantity."}},"add_ons":{"id":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"5r3e9e2","description":"Describes add_ons id for breakup"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes item for breakup"}},"price":{"currency":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"INR","description":"Describes item price currency."},"value":{"required":"MANDATORY","type":"string","owner":"BPP","usage":400,"description":"Describes item price currency."},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes breakup price."}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes breakup for quote"}},"price":{"value":{"required":"MANDATORY","type":"string","owner":"BPP","usage":400,"description":"Describes item price currency."},"currency":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"INR","description":"Describes item price currency."},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes quote price."}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes order quote"}},"payments":{"collected_by":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"BAP","description":"Describes the payment collector"},"status":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"NOT-PAID","description":"Describes the payment status"},"type":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"PRE-ORDER","description":"Describes the payment type"},"params":{"amount":{"required":"MANDATORY","type":"string","owner":"BAP","usage":700,"description":"Describes the payment amount"},"currency":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"INR","description":"Describes the payment currency"},"transaction_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"61b4be7e-d85c-456a-99e5-ce3d83b","description":"Describes the payment transaction id"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes the payment params"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes the payments details"}},"tags":{"BAP_TERMS":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes bap terms tag group","list":{"BUYER_FINDER_FEES_PERCENTAGE":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes buyer finder fee percentage"},"BUYER_FINDER_FEES_TYPE":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes buyer finder fee type"},"STATIC_TERMS":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes the static terms"},"SETTLEMENT_BASIS":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes the settlement basis "},"SETTLEMENT_WINDOW":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes the settlement window"}}},"BPP_TERMS":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes bpp terms tag group","list":{"BUYER_FINDER_FEES_PERCENTAGE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes buyer finder fee percentage"},"BUYER_FINDER_FEES_TYPE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes buyer finder fee type"},"STATIC_TERMS":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the static terms"},"MANDATORY_ARBITRATION":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the mandatory arbitration"},"COURT_JURISDICTION":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the court jurisdiction"},"DELAY_INTEREST":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the delay interest"},"SETTLEMENT_AMOUNT":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the settlement amount"},"SETTLEMENT_TYPE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the settlement type"},"SETTLEMENT_BANK_CODE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the settlement bank code"},"SETTLEMENT_BANK_ACCOUNT_NUMBER":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the settlement bank account number"}}}},"billing":{"name":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"john.doe","description":"Describes the billing name"},"email":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"john.doe@example.com","description":"Describes the billing email"},"phone":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":-9897867473,"description":"Describes the billing phone"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the billing details"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP/BPP","usage":"--","description":"This refers to the complete description of the legal contract created between the buyer and the seller."}}}},"status":{"context":{"location":{"country":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"IND","description":"Describes country code as per ISO 3166-1 and ISO 3166-2 format"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the country of location where the transaction is meant to be completed."}},"city":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"*","description":"Describes the city code this location is, or is located within"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the city of location where the transaction is meant to be completed."}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the location where the transaction is meant to be completed."}},"domain":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"ONDC:FIS13","description":"Describes domain code that is relevant to this transaction context"},"timestamp":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"2023-03-23T04:41:16.000Z","description":"Describes tme of request generation in RFC3339 format"},"bap_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"fis.test.bap.io","description":"Describes subscriber ID of the BAP"},"transaction_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"6743e9e2","description":"Describes a unique value which persists across all API calls"},"message_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"13ba8018f176","description":"Describes a unique value which persists during a request / callback cycle."},"version":{"required":"MANDATORY","type":"integer","owner":"BAP","usage":"2.0.0","description":"Describes the version of transaction protocol being used by the sender."},"action":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"status","description":"Describes the Beckn protocol method being called by the sender and executed at the receiver."},"bap_uri":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"https://fis.test.bap.io/","description":"Describes subscriber URL of the BAP for accepting callbacks from BPPs."},"ttl":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"PT30S","description":"Describes the duration in ISO8601 format after timestamp for which this message holds valid"},"bpp_id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"fis.test.bpp.io","description":"Describes subscriber ID of the BPP"},"bpp_uri":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://fis.test.bpp.io/","description":"Describes subscriber URL of the BPP for accepting calls from BAPs."}},"message":{"order_id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"5r3e9e2","description":"Describes the order id"}}},"on_status":{"context":{"location":{"country":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"IND","description":"Describes country code as per ISO 3166-1 and ISO 3166-2 format"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the country of location where the transaction is meant to be completed."}},"city":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"*","description":"Describes the city code this location is, or is located within"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the city of location where the transaction is meant to be completed."}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the location where the transaction is meant to be completed."}},"domain":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"ONDC:FIS13","description":"Describes domain code that is relevant to this transaction context"},"timestamp":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"2023-03-23T04:41:16.000Z","description":"Describes tme of request generation in RFC3339 format"},"bap_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"fis.test.bap.io","description":"Describes subscriber ID of the BAP"},"transaction_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"6743e9e2","description":"Describes a unique value which persists across all API calls"},"message_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"13ba8018f176","description":"Describes a unique value which persists during a request / callback cycle."},"version":{"required":"MANDATORY","type":"integer","owner":"BAP","usage":"2.0.0","description":"Describes the version of transaction protocol being used by the sender."},"action":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"on_init","description":"Describes the Beckn protocol method being called by the sender and executed at the receiver."},"bap_uri":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"https://fis.test.bap.io/","description":"Describes subscriber URL of the BAP for accepting callbacks from BPPs."},"ttl":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"PT30S","description":"Describes the duration in ISO8601 format after timestamp for which this message holds valid"},"bpp_id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"fis.test.bpp.io","description":"Describes subscriber ID of the BPP"},"bpp_uri":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://fis.test.bpp.io/","description":"Describes subscriber URL of the BPP for accepting calls from BAPs."}},"message":{"order":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"5r3e9e2","description":"Describes the order id"},"status":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"ACTIVE","description":"Describes the order status"},"items":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"1r3e9e2","description":"Describes unique id of item"},"quantity":{"selected":{"count":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":1,"description":"Describes the selected count"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the items selected count"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the item quantity."}},"descriptor":{"name":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"Adult-Ticket Culture & Heritage Item","description":"Describes name of item"},"code":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"ENTRY_PASS","description":"Describes code of item"},"short_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Ticket for Qutab Minar","description":"Describes short_desc of item"},"long_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"This ticket grants entry to the Qutab Minar.","description":"Describes long_desc of item"},"images":{"url":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","description":"Describes images url for item"},"size_type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"xs","description":"Describes images type for item"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes images item"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the item descriptor"}},"location_ids":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"13r3e9e2","description":"Describes lcoation id"},"category_ids":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"c3r3e9e2","description":"Describes category id"},"price":{"value":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":350,"description":"Describes price value"},"currency":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":350,"description":"Describes price currency"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes price value"}},"time":{"label":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"VALIDITY","description":"Describes time label"},"duration":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"P2D","description":"Describes time duration"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes time label"}},"fulfillment_ids":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"cs3r3e9e2","description":"Describes fulfillments id assoicated to an item."},"add_ons":{"descriptor":{"name":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Audio Assistance","description":"Describes add_ons name."},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes add_ons descriptor."}},"price":{"value":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":100,"description":"Describes add_ons price value."},"currency":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"INR","description":"Describes add_ons price currency."},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes add_ons price value."}},"id":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"2r3e9e2","description":"Describes the add_ons id"},"quantity":{"selected":{"count":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":2,"description":"Describes the add_ons selected count"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the add_ons selected count"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the add_ons quantity"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes add_ons."}},"tags":{"FARE_POLICY":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes fair policy tag group","list":{"MIN_AGE":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes min_age tag"},"MAX_AGE":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes max_age tag"},"GENDER":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes gender tag"},"NATIONALITY":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes nationality tag"}}},"INCLUSIONS":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes inclusion tag group"},"EXCLUSIONS":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes exclusion tag group"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP/BPP","usage":"--","description":"This decription refers to the comprehensive list of the products or services selected and obtained within the specified order."}},"fulfillments":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"83r3e9e2","description":"Describes unique id of fulfillment"},"type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"VISIT","description":"Describes type of fulfillment"},"state":{"descriptor":{"code":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"CONFIRMED","description":"Describes the fulfillment state"}}},"stops":{"type":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"START","description":"Describes type of stop"},"instructions":{"additional_desc":{"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/sites/additional-info","description":"Describes additional_desc url"},"content_type":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/plain","description":"Describes additional_desc mime type"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes additional_desc url"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes additional_desc instructin"}},"time":{"timestamp":{"required":"OPTIONAL","type":"string","owner":"BAP/BPP","usage":"2024-06-28T05:00:16.000Z","description":"Describes time for fulfillments"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes time for fulfillments"}},"authorization":{"type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"QR","description":"Describes the authorization type"},"token":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"iVBORw0KGgoAAAANSUhEUg","description":"Describes the authorization token"},"valid_to":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"2024-06-30T05:00:16.000Z","description":"Describes the authorization token valid timestamp"},"status":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"UNCLAIMED","description":"Describes the authorization token status"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the authorization"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes type of stop"}},"agent":{"organization":{"contact":{"phone":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":-9999999908,"description":"Describes organization contact for fulfillments"},"email":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"john.doe@example.com","description":"Describes organization email for fulfillments"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes organization contact for fulfillments"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes organization details for fulfillments"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes organization agent details"}},"vehicle":{"category":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"SITE","description":"Describes vehicle category for fulfillments"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes vehicle category for fulfillments"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes order fulfillment"}},"provider":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"8vr3e9e2","description":"Describes the provider Id"},"descriptor":{"name":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"India tourism","description":"Describes the provider name"},"images":{"url":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://www.abcinsurance.com/content/dam/abc/india/assets/images/header/logo.png","description":"Describes images for provider"},"size_type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"xs","description":"Describes images size type for provider"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes images for provider"}},"short_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Online ticket booking service","description":"Describes short description of the of provider"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the provider name"}},"locations":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"4r3e9e2","description":"Describes provider locations unique id"},"gps":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"28.524596, 77.185577","description":"Describes provider gps locations "},"descriptor":{"name":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"Qutab Minar","description":"Describes provider locations descriptor"},"short_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Seth Sarai, Mehrauli, New Delhi, Delhi.","description":"Describes provider's short description"},"additional_desc":{"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/sites/additional-info","description":"Describes url for additional desc"},"content_type":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/plain","description":"Describes content type for additional desc"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes url for additional desc"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes provider locations descriptor"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes provider locations"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"This describes the complete formulated description of the loan provider whose catalog items have been selected."}},"cancellation_terms":{"external_ref":{"mimetype":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/html","description":"Describes mimetype for cancellation_terms"},"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/beckn/tnc.html","description":"Describes url for cancellation_terms"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes external ref for cancellation_terms"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the cancellation_terms"}},"replacement_terms":{"external_ref":{"mimetype":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/html","description":"Describes mimetype for cancellation_terms"},"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass/beckn/replacement.html","description":"Describes url for cancellation_terms"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes external ref for replacement terms"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes replacement terms"}},"quote":{"breakup":{"title":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"BASE_FARE","description":"Describes breakup title"},"item":{"id":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"1r3e9e2","description":"Describes item id for breakup"},"price":{"value":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":100,"description":"Describes item price value."},"currency":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"INR","description":"Describes item price currency."},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes item price for breakup."}},"quantity":{"selected":{"count":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":2,"description":"Describes the item selected count"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the item selected count"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the item quantity."}},"add_ons":{"id":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"5r3e9e2","description":"Describes add_ons id for breakup"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes item for breakup"}},"price":{"currency":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"INR","description":"Describes item price currency."},"value":{"required":"MANDATORY","type":"string","owner":"BPP","usage":400,"description":"Describes item price currency."},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes breakup price."}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes breakup for quote"}},"price":{"value":{"required":"MANDATORY","type":"string","owner":"BPP","usage":400,"description":"Describes item price currency."},"currency":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"INR","description":"Describes item price currency."},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes quote price."}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes order quote"}},"payments":{"collected_by":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"BAP","description":"Describes the payment collector"},"status":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"NOT-PAID","description":"Describes the payment status"},"type":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"PRE-ORDER","description":"Describes the payment type"},"params":{"amount":{"required":"MANDATORY","type":"string","owner":"BAP","usage":700,"description":"Describes the payment amount"},"currency":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"INR","description":"Describes the payment currency"},"transaction_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"61b4be7e-d85c-456a-99e5-ce3d83b","description":"Describes the payment transaction id"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes the payment params"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes the payments details"}},"tags":{"BAP_TERMS":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes bap terms tag group","list":{"BUYER_FINDER_FEES_PERCENTAGE":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes buyer finder fee percentage"},"BUYER_FINDER_FEES_TYPE":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes buyer finder fee type"},"STATIC_TERMS":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes the static terms"},"SETTLEMENT_BASIS":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes the settlement basis "},"SETTLEMENT_WINDOW":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes the settlement window"}}},"BPP_TERMS":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes bpp terms tag group","list":{"BUYER_FINDER_FEES_PERCENTAGE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes buyer finder fee percentage"},"BUYER_FINDER_FEES_TYPE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes buyer finder fee type"},"STATIC_TERMS":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the static terms"},"MANDATORY_ARBITRATION":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the mandatory arbitration"},"COURT_JURISDICTION":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the court jurisdiction"},"DELAY_INTEREST":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the delay interest"},"SETTLEMENT_AMOUNT":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the settlement amount"},"SETTLEMENT_TYPE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the settlement type"},"SETTLEMENT_BANK_CODE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the settlement bank code"},"SETTLEMENT_BANK_ACCOUNT_NUMBER":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the settlement bank account number"}}}},"billing":{"name":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"john.doe","description":"Describes the billing name"},"email":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"john.doe@example.com","description":"Describes the billing email"},"phone":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":-9897867473,"description":"Describes the billing phone"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the billing details"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP/BPP","usage":"--","description":"This refers to the complete description of the legal contract created between the buyer and the seller."}}}},"update":{"context":{"location":{"country":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"IND","description":"Describes country code as per ISO 3166-1 and ISO 3166-2 format"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the country of location where the transaction is meant to be completed."}},"city":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"*","description":"Describes the city code this location is, or is located within"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the city of location where the transaction is meant to be completed."}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the location where the transaction is meant to be completed."}},"domain":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"ONDC:FIS13","description":"Describes domain code that is relevant to this transaction context"},"timestamp":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"2023-03-23T04:41:16.000Z","description":"Describes tme of request generation in RFC3339 format"},"bap_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"fis.test.bap.io","description":"Describes subscriber ID of the BAP"},"transaction_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"6743e9e2","description":"Describes a unique value which persists across all API calls"},"message_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"13ba8018f176","description":"Describes a unique value which persists during a request / callback cycle."},"version":{"required":"MANDATORY","type":"integer","owner":"BAP","usage":"2.0.0","description":"Describes the version of transaction protocol being used by the sender."},"action":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"update","description":"Describes the Beckn protocol method being called by the sender and executed at the receiver."},"bap_uri":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"https://fis.test.bap.io/","description":"Describes subscriber URL of the BAP for accepting callbacks from BPPs."},"ttl":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"PT30S","description":"Describes the duration in ISO8601 format after timestamp for which this message holds valid"},"bpp_id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"fis.test.bpp.io","description":"Describes subscriber ID of the BPP"},"bpp_uri":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://fis.test.bpp.io/","description":"Describes subscriber URL of the BPP for accepting calls from BAPs."}},"message":{"update_target":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"order.items","description":"Describes the update target"},"order":{"cancellation":{"reason":{"id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"00","description":"Describes the reason id"},"descriptor":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"SOFT_CANCEL","description":"Describes the code for cancellation"}}}},"items":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"I2","description":"Describes the item id"},"quantity":{"selected":{"count":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"1","description":"Describes the quantity count"}}}}}}},"on_update":{"context":{"location":{"country":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"IND","description":"Describes country code as per ISO 3166-1 and ISO 3166-2 format"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the country of location where the transaction is meant to be completed."}},"city":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"*","description":"Describes the city code this location is, or is located within"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the city of location where the transaction is meant to be completed."}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the location where the transaction is meant to be completed."}},"domain":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"ONDC:FIS13","description":"Describes domain code that is relevant to this transaction context"},"timestamp":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"2023-03-23T04:41:16.000Z","description":"Describes tme of request generation in RFC3339 format"},"bap_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"fis.test.bap.io","description":"Describes subscriber ID of the BAP"},"transaction_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"6743e9e2","description":"Describes a unique value which persists across all API calls"},"message_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"13ba8018f176","description":"Describes a unique value which persists during a request / callback cycle."},"version":{"required":"MANDATORY","type":"integer","owner":"BAP","usage":"2.0.0","description":"Describes the version of transaction protocol being used by the sender."},"action":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"on_update","description":"Describes the Beckn protocol method being called by the sender and executed at the receiver."},"bap_uri":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"https://fis.test.bap.io/","description":"Describes subscriber URL of the BAP for accepting callbacks from BPPs."},"ttl":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"PT30S","description":"Describes the duration in ISO8601 format after timestamp for which this message holds valid"},"bpp_id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"fis.test.bpp.io","description":"Describes subscriber ID of the BPP"},"bpp_uri":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://fis.test.bpp.io/","description":"Describes subscriber URL of the BPP for accepting calls from BAPs."}},"message":{"order":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"5r3e9e2","description":"Describes the order id"},"status":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"ACTIVE","description":"Describes the order status"},"items":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"1r3e9e2","description":"Describes unique id of item"},"quantity":{"selected":{"count":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":1,"description":"Describes the selected count"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the items selected count"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the item quantity."}},"descriptor":{"name":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"Adult-Ticket Culture & Heritage Item","description":"Describes name of item"},"code":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"ENTRY_PASS","description":"Describes code of item"},"short_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Ticket for Qutab Minar","description":"Describes short_desc of item"},"long_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"This ticket grants entry to the Qutab Minar.","description":"Describes long_desc of item"},"images":{"url":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","description":"Describes images url for item"},"size_type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"xs","description":"Describes images type for item"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes images item"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the item descriptor"}},"location_ids":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"13r3e9e2","description":"Describes lcoation id"},"category_ids":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"c3r3e9e2","description":"Describes category id"},"price":{"value":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":350,"description":"Describes price value"},"currency":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":350,"description":"Describes price currency"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes price value"}},"time":{"label":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"VALIDITY","description":"Describes time label"},"duration":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"P2D","description":"Describes time duration"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes time label"}},"fulfillment_ids":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"cs3r3e9e2","description":"Describes fulfillments id assoicated to an item."},"add_ons":{"descriptor":{"name":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Audio Assistance","description":"Describes add_ons name."},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes add_ons descriptor."}},"price":{"value":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":100,"description":"Describes add_ons price value."},"currency":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"INR","description":"Describes add_ons price currency."},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes add_ons price value."}},"id":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"2r3e9e2","description":"Describes the add_ons id"},"quantity":{"selected":{"count":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":2,"description":"Describes the add_ons selected count"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the add_ons selected count"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the add_ons quantity"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes add_ons."}},"tags":{"FARE_POLICY":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes fair policy tag group","list":{"MIN_AGE":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes min_age tag"},"MAX_AGE":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes max_age tag"},"GENDER":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes gender tag"},"NATIONALITY":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes nationality tag"}}},"INCLUSIONS":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes inclusion tag group"},"EXCLUSIONS":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes exclusion tag group"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP/BPP","usage":"--","description":"This decription refers to the comprehensive list of the products or services selected and obtained within the specified order."}},"fulfillments":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"83r3e9e2","description":"Describes unique id of fulfillment"},"type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"VISIT","description":"Describes type of fulfillment"},"state":{"descriptor":{"code":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"CONFIRMED","description":"Describes the fulfillment state"}}},"stops":{"type":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"START","description":"Describes type of stop"},"instructions":{"additional_desc":{"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/sites/additional-info","description":"Describes additional_desc url"},"content_type":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/plain","description":"Describes additional_desc mime type"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes additional_desc url"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes additional_desc instructin"}},"time":{"timestamp":{"required":"OPTIONAL","type":"string","owner":"BAP/BPP","usage":"2024-06-28T05:00:16.000Z","description":"Describes time for fulfillments"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes time for fulfillments"}},"authorization":{"type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"QR","description":"Describes the authorization type"},"token":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"iVBORw0KGgoAAAANSUhEUg","description":"Describes the authorization token"},"valid_to":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"2024-06-30T05:00:16.000Z","description":"Describes the authorization token valid timestamp"},"status":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"UNCLAIMED","description":"Describes the authorization token status"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the authorization"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes type of stop"}},"agent":{"organization":{"contact":{"phone":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":-9999999908,"description":"Describes organization contact for fulfillments"},"email":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"john.doe@example.com","description":"Describes organization email for fulfillments"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes organization contact for fulfillments"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes organization details for fulfillments"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes organization agent details"}},"vehicle":{"category":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"SITE","description":"Describes vehicle category for fulfillments"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes vehicle category for fulfillments"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes order fulfillment"}},"provider":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"8vr3e9e2","description":"Describes the provider Id"},"descriptor":{"name":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"India tourism","description":"Describes the provider name"},"images":{"url":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://www.abcinsurance.com/content/dam/abc/india/assets/images/header/logo.png","description":"Describes images for provider"},"size_type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"xs","description":"Describes images size type for provider"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes images for provider"}},"short_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Online ticket booking service","description":"Describes short description of the of provider"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the provider name"}},"locations":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"4r3e9e2","description":"Describes provider locations unique id"},"gps":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"28.524596, 77.185577","description":"Describes provider gps locations "},"descriptor":{"name":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"Qutab Minar","description":"Describes provider locations descriptor"},"short_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Seth Sarai, Mehrauli, New Delhi, Delhi.","description":"Describes provider's short description"},"additional_desc":{"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/sites/additional-info","description":"Describes url for additional desc"},"content_type":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/plain","description":"Describes content type for additional desc"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes url for additional desc"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes provider locations descriptor"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes provider locations"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"This describes the complete formulated description of the loan provider whose catalog items have been selected."}},"cancellation_terms":{"external_ref":{"mimetype":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/html","description":"Describes mimetype for cancellation_terms"},"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/beckn/tnc.html","description":"Describes url for cancellation_terms"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes external ref for cancellation_terms"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the cancellation_terms"}},"replacement_terms":{"external_ref":{"mimetype":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/html","description":"Describes mimetype for cancellation_terms"},"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass/beckn/replacement.html","description":"Describes url for cancellation_terms"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes external ref for replacement terms"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes replacement terms"}},"quote":{"breakup":{"title":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"BASE_FARE","description":"Describes breakup title"},"item":{"id":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"1r3e9e2","description":"Describes item id for breakup"},"price":{"value":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":100,"description":"Describes item price value."},"currency":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"INR","description":"Describes item price currency."},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes item price for breakup."}},"quantity":{"selected":{"count":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":2,"description":"Describes the item selected count"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the item selected count"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the item quantity."}},"add_ons":{"id":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"5r3e9e2","description":"Describes add_ons id for breakup"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes item for breakup"}},"price":{"currency":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"INR","description":"Describes item price currency."},"value":{"required":"MANDATORY","type":"string","owner":"BPP","usage":400,"description":"Describes item price currency."},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes breakup price."}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes breakup for quote"}},"price":{"value":{"required":"MANDATORY","type":"string","owner":"BPP","usage":400,"description":"Describes item price currency."},"currency":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"INR","description":"Describes item price currency."},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes quote price."}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes order quote"}},"payments":{"collected_by":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"BAP","description":"Describes the payment collector"},"status":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"NOT-PAID","description":"Describes the payment status"},"type":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"PRE-ORDER","description":"Describes the payment type"},"params":{"amount":{"required":"MANDATORY","type":"string","owner":"BAP","usage":700,"description":"Describes the payment amount"},"currency":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"INR","description":"Describes the payment currency"},"transaction_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"61b4be7e-d85c-456a-99e5-ce3d83b","description":"Describes the payment transaction id"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes the payment params"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes the payments details"}},"tags":{"BAP_TERMS":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes bap terms tag group","list":{"BUYER_FINDER_FEES_PERCENTAGE":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes buyer finder fee percentage"},"BUYER_FINDER_FEES_TYPE":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes buyer finder fee type"},"STATIC_TERMS":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes the static terms"},"SETTLEMENT_BASIS":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes the settlement basis "},"SETTLEMENT_WINDOW":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes the settlement window"}}},"BPP_TERMS":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes bpp terms tag group","list":{"BUYER_FINDER_FEES_PERCENTAGE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes buyer finder fee percentage"},"BUYER_FINDER_FEES_TYPE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes buyer finder fee type"},"STATIC_TERMS":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the static terms"},"MANDATORY_ARBITRATION":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the mandatory arbitration"},"COURT_JURISDICTION":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the court jurisdiction"},"DELAY_INTEREST":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the delay interest"},"SETTLEMENT_AMOUNT":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the settlement amount"},"SETTLEMENT_TYPE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the settlement type"},"SETTLEMENT_BANK_CODE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the settlement bank code"},"SETTLEMENT_BANK_ACCOUNT_NUMBER":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the settlement bank account number"}}}},"billing":{"name":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"john.doe","description":"Describes the billing name"},"email":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"john.doe@example.com","description":"Describes the billing email"},"phone":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":-9897867473,"description":"Describes the billing phone"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the billing details"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP/BPP","usage":"--","description":"This refers to the complete description of the legal contract created between the buyer and the seller."}}}},"cancel":{"context":{"location":{"country":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"IND","description":"Describes country code as per ISO 3166-1 and ISO 3166-2 format"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the country of location where the transaction is meant to be completed."}},"city":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"*","description":"Describes the city code this location is, or is located within"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the city of location where the transaction is meant to be completed."}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the location where the transaction is meant to be completed."}},"domain":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"ONDC:FIS13","description":"Describes domain code that is relevant to this transaction context"},"timestamp":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"2023-03-23T04:41:16.000Z","description":"Describes tme of request generation in RFC3339 format"},"bap_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"fis.test.bap.io","description":"Describes subscriber ID of the BAP"},"transaction_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"6743e9e2","description":"Describes a unique value which persists across all API calls"},"message_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"13ba8018f176","description":"Describes a unique value which persists during a request / callback cycle."},"version":{"required":"MANDATORY","type":"integer","owner":"BAP","usage":"2.0.0","description":"Describes the version of transaction protocol being used by the sender."},"action":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"cancel","description":"Describes the Beckn protocol method being called by the sender and executed at the receiver."},"bap_uri":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"https://fis.test.bap.io/","description":"Describes subscriber URL of the BAP for accepting callbacks from BPPs."},"ttl":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"PT30S","description":"Describes the duration in ISO8601 format after timestamp for which this message holds valid"},"bpp_id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"fis.test.bpp.io","description":"Describes subscriber ID of the BPP"},"bpp_uri":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://fis.test.bpp.io/","description":"Describes subscriber URL of the BPP for accepting calls from BAPs."}},"message":{"order_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"O1","description":"Descibes the order id."},"cancellation_reason_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"O1","description":"Descibes the cancellation reason id."},"descriptor":{"name":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"O1","description":"Descibes the descriptor name."},"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"O1","description":"Descibes the descriptor name."}}}},"on_cancel":{"context":{"location":{"country":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"IND","description":"Describes country code as per ISO 3166-1 and ISO 3166-2 format"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the country of location where the transaction is meant to be completed."}},"city":{"code":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"*","description":"Describes the city code this location is, or is located within"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the city of location where the transaction is meant to be completed."}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"This attribute defines the location where the transaction is meant to be completed."}},"domain":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"ONDC:FIS13","description":"Describes domain code that is relevant to this transaction context"},"timestamp":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"2023-03-23T04:41:16.000Z","description":"Describes tme of request generation in RFC3339 format"},"bap_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"fis.test.bap.io","description":"Describes subscriber ID of the BAP"},"transaction_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"6743e9e2","description":"Describes a unique value which persists across all API calls"},"message_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"13ba8018f176","description":"Describes a unique value which persists during a request / callback cycle."},"version":{"required":"MANDATORY","type":"integer","owner":"BAP","usage":"2.0.0","description":"Describes the version of transaction protocol being used by the sender."},"action":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"on_cancel","description":"Describes the Beckn protocol method being called by the sender and executed at the receiver."},"bap_uri":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"https://fis.test.bap.io/","description":"Describes subscriber URL of the BAP for accepting callbacks from BPPs."},"ttl":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"PT30S","description":"Describes the duration in ISO8601 format after timestamp for which this message holds valid"},"bpp_id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"fis.test.bpp.io","description":"Describes subscriber ID of the BPP"},"bpp_uri":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://fis.test.bpp.io/","description":"Describes subscriber URL of the BPP for accepting calls from BAPs."}},"message":{"order":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"5r3e9e2","description":"Describes the order id"},"status":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"ACTIVE","description":"Describes the order status"},"items":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"1r3e9e2","description":"Describes unique id of item"},"quantity":{"selected":{"count":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":1,"description":"Describes the selected count"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the items selected count"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the item quantity."}},"descriptor":{"name":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"Adult-Ticket Culture & Heritage Item","description":"Describes name of item"},"code":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"ENTRY_PASS","description":"Describes code of item"},"short_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Ticket for Qutab Minar","description":"Describes short_desc of item"},"long_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"This ticket grants entry to the Qutab Minar.","description":"Describes long_desc of item"},"images":{"url":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/sites/default/files/event/logo/event_logo_2.png","description":"Describes images url for item"},"size_type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"xs","description":"Describes images type for item"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes images item"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the item descriptor"}},"location_ids":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"13r3e9e2","description":"Describes lcoation id"},"category_ids":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"c3r3e9e2","description":"Describes category id"},"price":{"value":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":350,"description":"Describes price value"},"currency":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":350,"description":"Describes price currency"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes price value"}},"time":{"label":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"VALIDITY","description":"Describes time label"},"duration":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"P2D","description":"Describes time duration"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes time label"}},"fulfillment_ids":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"cs3r3e9e2","description":"Describes fulfillments id assoicated to an item."},"add_ons":{"descriptor":{"name":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Audio Assistance","description":"Describes add_ons name."},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes add_ons descriptor."}},"price":{"value":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":100,"description":"Describes add_ons price value."},"currency":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"INR","description":"Describes add_ons price currency."},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes add_ons price value."}},"id":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"2r3e9e2","description":"Describes the add_ons id"},"quantity":{"selected":{"count":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":2,"description":"Describes the add_ons selected count"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the add_ons selected count"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the add_ons quantity"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes add_ons."}},"tags":{"FARE_POLICY":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes fair policy tag group","list":{"MIN_AGE":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes min_age tag"},"MAX_AGE":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes max_age tag"},"GENDER":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes gender tag"},"NATIONALITY":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"--","description":"Describes nationality tag"}}},"INCLUSIONS":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes inclusion tag group"},"EXCLUSIONS":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes exclusion tag group"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP/BPP","usage":"--","description":"This decription refers to the comprehensive list of the products or services selected and obtained within the specified order."}},"fulfillments":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"83r3e9e2","description":"Describes unique id of fulfillment"},"type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"VISIT","description":"Describes type of fulfillment"},"state":{"descriptor":{"code":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"CONFIRMED","description":"Describes the fulfillment state"}}},"stops":{"type":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"START","description":"Describes type of stop"},"instructions":{"additional_desc":{"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/sites/additional-info","description":"Describes additional_desc url"},"content_type":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/plain","description":"Describes additional_desc mime type"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes additional_desc url"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes additional_desc instructin"}},"time":{"timestamp":{"required":"OPTIONAL","type":"string","owner":"BAP/BPP","usage":"2024-06-28T05:00:16.000Z","description":"Describes time for fulfillments"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP/BPP","usage":"--","description":"Describes time for fulfillments"}},"authorization":{"type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"QR","description":"Describes the authorization type"},"token":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"iVBORw0KGgoAAAANSUhEUg","description":"Describes the authorization token"},"valid_to":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"2024-06-30T05:00:16.000Z","description":"Describes the authorization token valid timestamp"},"status":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"UNCLAIMED","description":"Describes the authorization token status"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the authorization"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes type of stop"}},"agent":{"organization":{"contact":{"phone":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":-9999999908,"description":"Describes organization contact for fulfillments"},"email":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"john.doe@example.com","description":"Describes organization email for fulfillments"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes organization contact for fulfillments"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes organization details for fulfillments"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes organization agent details"}},"vehicle":{"category":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"SITE","description":"Describes vehicle category for fulfillments"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes vehicle category for fulfillments"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes order fulfillment"}},"provider":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"8vr3e9e2","description":"Describes the provider Id"},"descriptor":{"name":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"India tourism","description":"Describes the provider name"},"images":{"url":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"https://www.abcinsurance.com/content/dam/abc/india/assets/images/header/logo.png","description":"Describes images for provider"},"size_type":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"xs","description":"Describes images size type for provider"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes images for provider"}},"short_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Online ticket booking service","description":"Describes short description of the of provider"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the provider name"}},"locations":{"id":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"4r3e9e2","description":"Describes provider locations unique id"},"gps":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"28.524596, 77.185577","description":"Describes provider gps locations "},"descriptor":{"name":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"Qutab Minar","description":"Describes provider locations descriptor"},"short_desc":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"Seth Sarai, Mehrauli, New Delhi, Delhi.","description":"Describes provider's short description"},"additional_desc":{"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/sites/additional-info","description":"Describes url for additional desc"},"content_type":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/plain","description":"Describes content type for additional desc"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes url for additional desc"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes provider locations descriptor"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes provider locations"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"This describes the complete formulated description of the loan provider whose catalog items have been selected."}},"cancellation_terms":{"external_ref":{"mimetype":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/html","description":"Describes mimetype for cancellation_terms"},"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass.com/beckn/tnc.html","description":"Describes url for cancellation_terms"},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes external ref for cancellation_terms"}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes the cancellation_terms"}},"replacement_terms":{"external_ref":{"mimetype":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"text/html","description":"Describes mimetype for cancellation_terms"},"url":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"https://api.unreserved-entry-pass/beckn/replacement.html","description":"Describes url for cancellation_terms"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes external ref for replacement terms"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes replacement terms"}},"quote":{"breakup":{"title":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"BASE_FARE","description":"Describes breakup title"},"item":{"id":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"1r3e9e2","description":"Describes item id for breakup"},"price":{"value":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":100,"description":"Describes item price value."},"currency":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"INR","description":"Describes item price currency."},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes item price for breakup."}},"quantity":{"selected":{"count":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":2,"description":"Describes the item selected count"},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the item selected count"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes the item quantity."}},"add_ons":{"id":{"required":"OPTIONAL","type":"string","owner":"BPP","usage":"5r3e9e2","description":"Describes add_ons id for breakup"}},"_description":{"required":"OPTIONAL","type":"object","owner":"BPP","usage":"--","description":"Describes item for breakup"}},"price":{"currency":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"INR","description":"Describes item price currency."},"value":{"required":"MANDATORY","type":"string","owner":"BPP","usage":400,"description":"Describes item price currency."},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes breakup price."}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes breakup for quote"}},"price":{"value":{"required":"MANDATORY","type":"string","owner":"BPP","usage":400,"description":"Describes item price currency."},"currency":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"INR","description":"Describes item price currency."},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes quote price."}},"_description":{"required":"MANDATORY","type":"object","owner":"BPP","usage":"--","description":"Describes order quote"}},"payments":{"collected_by":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"BAP","description":"Describes the payment collector"},"status":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"NOT-PAID","description":"Describes the payment status"},"type":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"PRE-ORDER","description":"Describes the payment type"},"params":{"amount":{"required":"MANDATORY","type":"string","owner":"BAP","usage":700,"description":"Describes the payment amount"},"currency":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"INR","description":"Describes the payment currency"},"transaction_id":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"61b4be7e-d85c-456a-99e5-ce3d83b","description":"Describes the payment transaction id"},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes the payment params"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes the payments details"}},"tags":{"BAP_TERMS":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes bap terms tag group","list":{"BUYER_FINDER_FEES_PERCENTAGE":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes buyer finder fee percentage"},"BUYER_FINDER_FEES_TYPE":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes buyer finder fee type"},"STATIC_TERMS":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes the static terms"},"SETTLEMENT_BASIS":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes the settlement basis "},"SETTLEMENT_WINDOW":{"required":"MANDATORY","type":"string","owner":"BAP","usage":"--","description":"Describes the settlement window"}}},"BPP_TERMS":{"required":"MANDATORY","type":"object","owner":"BAP","usage":"--","description":"Describes bpp terms tag group","list":{"BUYER_FINDER_FEES_PERCENTAGE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes buyer finder fee percentage"},"BUYER_FINDER_FEES_TYPE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes buyer finder fee type"},"STATIC_TERMS":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the static terms"},"MANDATORY_ARBITRATION":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the mandatory arbitration"},"COURT_JURISDICTION":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the court jurisdiction"},"DELAY_INTEREST":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the delay interest"},"SETTLEMENT_AMOUNT":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the settlement amount"},"SETTLEMENT_TYPE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the settlement type"},"SETTLEMENT_BANK_CODE":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the settlement bank code"},"SETTLEMENT_BANK_ACCOUNT_NUMBER":{"required":"MANDATORY","type":"string","owner":"BPP","usage":"--","description":"Describes the settlement bank account number"}}}},"billing":{"name":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"john.doe","description":"Describes the billing name"},"email":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":"john.doe@example.com","description":"Describes the billing email"},"phone":{"required":"OPTIONAL","type":"string","owner":"BAP","usage":-9897867473,"description":"Describes the billing phone"},"_description":{"required":"OPTIONAL","type":"object","owner":"BAP","usage":"--","description":"Describes the billing details"}},"_description":{"required":"MANDATORY","type":"object","owner":"BAP/BPP","usage":"--","description":"This refers to the complete description of the legal contract created between the buyer and the seller."}}}}}}},"x-tlc":{"code":[{"Term":"Buyer App Fee","Api":"search/on_search/init/on_init","Attribute":"BUYER_FINDER_FEE_TYPE","Owner":"Buyer App","Value":"“amount”, “percent”","Description":"If set to “amount” it means Buyer App’s fee is a flat amount in INR.\nIf set to “percent” it means the Buyer App’s fee is set as a percentage of the total fare value."},{"Api":"search/on_search/init/on_init","Attribute":"BUYER_FINDER_FEE_AMOUNT\nBUYER_FINDER_FEE_PERCENTAGE","Owner":"Buyer App","Value":"Positive Decimal Number","Description":"Quantum of the Buyer App’s Fee. To be interpreted in connection with the “type” field mentioned above.\nFor example, let’s assume the value is set at “5”. If the “type” is set to “Amount”, that means the Buyer App Fee is INR 5. If the “type” is set to “percent”, it means the Buyer App Fee is 5% of the Total Order Value."},{"Term":"Payment Collector","Api":"search/on_search/init/on_init","Attribute":"payment.collected_by","Owner":"Either","Value":"“BAP”, “BPP”","Description":"If set to “BAP”, it means that the Buyer App will collect payment from the Buyer.\nIf set to “BPP”, it means that the Seller App will collect payment from the Buyer."},{"Term":"Payment Type","Api":"init/on_init","Attribute":"payment.type","Owner":"Either","Value":"“ON-ORDER”","Description":"How payment is going to be collected from the Buyer. If this parameter is set to “ON-ORDER”, that means it is a pre-paid order, i.e. the payment is collected at the time of order confirmation."},{"Term":"Settlement Basis","Api":"search/on_search/init/on_init","Attribute":"SETTLEMENT_BASIS","Owner":"Seller App","Value":"\"INVOICE_RECEIPT\", “delivery”","Description":"The event that will trigger settlement from the Payment Collector to counterparty Network Participant(s).\nExample:\nUpon confirmation of order delivery, then set this to “delivery”\n\nUpon receipt of an invoice from the counterparty, then this to “invoice_receipt”"},{"Term":"Settlement Window","Api":"search/on_search/init/on_init","Attribute":"SETTLEMENT_WINDOW","Owner":"Either","Value":"Time period\n(ISO8601 format)","Description":"The time period from completion of the Settlement Basis within which the Payment Collector will settle with counterparty Network Participant(s). As an example, if the Settlement Basis is set as “delivery” and the Settlement Window is set to 7 days, and the Seller App collects the payment, it means the Seller App will remit funds to the Buyer App on or before the completion of the 7th day after delivery,\nISO8601 duration notation is used to specify the value of the parameter. As an illustration, a Settlement Window of 5 days after delivery can be specified as “P5D” (i.e. period 5 days) or “PT120H” (i.e. period 120 hours)."},{"Term":"Settlement Amount","Api":"init/on_init","Attribute":"SETTLEMENT_AMOUNT","Owner":"Either","Value":"Positive Decimal Number","Description":"The amount that the Payment Collector will remit to the counterparty Network Participant for the instant transaction.\nFor clarity, if the Buyer App is the Payment Collector, the Buyer App will deduct their fee and remit the balance to the Seller App. If the Seller App is the Payment Collector, they will remit the Buyer App’s fees, deduct its own charges/commission."},{"Term":"Settlement Type","Api":"search/on_search/init/on_init","Attribute":"SETTLEMENT_TYPE","Owner":"Either","Value":"“neft”, “rtgs”, “upi”","Description":"The Payment Collector will use the selected method to remit the due payment to the counterparty Network Participant. To illustrate, if the Buyer App collects the payment and the Settlement Type is set to “rtgs”, when the settlement is due, the Buyer App will transfer the Seller App’s share of the Buyer Price to the Seller App’s account via RTGS."},{"Term":"Item Cancellation Window","Attribute":"Handled in cancellation terms","Owner":"Seller App","Value":"Time period\n(ISO8601 format)","Description":"The time period from order confirmation within which the Buyer may cancel the item. The time period follows the ISO8601 duration notation. As an illustration, a cancel period of 5 days after order confirmation can be specified as “P5D” (i.e. period 5 days) or “PT120H” (i.e. period 120 hours)."},{"Term":"Item Cancellability","Attribute":"Handled in cancellation terms","Owner":"Seller App","Value":"true/ false","Description":"Whether the order for that item can be cancelled after being confirmed. If set to “TRUE” that means the Seller allows the Buyer to cancel the order for the item in question, after confirmation."},{"Term":"Mandatory Arbitration","Api":"search/on_search/init/on_init","Attribute":"MANDATORY_ARBITRATION","Owner":"Seller App","Value":"true/ false","Description":"If this attribute is set to true, that would mean both parties agree that in case of a dispute, both parties must resolve the dispute through arbitration."},{"Term":"Court Jurisdiction","Api":"search/on_search/init/on_init","Attribute":"COURT_JURISDICTION","Owner":"Seller App","Value":"Pick a city from a given list of cities which have a High Court bench","Description":"The name of the city whose courts will have exclusive jurisdiction over disputes related to this contract. The list of options will only contain Indian cities which have a High Court bench."},{"Term":"Delay Interest","Api":"search/on_search/init/on_init","Attribute":"DELAY_INTEREST","Owner":"Seller App","Value":"Positive Decima`1l Number","Description":"This is the annual rate of interest that the Payment Collector will be charged if they delay a payment to the counterparty Network Participant, calculated pro rata for each calendar day of delay. As an example, if the value is set as “7.3”, and the amount of payment due is INR 1000, that will mean the Payment Collector will pay the counterparty Network Participant an interest of 7.3% per annum (i.e. INR 100), calculated pro rata for each day of delay. So if the Payment Collector delay was 50 days, the total interest payable would be INR 10 [calculated as 1000x(7.3/100)x(50/365)]"},{"Term":"Static Terms","Api":"search/on_search/init/on_init","Attribute":"STATIC_TERMS","Owner":"Seller App & Buyer App","Value":"URL","Description":"This will be the URL of a web-page where the standard Terms and Conditions of the Network Participant - which are not covered in the API Specification (e.g.: indemnity) - will be hosted. These terms will apply to the transaction, in addition to the terms decided through the ONDC Protocol. If there is a conflict between the terms decided through the Protocol, and the Static Terms, the terms decided through the ONDC Protocol will prevail. Also, if there is a conflict between the Static Terms and the ONDC Network Policy or the Static Terms and the Network Participant Agreement, the terms of the ONDC Network Policy or the Network Participant Agreement (as the case may be) will prevail."}]},"x-featureui":{"filenames":["log-verification.md","xinput-form-response.md"]},"x-sandboxui":{"dropdown":[{"environment-name":"staging","link":"https://mobility-staging.ondc.org"}]},"x-changeLog":{"filenames":["TRV14_2.0.0_100125.md"]}} \ No newline at end of file