Bug 30719: ILL Batch Statuses
[koha.git] / api / v1 / swagger / definitions / advancededitormacro.yaml
1 ---
2 type: object
3 properties:
4   macro_id:
5     type: integer
6     description: Internal advanced editor macro identifier
7     readOnly: true
8   name:
9     description: macro name
10     type: string
11   macro_text:
12     description: macro text
13     type:
14       - string
15       - "null"
16   patron_id:
17     description: borrower number
18     type:
19       - integer
20       - "null"
21   shared:
22     description: is macro shared
23     type:
24       - boolean
25       - "null"
26 additionalProperties: false
27 required:
28   - name
29   - macro_text
30   - patron_id
31   - shared