Koha/api/v1/swagger/definitions/rota.yaml
Martin Renvoize b6fe3a5091
Bug 35430: Add rota endpoints for stockrotation
This patch adds the CRUD endpoints for stock rotation rota's.

Signed-off-by: David Nind <david@davidnind.com>
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
2024-06-28 13:49:26 +02:00

27 lines
485 B
YAML

---
type: object
properties:
rota_id:
type: integer
description: internally assigned rota identifier
readOnly: true
title:
description: rota title
type: string
description:
description: rota description
type:
- string
- "null"
cyclical:
description: rota is cyclical
type: boolean
active:
description: rota is active
type: boolean
additionalProperties: false
required:
- title
- description
- cyclical
- active