Koha/api/v1/swagger/definitions/ill_batchstatus.yaml
Pedro Amorim 2102e948a8
Bug 30719: (QA follow-up) Rename illbatchstatuses
illbatchstatuses endpoint is now ill/batchstatuses

Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
2023-10-17 14:45:22 -03:00

20 lines
395 B
YAML

---
type: object
properties:
id:
type: string
description: Internal ILL batch status identifier
name:
type: string
description: Status name
code:
type: string
description: Unique, immutable status code
is_system:
type: boolean
description: Is this status required for system operation
additionalProperties: false
required:
- name
- code
- is_system