{ "swagger" : "2.0", "info" : { "version" : "4.1.2", "title" : "Poin App" }, "host" : "{{host}}", "basePath" : "{{basePath}}", "schemes" : [ "{{schemes}}" ], "consumes" : [ "application/json" ], "produces" : [ "application/json" ], "paths" : { "/flowExecute/nextGoingFlows" : { "post" : { "description" : "Method Description -- findNextGoingFlows", "operationId" : "findNextGoingFlows", "tags" : [ "FlowExecuteResource" ], "parameters" : [ { "name" : "flowmanagevo", "in" : "body", "required" : "true", "schema" : { "$ref" : "#/definitions/FlowManageVO" }, "description" : "parameter name -- flowmanagevo" }, { "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/PagingData_FlowManageVO" }, "description" : "Response OK" } } } } }, "definitions" : { "PagingData_FlowManageVO" : { "type" : "object", "properties" : { "offset" : { "type" : "integer" }, "total" : { "type" : "integer" }, "sort" : { "type" : "string" }, "limit" : { "type" : "integer" }, "rows" : { "type" : "array", "items" : { "$ref" : "#/definitions/FlowManageVO" } }, "order" : { "type" : "string" }, "search" : { "type" : "string" } } }, "FlowManageVO" : { "type" : "object", "properties" : { "id" : { "type" : "integer" }, "flowId" : { "type" : "string" }, "jobGroup" : { "type" : "integer" }, "flowDesc" : { "type" : "string" }, "flowCron" : { "type" : "string" }, "addTime" : { "type" : "string" }, "updateTime" : { "type" : "string" }, "author" : { "type" : "string" }, "triggerStatus" : { "type" : "integer" }, "flowXmlData" : { "type" : "string" }, "flowNodeDataStr" : { "type" : "string" }, "flowNodeData" : { "type" : "array", "items" : { "$ref" : "#/definitions/Object" } }, "nodeMap" : { "type" : "string" }, "delStatus" : { "type" : "integer" }, "publishVersion" : { "type" : "integer" }, "childFlowNDMap" : { "type" : "string" }, "connects" : { "type" : "string" }, "connectsStr" : { "type" : "string" }, "fileCoordFlag" : { "type" : "string" }, "filePath" : { "type" : "string" }, "fileBean" : { "type" : "string" }, "fileCron" : { "type" : "string" }, "fileParam" : { "type" : "string" }, "hour" : { "type" : "integer" }, "nextTriggerTime" : { "type" : "string" }, "flowLogId" : { "type" : "integer" }, "nodeId" : { "type" : "string" }, "operator" : { "type" : "string" }, "subJobIds" : { "type" : "string" }, "isSharding" : { "type" : "string" }, "executeType" : { "type" : "integer" } } } } }