working oc-datacenter

This commit is contained in:
mr
2025-01-17 17:23:29 +01:00
parent 0a9cc39669
commit ea69be8df1
6 changed files with 242 additions and 45 deletions

View File

@@ -20,6 +20,11 @@ paths:
find booking by id
<br>
operationId: BookingController.GetAll
parameters:
- in: query
name: is_draft
description: draft wished
type: string
responses:
"200":
description: '{booking} models.booking'
@@ -29,7 +34,7 @@ paths:
description: |-
create booking
<br>
operationId: BookingController.Post
operationId: BookingController.Poststatic.
parameters:
- in: body
name: booking
@@ -38,6 +43,10 @@ paths:
schema:
type: string
type: string
- in: query
name: is_draft
description: draft wished
type: string
responses:
"200":
description: ""
@@ -83,6 +92,10 @@ paths:
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: ""
@@ -107,6 +120,31 @@ paths:
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/search/execution/{id}:
get:
tags:
- booking
description: |-
search bookings by execution
<br>
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'