changes in Initialse method as adding AddResource function

This commit is contained in:
AshwiniK-protean
2025-02-28 18:02:20 +05:30
parent 26c97c5774
commit 4b940d9e51
57 changed files with 2516 additions and 2993 deletions

View File

@@ -22,8 +22,25 @@
]
}
]
},
"message": {
"type": "object",
"additionalProperties": false,
"properties": {
"order_id": {
"$ref": "definitions.json#/$defs/Order"
},
"cancellation_reason_id": {
"$ref": "definitions.json#/$defs/Option"
},
"descriptor": {
"$ref": "definitions.json#/$defs/Descriptor"
}
},
"required": [
"order_id"
]
}
},
"required": [
"message",

View File

@@ -1,6 +1,6 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://beckn.org/schema/confirm",
"$id": "confirm",
"type": "object",
"properties": {
"context": {

View File

@@ -1,6 +1,6 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://beckn.org/schema/init",
"$id": "init",
"type": "object",
"properties": {
"context": {

View File

@@ -1,6 +1,6 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://beckn.org/schema/OnCancel",
"$id": "OnCancel",
"type": "object",
"properties": {
"context": {

View File

@@ -1,6 +1,6 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://beckn.org/schema/OnConfirm",
"$id": "OnConfirm",
"type": "object",
"properties": {
"context": {

View File

@@ -1,6 +1,6 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://beckn.org/schema/OnInit",
"$id": "OnInit",
"type": "object",
"properties": {
"context": {

View File

@@ -1,6 +1,6 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://beckn.org/schema/OnRating",
"$id": "OnRating",
"type": "object",
"properties": {
"context": {

View File

@@ -1,6 +1,6 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://beckn.org/schema/OnSearch",
"$id": "OnSearch",
"type": "object",
"properties": {
"context": {

View File

@@ -1,6 +1,6 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://beckn.org/schema/OnSelect",
"$id": "OnSelect",
"type": "object",
"properties": {
"context": {

View File

@@ -1,6 +1,6 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://beckn.org/schema/OnStatus",
"$id": "OnStatus",
"type": "object",
"properties": {
"context": {

View File

@@ -1,6 +1,6 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://beckn.org/schema/OnSupport",
"$id": "OnSupport",
"type": "object",
"properties": {
"context": {

View File

@@ -1,6 +1,6 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://beckn.org/schema/OnTrack",
"$id": "OnTrack",
"type": "object",
"properties": {
"context": {

View File

@@ -1,6 +1,6 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://beckn.org/schema/OnUpdate",
"$id": "OnUpdate",
"type": "object",
"properties": {
"context": {

View File

@@ -1,6 +1,6 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://beckn.org/schema/rating",
"$id": "rating",
"type": "object",
"properties": {
"context": {

View File

@@ -1,6 +1,6 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://beckn.org/schema/Response",
"$id": "Response",
"type": "object",
"properties": {},
"required": []

View File

@@ -1,6 +1,6 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://beckn.org/schema/status",
"$id": "status",
"type": "object",
"properties": {
"context": {

View File

@@ -1,6 +1,6 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://beckn.org/schema/support",
"$id": "support",
"type": "object",
"properties": {
"context": {

View File

@@ -1,6 +1,6 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://beckn.org/schema/track",
"$id": "track",
"type": "object",
"properties": {
"context": {

View File

@@ -1,6 +1,6 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://beckn.org/schema/update",
"$id": "update",
"type": "object",
"properties": {
"context": {

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://beckn.org/schema/on_cancel",
"$id": "on_cancel",
"type": "object",
"properties": {
"context": {

View File

@@ -1,6 +1,6 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://beckn.org/schema/on_confirm",
"$id": "on_confirm",
"type": "object",
"properties": {
"context": {

View File

@@ -1,6 +1,6 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://beckn.org/schema/on_init",
"$id": "on_init",
"type": "object",
"properties": {
"context": {

View File

@@ -1,6 +1,6 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://beckn.org/schema/on_rating",
"$id": "on_rating",
"type": "object",
"properties": {
"context": {

View File

@@ -1,6 +1,6 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://beckn.org/schema/on_search",
"$id": "on_search",
"type": "object",
"properties": {
"context": {

View File

@@ -1,6 +1,6 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://beckn.org/schema/on_select",
"$id": "on_select",
"type": "object",
"properties": {
"context": {

View File

@@ -1,6 +1,6 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://beckn.org/schema/on_status",
"$id": "on_status",
"type": "object",
"properties": {
"context": {

View File

@@ -1,6 +1,6 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://beckn.org/schema/on_support",
"$id": "on_support",
"type": "object",
"properties": {
"context": {

View File

@@ -1,6 +1,6 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://beckn.org/schema/on_track",
"$id": "on_track",
"type": "object",
"properties": {
"context": {

View File

@@ -1,6 +1,6 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://beckn.org/schema/on_update",
"$id": "on_update",
"type": "object",
"properties": {
"context": {

View File

@@ -1,6 +1,6 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://beckn.org/schema/search",
"$id": "search",
"type": "object",
"properties": {
"context": {

View File

@@ -1,6 +1,6 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://beckn.org/schema/select",
"$id": "select",
"type": "object",
"properties": {
"context": {