diff --git a/src/app/modules/plan/plan.swagger.ts b/src/app/modules/plan/plan.swagger.ts index 82ce586..4e20fe5 100644 --- a/src/app/modules/plan/plan.swagger.ts +++ b/src/app/modules/plan/plan.swagger.ts @@ -91,7 +91,18 @@ export const planSwaggerDocs = { required: true, content: { "application/json": { - example: JSON.stringify({}), // put your request body + example: JSON.stringify({ + "planName": "PRO Plan", + "price": 12, + "planType": "PRO", + "planDesc": "The plan is only for pro users", + "planFeatures": { + "storage": "10GB", + "projects": 5, + "support": "Email Support" + } + + }), // put your request body }, }, },