{
  "swagger": "2.0",
  "info": {
    "version": "0.0.1",
    "title": "Travel Groups App"
  },
  "host": "localhost:10010",
  "basePath": "/",
  "schemes": [
    "http",
    "https"
  ],
  "consumes": [
    "application/json"
  ],
  "paths": {
    "/user": {
      "get": {
        "summary": "Show current user",
        "responses": {
          "200": {
            "description": "The requested user",
            "schema": {
              "type": "object",
              "properties": {
                "data": {
                  "$ref": "#/definitions/User"
                }
              }
            }
          }
        }
      }
    }
  },
  "definitions": {
    "User": {
      "type": "object",
      "properties": {
        "id": {
          "type": "string",
          "description": "Resource ID"
        },
        "name": {
          "type": "string",
          "description": "User’s public name"
        }
      }
    }
  }
}