├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTION.md ├── GOVERNANCE.md ├── LICENSE.md ├── MAINTAINERS.md ├── README.md ├── WORKING-GROUPS.md ├── api ├── meta │ ├── README.md │ ├── build │ │ └── meta.yaml │ └── components │ │ ├── index.yaml │ │ ├── io │ │ ├── CancellationReasons.yaml │ │ ├── GetCancellationReasons.yaml │ │ ├── GetRatingCategories.yaml │ │ ├── GetReturnReasons.yaml │ │ ├── RatingCategories.yaml │ │ ├── Response.yaml │ │ └── ReturnReasons.yaml │ │ └── schema │ │ └── index.yaml ├── registry │ ├── README.md │ ├── build │ │ ├── README.md │ │ └── registry.yaml │ └── components │ │ ├── index.yaml │ │ ├── io │ │ ├── Lookup.yaml │ │ ├── LookupResponse.yaml │ │ ├── OnSubscribe.yaml │ │ ├── OnSubscribeResponse.yaml │ │ ├── README.md │ │ ├── Register.yaml │ │ ├── Subscribe.yaml │ │ └── SubscriptionResponse.yaml │ │ └── schema │ │ └── index.yaml └── transaction │ ├── README.md │ ├── build │ └── transaction.yaml │ └── components │ ├── index.yaml │ ├── io │ ├── Cancel.yaml │ ├── Confirm.yaml │ ├── Init.yaml │ ├── OnCancel.yaml │ ├── OnConfirm.yaml │ ├── OnInit.yaml │ ├── OnRating.yaml │ ├── OnSearch.yaml │ ├── OnSelect.yaml │ ├── OnStatus.yaml │ ├── OnSupport.yaml │ ├── OnTrack.yaml │ ├── OnUpdate.yaml │ ├── README.md │ ├── Rating.yaml │ ├── Response.yaml │ ├── Search.yaml │ ├── Select.yaml │ ├── Status.yaml │ ├── Support.yaml │ ├── Track.yaml │ └── Update.yaml │ └── schema │ └── index.yaml ├── docs ├── BECKN-001-Layering-Network-Policy-Draft-01.md ├── BECKN-002-Payments-On-Beckn-Enabled-Networks.md ├── BECKN-003-Beckn-Protocol-Communication-Draft-01.md ├── BECKN-004-Policy-Administration-On-Beckn-Enabled-Networks.md ├── BECKN-005-Error-Codes-Draft-01.md ├── BECKN-006-Signing-Beckn-APIs-In-HTTP-Draft-01.md ├── BECKN-007-The-XInput-Schema.md ├── BECKN-008-Rating-and-Reputation-on-Beckn-Protocol.md ├── BECKN-009-Tags-the-Edge-of-Beckn.md ├── README.md ├── RFC-Template.md └── images │ ├── Async-Communication.png │ ├── Payment-API-Sequence.png │ ├── Payment-Contract-Infrastructure.png │ ├── Payment-Contract.png │ ├── Payment-Settlement-Flow-1.png │ ├── Payment-Settlement-Flow-2.png │ ├── Payment-Settlement-Flow-3.png │ ├── Payment-Settlement-Flow-4.png │ ├── Policy API.png │ ├── Policy Agreement Protocol.png │ ├── Policy Infrastructure Architecture.png │ ├── Policy Workflow.png │ ├── Policy-Agreement-Implementation-Architecture.png │ ├── Policy-Agreement-and-Adoption-Protocol.png │ ├── Policy-Workflow-New.png │ ├── Search-Multicast-with-Reg.png │ ├── Search-Multicast.png │ ├── Status.png │ ├── rating handshake.png │ └── sample.png ├── protocol-specifications.iml └── schema ├── Ack.yaml ├── AddOn.yaml ├── Address.yaml ├── Agent.yaml ├── Authorization.yaml ├── Billing.yaml ├── Cancellation.yaml ├── CancellationTerm.yaml ├── Catalog.yaml ├── Category.yaml ├── Circle.yaml ├── City.yaml ├── Contact.yaml ├── Context.yaml ├── Country.yaml ├── Credential.yaml ├── Customer.yaml ├── DecimalValue.yaml ├── Descriptor.yaml ├── Domain.yaml ├── Duration.yaml ├── Error.yaml ├── Fee.yaml ├── Form.yaml ├── FormResponse.yaml ├── Fulfillment.yaml ├── FulfillmentState.yaml ├── Gps.yaml ├── Image.yaml ├── Intent.yaml ├── Item.yaml ├── ItemQuantity.yaml ├── Language.yaml ├── Location.yaml ├── MediaFile.yaml ├── Offer.yaml ├── Option.yaml ├── Order.yaml ├── Organization.yaml ├── Payment.yaml ├── Person.yaml ├── Price.yaml ├── Provider.yaml ├── Quotation.yaml ├── README.md ├── Rating.yaml ├── RefundTerm.yaml ├── Region.yaml ├── ReplacementTerm.yaml ├── ReturnTerm.yaml ├── Scalar.yaml ├── Schedule.yaml ├── Skill.yaml ├── State.yaml ├── Stop.yaml ├── Subscriber.yaml ├── Subscription.yaml ├── Support.yaml ├── Tag.yaml ├── TagGroup.yaml ├── Time.yaml ├── TimeToLive.yaml ├── Tracking.yaml ├── Vehicle.yaml └── XInput.yaml /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/CONTRIBUTION.md -------------------------------------------------------------------------------- /GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/GOVERNANCE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/README.md -------------------------------------------------------------------------------- /WORKING-GROUPS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/WORKING-GROUPS.md -------------------------------------------------------------------------------- /api/meta/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/meta/build/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/api/meta/build/meta.yaml -------------------------------------------------------------------------------- /api/meta/components/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/api/meta/components/index.yaml -------------------------------------------------------------------------------- /api/meta/components/io/CancellationReasons.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/api/meta/components/io/CancellationReasons.yaml -------------------------------------------------------------------------------- /api/meta/components/io/GetCancellationReasons.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/api/meta/components/io/GetCancellationReasons.yaml -------------------------------------------------------------------------------- /api/meta/components/io/GetRatingCategories.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/api/meta/components/io/GetRatingCategories.yaml -------------------------------------------------------------------------------- /api/meta/components/io/GetReturnReasons.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/api/meta/components/io/GetReturnReasons.yaml -------------------------------------------------------------------------------- /api/meta/components/io/RatingCategories.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/api/meta/components/io/RatingCategories.yaml -------------------------------------------------------------------------------- /api/meta/components/io/Response.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/api/meta/components/io/Response.yaml -------------------------------------------------------------------------------- /api/meta/components/io/ReturnReasons.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/api/meta/components/io/ReturnReasons.yaml -------------------------------------------------------------------------------- /api/meta/components/schema/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/api/meta/components/schema/index.yaml -------------------------------------------------------------------------------- /api/registry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/api/registry/README.md -------------------------------------------------------------------------------- /api/registry/build/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/registry/build/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/api/registry/build/registry.yaml -------------------------------------------------------------------------------- /api/registry/components/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/api/registry/components/index.yaml -------------------------------------------------------------------------------- /api/registry/components/io/Lookup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/api/registry/components/io/Lookup.yaml -------------------------------------------------------------------------------- /api/registry/components/io/LookupResponse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/api/registry/components/io/LookupResponse.yaml -------------------------------------------------------------------------------- /api/registry/components/io/OnSubscribe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/api/registry/components/io/OnSubscribe.yaml -------------------------------------------------------------------------------- /api/registry/components/io/OnSubscribeResponse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/api/registry/components/io/OnSubscribeResponse.yaml -------------------------------------------------------------------------------- /api/registry/components/io/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/registry/components/io/Register.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/api/registry/components/io/Register.yaml -------------------------------------------------------------------------------- /api/registry/components/io/Subscribe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/api/registry/components/io/Subscribe.yaml -------------------------------------------------------------------------------- /api/registry/components/io/SubscriptionResponse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/api/registry/components/io/SubscriptionResponse.yaml -------------------------------------------------------------------------------- /api/registry/components/schema/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/api/registry/components/schema/index.yaml -------------------------------------------------------------------------------- /api/transaction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/api/transaction/README.md -------------------------------------------------------------------------------- /api/transaction/build/transaction.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/api/transaction/build/transaction.yaml -------------------------------------------------------------------------------- /api/transaction/components/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/api/transaction/components/index.yaml -------------------------------------------------------------------------------- /api/transaction/components/io/Cancel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/api/transaction/components/io/Cancel.yaml -------------------------------------------------------------------------------- /api/transaction/components/io/Confirm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/api/transaction/components/io/Confirm.yaml -------------------------------------------------------------------------------- /api/transaction/components/io/Init.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/api/transaction/components/io/Init.yaml -------------------------------------------------------------------------------- /api/transaction/components/io/OnCancel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/api/transaction/components/io/OnCancel.yaml -------------------------------------------------------------------------------- /api/transaction/components/io/OnConfirm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/api/transaction/components/io/OnConfirm.yaml -------------------------------------------------------------------------------- /api/transaction/components/io/OnInit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/api/transaction/components/io/OnInit.yaml -------------------------------------------------------------------------------- /api/transaction/components/io/OnRating.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/api/transaction/components/io/OnRating.yaml -------------------------------------------------------------------------------- /api/transaction/components/io/OnSearch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/api/transaction/components/io/OnSearch.yaml -------------------------------------------------------------------------------- /api/transaction/components/io/OnSelect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/api/transaction/components/io/OnSelect.yaml -------------------------------------------------------------------------------- /api/transaction/components/io/OnStatus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/api/transaction/components/io/OnStatus.yaml -------------------------------------------------------------------------------- /api/transaction/components/io/OnSupport.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/api/transaction/components/io/OnSupport.yaml -------------------------------------------------------------------------------- /api/transaction/components/io/OnTrack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/api/transaction/components/io/OnTrack.yaml -------------------------------------------------------------------------------- /api/transaction/components/io/OnUpdate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/api/transaction/components/io/OnUpdate.yaml -------------------------------------------------------------------------------- /api/transaction/components/io/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/api/transaction/components/io/README.md -------------------------------------------------------------------------------- /api/transaction/components/io/Rating.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/api/transaction/components/io/Rating.yaml -------------------------------------------------------------------------------- /api/transaction/components/io/Response.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/api/transaction/components/io/Response.yaml -------------------------------------------------------------------------------- /api/transaction/components/io/Search.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/api/transaction/components/io/Search.yaml -------------------------------------------------------------------------------- /api/transaction/components/io/Select.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/api/transaction/components/io/Select.yaml -------------------------------------------------------------------------------- /api/transaction/components/io/Status.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/api/transaction/components/io/Status.yaml -------------------------------------------------------------------------------- /api/transaction/components/io/Support.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/api/transaction/components/io/Support.yaml -------------------------------------------------------------------------------- /api/transaction/components/io/Track.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/api/transaction/components/io/Track.yaml -------------------------------------------------------------------------------- /api/transaction/components/io/Update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/api/transaction/components/io/Update.yaml -------------------------------------------------------------------------------- /api/transaction/components/schema/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/api/transaction/components/schema/index.yaml -------------------------------------------------------------------------------- /docs/BECKN-001-Layering-Network-Policy-Draft-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/docs/BECKN-001-Layering-Network-Policy-Draft-01.md -------------------------------------------------------------------------------- /docs/BECKN-002-Payments-On-Beckn-Enabled-Networks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/docs/BECKN-002-Payments-On-Beckn-Enabled-Networks.md -------------------------------------------------------------------------------- /docs/BECKN-003-Beckn-Protocol-Communication-Draft-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/docs/BECKN-003-Beckn-Protocol-Communication-Draft-01.md -------------------------------------------------------------------------------- /docs/BECKN-004-Policy-Administration-On-Beckn-Enabled-Networks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/docs/BECKN-004-Policy-Administration-On-Beckn-Enabled-Networks.md -------------------------------------------------------------------------------- /docs/BECKN-005-Error-Codes-Draft-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/docs/BECKN-005-Error-Codes-Draft-01.md -------------------------------------------------------------------------------- /docs/BECKN-006-Signing-Beckn-APIs-In-HTTP-Draft-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/docs/BECKN-006-Signing-Beckn-APIs-In-HTTP-Draft-01.md -------------------------------------------------------------------------------- /docs/BECKN-007-The-XInput-Schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/docs/BECKN-007-The-XInput-Schema.md -------------------------------------------------------------------------------- /docs/BECKN-008-Rating-and-Reputation-on-Beckn-Protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/docs/BECKN-008-Rating-and-Reputation-on-Beckn-Protocol.md -------------------------------------------------------------------------------- /docs/BECKN-009-Tags-the-Edge-of-Beckn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/docs/BECKN-009-Tags-the-Edge-of-Beckn.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/RFC-Template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/docs/RFC-Template.md -------------------------------------------------------------------------------- /docs/images/Async-Communication.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/docs/images/Async-Communication.png -------------------------------------------------------------------------------- /docs/images/Payment-API-Sequence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/docs/images/Payment-API-Sequence.png -------------------------------------------------------------------------------- /docs/images/Payment-Contract-Infrastructure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/docs/images/Payment-Contract-Infrastructure.png -------------------------------------------------------------------------------- /docs/images/Payment-Contract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/docs/images/Payment-Contract.png -------------------------------------------------------------------------------- /docs/images/Payment-Settlement-Flow-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/docs/images/Payment-Settlement-Flow-1.png -------------------------------------------------------------------------------- /docs/images/Payment-Settlement-Flow-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/docs/images/Payment-Settlement-Flow-2.png -------------------------------------------------------------------------------- /docs/images/Payment-Settlement-Flow-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/docs/images/Payment-Settlement-Flow-3.png -------------------------------------------------------------------------------- /docs/images/Payment-Settlement-Flow-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/docs/images/Payment-Settlement-Flow-4.png -------------------------------------------------------------------------------- /docs/images/Policy API.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/docs/images/Policy API.png -------------------------------------------------------------------------------- /docs/images/Policy Agreement Protocol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/docs/images/Policy Agreement Protocol.png -------------------------------------------------------------------------------- /docs/images/Policy Infrastructure Architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/docs/images/Policy Infrastructure Architecture.png -------------------------------------------------------------------------------- /docs/images/Policy Workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/docs/images/Policy Workflow.png -------------------------------------------------------------------------------- /docs/images/Policy-Agreement-Implementation-Architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/docs/images/Policy-Agreement-Implementation-Architecture.png -------------------------------------------------------------------------------- /docs/images/Policy-Agreement-and-Adoption-Protocol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/docs/images/Policy-Agreement-and-Adoption-Protocol.png -------------------------------------------------------------------------------- /docs/images/Policy-Workflow-New.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/docs/images/Policy-Workflow-New.png -------------------------------------------------------------------------------- /docs/images/Search-Multicast-with-Reg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/docs/images/Search-Multicast-with-Reg.png -------------------------------------------------------------------------------- /docs/images/Search-Multicast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/docs/images/Search-Multicast.png -------------------------------------------------------------------------------- /docs/images/Status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/docs/images/Status.png -------------------------------------------------------------------------------- /docs/images/rating handshake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/docs/images/rating handshake.png -------------------------------------------------------------------------------- /docs/images/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/docs/images/sample.png -------------------------------------------------------------------------------- /protocol-specifications.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/protocol-specifications.iml -------------------------------------------------------------------------------- /schema/Ack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Ack.yaml -------------------------------------------------------------------------------- /schema/AddOn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/AddOn.yaml -------------------------------------------------------------------------------- /schema/Address.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Address.yaml -------------------------------------------------------------------------------- /schema/Agent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Agent.yaml -------------------------------------------------------------------------------- /schema/Authorization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Authorization.yaml -------------------------------------------------------------------------------- /schema/Billing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Billing.yaml -------------------------------------------------------------------------------- /schema/Cancellation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Cancellation.yaml -------------------------------------------------------------------------------- /schema/CancellationTerm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/CancellationTerm.yaml -------------------------------------------------------------------------------- /schema/Catalog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Catalog.yaml -------------------------------------------------------------------------------- /schema/Category.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Category.yaml -------------------------------------------------------------------------------- /schema/Circle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Circle.yaml -------------------------------------------------------------------------------- /schema/City.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/City.yaml -------------------------------------------------------------------------------- /schema/Contact.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Contact.yaml -------------------------------------------------------------------------------- /schema/Context.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Context.yaml -------------------------------------------------------------------------------- /schema/Country.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Country.yaml -------------------------------------------------------------------------------- /schema/Credential.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Credential.yaml -------------------------------------------------------------------------------- /schema/Customer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Customer.yaml -------------------------------------------------------------------------------- /schema/DecimalValue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/DecimalValue.yaml -------------------------------------------------------------------------------- /schema/Descriptor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Descriptor.yaml -------------------------------------------------------------------------------- /schema/Domain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Domain.yaml -------------------------------------------------------------------------------- /schema/Duration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Duration.yaml -------------------------------------------------------------------------------- /schema/Error.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Error.yaml -------------------------------------------------------------------------------- /schema/Fee.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Fee.yaml -------------------------------------------------------------------------------- /schema/Form.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Form.yaml -------------------------------------------------------------------------------- /schema/FormResponse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/FormResponse.yaml -------------------------------------------------------------------------------- /schema/Fulfillment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Fulfillment.yaml -------------------------------------------------------------------------------- /schema/FulfillmentState.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/FulfillmentState.yaml -------------------------------------------------------------------------------- /schema/Gps.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Gps.yaml -------------------------------------------------------------------------------- /schema/Image.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Image.yaml -------------------------------------------------------------------------------- /schema/Intent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Intent.yaml -------------------------------------------------------------------------------- /schema/Item.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Item.yaml -------------------------------------------------------------------------------- /schema/ItemQuantity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/ItemQuantity.yaml -------------------------------------------------------------------------------- /schema/Language.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Language.yaml -------------------------------------------------------------------------------- /schema/Location.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Location.yaml -------------------------------------------------------------------------------- /schema/MediaFile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/MediaFile.yaml -------------------------------------------------------------------------------- /schema/Offer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Offer.yaml -------------------------------------------------------------------------------- /schema/Option.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Option.yaml -------------------------------------------------------------------------------- /schema/Order.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Order.yaml -------------------------------------------------------------------------------- /schema/Organization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Organization.yaml -------------------------------------------------------------------------------- /schema/Payment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Payment.yaml -------------------------------------------------------------------------------- /schema/Person.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Person.yaml -------------------------------------------------------------------------------- /schema/Price.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Price.yaml -------------------------------------------------------------------------------- /schema/Provider.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Provider.yaml -------------------------------------------------------------------------------- /schema/Quotation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Quotation.yaml -------------------------------------------------------------------------------- /schema/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /schema/Rating.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Rating.yaml -------------------------------------------------------------------------------- /schema/RefundTerm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/RefundTerm.yaml -------------------------------------------------------------------------------- /schema/Region.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Region.yaml -------------------------------------------------------------------------------- /schema/ReplacementTerm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/ReplacementTerm.yaml -------------------------------------------------------------------------------- /schema/ReturnTerm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/ReturnTerm.yaml -------------------------------------------------------------------------------- /schema/Scalar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Scalar.yaml -------------------------------------------------------------------------------- /schema/Schedule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Schedule.yaml -------------------------------------------------------------------------------- /schema/Skill.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Skill.yaml -------------------------------------------------------------------------------- /schema/State.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/State.yaml -------------------------------------------------------------------------------- /schema/Stop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Stop.yaml -------------------------------------------------------------------------------- /schema/Subscriber.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Subscriber.yaml -------------------------------------------------------------------------------- /schema/Subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Subscription.yaml -------------------------------------------------------------------------------- /schema/Support.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Support.yaml -------------------------------------------------------------------------------- /schema/Tag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Tag.yaml -------------------------------------------------------------------------------- /schema/TagGroup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/TagGroup.yaml -------------------------------------------------------------------------------- /schema/Time.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Time.yaml -------------------------------------------------------------------------------- /schema/TimeToLive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/TimeToLive.yaml -------------------------------------------------------------------------------- /schema/Tracking.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Tracking.yaml -------------------------------------------------------------------------------- /schema/Vehicle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/Vehicle.yaml -------------------------------------------------------------------------------- /schema/XInput.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beckn/protocol-specifications/HEAD/schema/XInput.yaml --------------------------------------------------------------------------------