{
    "swagger": "2.0",
    "info": {
        "title": "oc-workflow",
        "description": "Workflows management api\n",
        "version": "1.0.0",
        "termsOfService": "http://cloud.o-forge.io/",
        "contact": {
            "email": "admin@o-cloud.io"
        },
        "license": {
            "name": "AGPL",
            "url": "https://www.gnu.org/licenses/agpl-3.0.html"
        }
    },
    "basePath": "/oc/",
    "paths": {
        "/": {
            "get": {
                "tags": [
                    "oc-workflow/controllersWorkflowController"
                ],
                "description": "find workflow by workflowid\n\u003cbr\u003e",
                "operationId": "WorkflowController.GetAll",
                "parameters": [
                    {
                        "in": "query",
                        "name": "is_draft",
                        "description": "draft wished",
                        "type": "string"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "{workflow} models.workflow"
                    }
                }
            },
            "post": {
                "tags": [
                    "oc-workflow/controllersWorkflowController"
                ],
                "description": "create workflows\n\u003cbr\u003e",
                "operationId": "WorkflowController.Create",
                "parameters": [
                    {
                        "in": "body",
                        "name": "data",
                        "description": "body for data content (Json format)",
                        "required": true,
                        "schema": {
                            "$ref": "#/definitions/json"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "",
                        "schema": {
                            "$ref": "#/definitions/models.workflow"
                        }
                    }
                }
            }
        },
        "/check/{id}/{start_date}/{end_date}": {
            "get": {
                "tags": [
                    "oc-workflow/controllersWorkflowController"
                ],
                "description": "check booking\n\u003cbr\u003e",
                "operationId": "WorkflowController.Check",
                "parameters": [
                    {
                        "in": "path",
                        "name": "id",
                        "description": "the booking workflow id",
                        "type": "string"
                    },
                    {
                        "in": "path",
                        "name": "start_date",
                        "description": "the booking start date format 2006-01-02T15:04:05",
                        "type": "string"
                    },
                    {
                        "in": "path",
                        "name": "end_date",
                        "description": "2006-01-02T15:04:05",
                        "type": "string",
                        "default": "the booking end date"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "",
                        "schema": {
                            "$ref": "#/definitions/models.object"
                        }
                    }
                }
            }
        },
        "/publish/{id}": {
            "post": {
                "tags": [
                    "oc-workflow/controllersWorkflowController"
                ],
                "description": "create workflows\n\u003cbr\u003e",
                "operationId": "WorkflowController.Publish",
                "parameters": [
                    {
                        "in": "path",
                        "name": "id",
                        "description": "the workflowid you want to get",
                        "required": true,
                        "type": "string"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "",
                        "schema": {
                            "$ref": "#/definitions/models.workflow"
                        }
                    }
                }
            }
        },
        "/search/{search}": {
            "get": {
                "tags": [
                    "oc-workflow/controllersWorkflowController"
                ],
                "description": "search workspace\n\u003cbr\u003e",
                "operationId": "WorkflowController.Search",
                "parameters": [
                    {
                        "in": "path",
                        "name": "search",
                        "description": "the word search you want to get",
                        "required": true,
                        "type": "string"
                    },
                    {
                        "in": "query",
                        "name": "is_draft",
                        "description": "draft wished",
                        "type": "string"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "{workspace} models.workspace"
                    }
                }
            }
        },
        "/version/": {
            "get": {
                "tags": [
                    "version"
                ],
                "description": "get version\n\u003cbr\u003e",
                "operationId": "VersionController.GetAll",
                "responses": {
                    "200": {
                        "description": ""
                    }
                }
            }
        },
        "/version/status": {
            "get": {
                "tags": [
                    "version"
                ],
                "description": "get status\n\u003cbr\u003e",
                "operationId": "VersionController.Status",
                "responses": {
                    "200": {
                        "description": ""
                    }
                }
            }
        },
        "/{id}": {
            "get": {
                "tags": [
                    "oc-workflow/controllersWorkflowController"
                ],
                "description": "find workflow by workflowid\n\u003cbr\u003e",
                "operationId": "WorkflowController.Get",
                "parameters": [
                    {
                        "in": "path",
                        "name": "id",
                        "description": "the workflowid you want to get",
                        "required": true,
                        "type": "string"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "{workflow} models.workflow"
                    }
                }
            },
            "put": {
                "tags": [
                    "oc-workflow/controllersWorkflowController"
                ],
                "description": "create workflows\n\u003cbr\u003e",
                "operationId": "WorkflowController.Update",
                "parameters": [
                    {
                        "in": "path",
                        "name": "id",
                        "description": "the workflowid you want to get",
                        "required": true,
                        "type": "string"
                    },
                    {
                        "in": "body",
                        "name": "body",
                        "description": "The workflow content",
                        "required": true,
                        "schema": {
                            "$ref": "#/definitions/models.workflow"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "",
                        "schema": {
                            "$ref": "#/definitions/models.workflow"
                        }
                    }
                }
            },
            "delete": {
                "tags": [
                    "oc-workflow/controllersWorkflowController"
                ],
                "description": "delete the workflow\n\u003cbr\u003e",
                "operationId": "WorkflowController.Delete",
                "parameters": [
                    {
                        "in": "path",
                        "name": "id",
                        "description": "The workflowId you want to delete",
                        "required": true,
                        "type": "string"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "{string} delete success!"
                    }
                }
            }
        }
    },
    "definitions": {
        "json": {
            "title": "json",
            "type": "object"
        },
        "models.object": {
            "title": "object",
            "type": "object"
        },
        "models.workflow": {
            "title": "workflow",
            "type": "object"
        }
    },
    "tags": [
        {
            "name": "oc-workflow/controllersWorkflowController",
            "description": "Operations about workflow\n"
        },
        {
            "name": "version",
            "description": "VersionController operations for Version\n"
        }
    ]
}