zipkin.json 698 Bytes
Newer Older
fukai committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
{
  "swagger" : "2.0",
  "info" : {
    "version" : "1.0.0",
    "title" : "Application"
  },
  "host" : "{{host}}",
  "basePath" : "{{basePath}}",
  "schemes" : [ "{{schemes}}" ],
  "consumes" : [ "application/json", "application/xml" ],
  "produces" : [ "application/json", "application/xml" ],
  "paths" : {
    "/zipkin" : {
      "get" : {
        "description" : "Method Description -- testZipkin",
        "operationId" : "testZipkin",
        "tags" : [ "TestRest" ],
        "responses" : {
          "200" : {
            "schema" : {
              "type" : "string"
            },
            "description" : "Response OK"
          }
        }
      }
    }
  },
  "definitions" : { }
}