Koha/api/v1/swagger/definitions.json
Kyle M Hall a44ffa0926
Bug 14697: Add routes to handle return claims
This patch adds the /return_claims route to add new return claims, and
then routes to updates notes and the resolution code.

To test:
1. Apply this patches
2. Run:
   $ kshell
  k$ prove t/db_dependent/api/v1/return_claims.t
=> SUCCESS: Tests pass!
3. Sign off :-D

Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
Signed-off-by: Andrew Fuerste-Henry <andrew@bywatersolutions.com>
Signed-off-by: Lisette Scheer <lisetteslatah@gmail.com>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
2019-10-31 12:04:13 +00:00

50 lines
993 B
JSON

{
"account_line": {
"$ref": "definitions/account_line.json"
},
"city": {
"$ref": "definitions/city.json"
},
"error": {
"$ref": "definitions/error.json"
},
"hold": {
"$ref": "definitions/hold.json"
},
"checkouts": {
"$ref": "definitions/checkouts.json"
},
"checkout": {
"$ref": "definitions/checkout.json"
},
"holds": {
"$ref": "definitions/holds.json"
},
"library": {
"$ref": "definitions/library.json"
},
"item": {
"$ref": "definitions/item.json"
},
"patron": {
"$ref": "definitions/patron.json"
},
"patron_account_credit": {
"$ref": "definitions/patron_account_credit.json"
},
"patron_balance": {
"$ref": "definitions/patron_balance.json"
},
"allows_renewal": {
"$ref": "definitions/allows_renewal.json"
},
"vendor": {
"$ref": "definitions/vendor.json"
},
"fund": {
"$ref": "definitions/fund.json"
},
"return_claim": {
"$ref": "definitions/return_claim.json"
}
}