From a96ef36c38c9c812a1e6efb50a2db33ce746e9bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Santanch=C3=A8?= Date: Tue, 19 Sep 2023 18:32:04 -0300 Subject: [PATCH] feat (service): new section for REST services --- service/RCS.postman_collection.json | 115 ++++++++++++++++++++++++++++ 1 file changed, 115 insertions(+) create mode 100644 service/RCS.postman_collection.json diff --git a/service/RCS.postman_collection.json b/service/RCS.postman_collection.json new file mode 100644 index 00000000..69d491d7 --- /dev/null +++ b/service/RCS.postman_collection.json @@ -0,0 +1,115 @@ +{ + "info": { + "_postman_id": "7d4f831c-74f7-4bd0-9a15-d11c1af6b66e", + "name": "RCS", + "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", + "_exporter_id": "7375845" + }, + "item": [ + { + "name": "DBPedia - Data", + "event": [ + { + "listen": "prerequest", + "script": { + "exec": [ + "" + ], + "type": "text/javascript" + } + } + ], + "protocolProfileBehavior": { + "disabledSystemHeaders": {} + }, + "request": { + "method": "GET", + "header": [], + "url": { + "raw": "http://dbpedia.org/data/:concept", + "protocol": "http", + "host": [ + "dbpedia", + "org" + ], + "path": [ + "data", + ":concept" + ], + "variable": [ + { + "key": "concept", + "value": "Tent_of_Miracles_(novel).json" + } + ] + } + }, + "response": [] + }, + { + "name": "xkcd", + "request": { + "method": "GET", + "header": [], + "url": { + "raw": "https://xkcd.com/:comicid/info.0.json", + "protocol": "https", + "host": [ + "xkcd", + "com" + ], + "path": [ + ":comicid", + "info.0.json" + ], + "variable": [ + { + "key": "comicid", + "value": null, + "description": "Number of the comic to retrieve.\n" + } + ] + } + }, + "response": [] + }, + { + "name": "Open Street Map", + "request": { + "method": "GET", + "header": [], + "url": { + "raw": "http://nominatim.openstreetmap.org/search?format=json&q=Royal Tyrrell Museum", + "protocol": "http", + "host": [ + "nominatim", + "openstreetmap", + "org" + ], + "path": [ + "search" + ], + "query": [ + { + "key": "format", + "value": "json" + }, + { + "key": "q", + "value": "Royal Tyrrell Museum" + } + ] + } + }, + "response": [] + }, + { + "name": "TheMealDB", + "request": { + "method": "GET", + "header": [] + }, + "response": [] + } + ] +} \ No newline at end of file