Bug 30719: (QA follow-up) Squash:
[koha.git] / api / v1 / swagger / definitions / illbatchstatus.yaml
1 ---
2 type: object
3 properties:
4   id:
5     type: string
6     description: Internal ILL batch status identifier
7   name:
8     type: string
9     description: Status name
10   code:
11     type: string
12     description: Unique, immutable status code
13   is_system:
14     type: boolean
15     description: Is this status required for system operation
16 additionalProperties: false
17 required:
18   - name
19   - code
20   - is_system