From 8fac8814823ecbaeb75f16b76d929809de618ef1 Mon Sep 17 00:00:00 2001 From: Meutel Date: Sun, 18 Dec 2016 16:51:09 +0100 Subject: [PATCH] Swagger template --- swagger.in.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 swagger.in.json diff --git a/swagger.in.json b/swagger.in.json new file mode 100644 index 0000000..944f33a --- /dev/null +++ b/swagger.in.json @@ -0,0 +1,24 @@ +{ + "swagger": "2.0", + "info": { + "title": "@TARGET@", + "description": "@TARGET@", + "license": { + "name": "ISC license", + "url": "https://opensource.org/licenses/ISC" + }, + "contact": { + "name": "yourname", + "email": "you@localhost" + }, + "version": "@VERSION@" + }, + "paths": {}, + "definitions": { + "empty": { + "description": "An empty JSON document", + "type": "object", + "properties": { } + } + } +}