{
    "swagger": "2.0",
    "info": {
        "title": "Test Swagger JSON",
        "description": "Info APIs for Collective",
        "version": "1.0.0"
    },
    "basePath": "/",
    "paths": {
        "/ibm/api/root1/v1/info": {
            "get": {
                "summary": "Retrieve collective's core information",
                "description": "Returns a JSON with core information about collective",
                "operationId": "getInfo",
                "produces": ["application/json"],
                "responses": {
                    "200": {
                        "description": "successful operation",
                        "schema": {
                            "$ref": "#/definitions/CollectiveInfo"
                        }
                    },
                    "404": {
                        "description": "Invalid path",
                        "schema":{
                            "$ref":"#/definitions/NotFound"
                        }
                    }
                }
            }
        }
    },
    "definitions": {
        "CollectiveInfo": {
            "properties": {
                "name": {
                    "type": "string",
                    "description": "Name of the collective"
                }
            }
        },
        "NotFound": {
            "properties": {
                "name": {
                    "type": "string",
                    "description": "Response object for 404"
                }
            }
        }
    }
}