Bug 20942: OpenAPI spec for /patrons/{patron_id}/account
[koha.git] / api / v1 / swagger / definitions / patron_balance.json
1 {
2   "type": "object",
3   "properties": {
4     "balance": {
5       "type": "number",
6       "description": "Signed decimal number"
7     },
8     "outstanding_lines": {
9       "type": "array",
10       "items": {
11         "$ref": "account_line.json"
12       }
13     }
14   },
15   "additionalProperties": false,
16   "required": [
17     "balance"
18   ]
19 }