Koha/api/v1/swagger/definitions/booking.yaml
Martin Renvoize e8a2f4df73
Bug 36100: Remove readOnly from bookings definition.
Whilst readOnly feels correct here, swagger doesn't work that way at our
version. It must be removed to restore the ability to edit exising
bookings.

Signed-off-by: David Nind <david@davidnind.com>

Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
2024-03-07 16:36:41 +01:00

45 lines
965 B
YAML

---
additionalProperties: false
properties:
biblio_id:
description: Internal identifier for the parent bibliographic record
type: integer
biblio:
description: Embedable biblio representation
type: object
booking_id:
description: Internal booking identifier
type: integer
end_date:
description: Start date and time of this booking
format: date-time
type: string
item_id:
description: Internal item identifier
type:
- integer
- "null"
item:
description: Embedable item representation
type:
- object
- "null"
patron_id:
description: Internal patron identifier
type: integer
patron:
description: Embedable patron representation
type:
- object
- "null"
start_date:
description: Start date and time of this booking
format: date-time
type: string
required:
- biblio_id
- item_id
- patron_id
- start_date
- end_date
type: object