{ "swagger" : "2.0", "info" : { "version" : "4.1.2", "title" : "Poin App" }, "host" : "{{host}}", "basePath" : "{{basePath}}", "schemes" : [ "{{schemes}}" ], "consumes" : [ "application/json" ], "produces" : [ "application/json" ], "paths" : { "/Reports/getChartInfo" : { "get" : { "description" : "Method Description -- getChartInfo", "operationId" : "getChartInfo", "tags" : [ "ReportsResource" ], "parameters" : [ { "name" : "selectDate", "in" : "query", "required" : "false", "type" : "string", "description" : "parameter name -- selectDate" } ], "responses" : { "200" : { "schema" : { "type" : "object", "additionalProperties" : { "$ref" : "#/definitions/Object" } }, "description" : "Response OK" } } } }, "/Reports/getDashboardInfo" : { "get" : { "description" : "Method Description -- dashboardInfo", "operationId" : "dashboardInfo", "tags" : [ "ReportsResource" ], "responses" : { "200" : { "schema" : { "type" : "string" }, "description" : "Response OK" } } } }, "/Reports/getJobLogStatistics" : { "post" : { "description" : "Method Description -- getJobLogStatistics", "operationId" : "getJobLogStatistics", "tags" : [ "ReportsResource" ], "parameters" : [ { "name" : "logstatistics", "in" : "body", "required" : "true", "schema" : { "$ref" : "#/definitions/LogStatistics" }, "description" : "parameter name -- logstatistics" }, { "name" : "offset", "in" : "query", "required" : "false", "type" : "integer", "description" : "parameter name -- offset" }, { "name" : "limit", "in" : "query", "required" : "false", "type" : "integer", "description" : "parameter name -- limit" } ], "responses" : { "200" : { "schema" : { "$ref" : "#/definitions/ResponseEntity" }, "description" : "Response OK" } } } }, "/Reports/getSumJobLogStatistics" : { "get" : { "description" : "Method Description -- getSumJobLogStatistics", "operationId" : "getSumJobLogStatistics", "tags" : [ "ReportsResource" ], "responses" : { "200" : { "schema" : { "$ref" : "#/definitions/ResponseEntity" }, "description" : "Response OK" } } } }, "/Reports/getFlowLogStatistics" : { "post" : { "description" : "Method Description -- getFlowLogStatistics", "operationId" : "getFlowLogStatistics", "tags" : [ "ReportsResource" ], "parameters" : [ { "name" : "logstatistics", "in" : "body", "required" : "true", "schema" : { "$ref" : "#/definitions/LogStatistics" }, "description" : "parameter name -- logstatistics" }, { "name" : "offset", "in" : "query", "required" : "false", "type" : "integer", "description" : "parameter name -- offset" }, { "name" : "limit", "in" : "query", "required" : "false", "type" : "integer", "description" : "parameter name -- limit" } ], "responses" : { "200" : { "schema" : { "$ref" : "#/definitions/ResponseEntity" }, "description" : "Response OK" } } } }, "/Reports/getSumFlowLogStatistics" : { "get" : { "description" : "Method Description -- getSumFlowLogStatistics", "operationId" : "getSumFlowLogStatistics", "tags" : [ "ReportsResource" ], "responses" : { "200" : { "schema" : { "$ref" : "#/definitions/ResponseEntity" }, "description" : "Response OK" } } } } }, "definitions" : { "ResponseEntity" : { "type" : "object", "properties" : { "headers" : { "$ref" : "#/definitions/HttpHeaders" }, "body" : { "$ref" : "#/definitions/Object" } } }, "LogStatistics" : { "type" : "object", "properties" : { "failureCount" : { "type" : "integer" }, "successCount" : { "type" : "integer" }, "runningCount" : { "type" : "integer" }, "flowInfoId" : { "type" : "integer" }, "flowId" : { "type" : "string" }, "jobId" : { "type" : "integer" } } }, "HttpHeaders" : { "type" : "object", "properties" : { } }, "Object" : { "type" : "object", "properties" : { } } } }