{
    "swagger": "2.0",
    "info": {
        "title": "oc-datacenter",
        "description": "Monitor owned datacenter activity\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": {
        "/booking/": {
            "get": {
                "tags": [
                    "booking"
                ],
                "description": "find booking by id\n\u003cbr\u003e",
                "operationId": "BookingController.GetAll",
                "parameters": [
                    {
                        "in": "query",
                        "name": "is_draft",
                        "description": "draft wished",
                        "type": "string"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "{booking} models.booking"
                    }
                }
            },
            "post": {
                "tags": [
                    "booking"
                ],
                "description": "create booking\n\u003cbr\u003e",
                "operationId": "BookingController.Poststatic.",
                "parameters": [
                    {
                        "in": "body",
                        "name": "booking",
                        "description": "the booking you want to post",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "type": "string"
                    },
                    {
                        "in": "query",
                        "name": "is_draft",
                        "description": "draft wished",
                        "type": "string"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "",
                        "schema": {
                            "$ref": "#/definitions/models.object"
                        }
                    }
                }
            }
        },
        "/booking/check/{id}/{start_date}/{end_date}": {
            "get": {
                "tags": [
                    "booking"
                ],
                "description": "check booking\n\u003cbr\u003e",
                "operationId": "BookingController.Check",
                "parameters": [
                    {
                        "in": "path",
                        "name": "id",
                        "description": "id of the datacenter",
                        "type": "string"
                    },
                    {
                        "in": "path",
                        "name": "start_date",
                        "description": "2006-01-02T15:04:05",
                        "type": "string",
                        "default": "the booking start date"
                    },
                    {
                        "in": "path",
                        "name": "end_date",
                        "description": "2006-01-02T15:04:05",
                        "type": "string",
                        "default": "the booking end date"
                    },
                    {
                        "in": "query",
                        "name": "is_draft",
                        "description": "draft wished",
                        "type": "string"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "",
                        "schema": {
                            "$ref": "#/definitions/models.object"
                        }
                    }
                }
            }
        },
        "/booking/search/execution/{id}": {
            "get": {
                "tags": [
                    "booking"
                ],
                "description": "search bookings by execution\n\u003cbr\u003e",
                "operationId": "BookingController.Search",
                "parameters": [
                    {
                        "in": "path",
                        "name": "id",
                        "description": "id execution",
                        "required": true,
                        "type": "string"
                    },
                    {
                        "in": "query",
                        "name": "is_draft",
                        "description": "draft wished",
                        "type": "string"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "{workspace} models.workspace"
                    }
                }
            }
        },
        "/booking/search/{start_date}/{end_date}": {
            "get": {
                "tags": [
                    "booking"
                ],
                "description": "search bookings\n\u003cbr\u003e",
                "operationId": "BookingController.Search",
                "parameters": [
                    {
                        "in": "path",
                        "name": "start_date",
                        "description": "the word search you want to get",
                        "required": true,
                        "type": "string"
                    },
                    {
                        "in": "path",
                        "name": "end_date",
                        "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"
                    }
                }
            }
        },
        "/booking/{id}": {
            "get": {
                "tags": [
                    "booking"
                ],
                "description": "find booking by id\n\u003cbr\u003e",
                "operationId": "BookingController.Get",
                "parameters": [
                    {
                        "in": "path",
                        "name": "id",
                        "description": "the id you want to get",
                        "required": true,
                        "type": "string"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "{booking} models.booking"
                    }
                }
            }
        },
        "/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": ""
                    }
                }
            }
        }
    },
    "definitions": {
        "models.object": {
            "title": "object",
            "type": "object"
        }
    },
    "tags": [
        {
            "name": "booking",
            "description": "Operations about workspace\n"
        },
        {
            "name": "version",
            "description": "VersionController operations for Version\n"
        }
    ]
}