{
    "swagger": "2.0",
    "info": {
        "title": "httpbin.org",
        "description": "API Management facade for a very handy and free online HTTP tool.",
        "version": "1.0"
    },
    "host": "httpbin.org",
    "schemes": [
        "http",
        "https"
    ],
    "paths": {
        "/ip": {
            "get": {
                "description": "Returns origin IP.",
                "operationId": "/ip",
                "responses": {
                    "200": {
                        "description": "Expected response to a valid request",
                        "schema": {
                            "type": "object",
                            "properties": {
                                "origin": {
                                    "type": "string"
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
