Martin Renvoize
b6fe3a5091
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>
27 lines
485 B
YAML
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
|