From 598d73a8d0f6d593ef41f6fee7f4a614bc7e2e7a Mon Sep 17 00:00:00 2001 From: Asim Aslam Date: Tue, 4 May 2021 15:57:22 +0100 Subject: [PATCH] add helloworld example json --- helloworld/examples.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 helloworld/examples.json diff --git a/helloworld/examples.json b/helloworld/examples.json new file mode 100644 index 0000000..325770b --- /dev/null +++ b/helloworld/examples.json @@ -0,0 +1,13 @@ + +{ + "call": [{ + "title": "Call the helloworld service", + "description": "Helloworld is a simple example that takes a name and returns a personalised message", + "request": { + "name": "John" + }, + "response": { + "msg": "Hello John" + } + }] +}