@@ -, +, @@ --- api/v1/swagger/definitions/checkout.json | 9 ++++++++- api/v1/swagger/paths/checkouts.json | 10 ++++++++-- 2 files changed, 16 insertions(+), 3 deletions(-) --- a/api/v1/swagger/definitions/checkout.json +++ a/api/v1/swagger/definitions/checkout.json @@ -68,6 +68,13 @@ "type": ["string", "null"], "format": "date", "description": "Datetime of the issue note" - } + }, + "issuer": { + "type": [ + "object", + "null" + ], + "description": "The object representing the checkout issuer" } } +} --- a/api/v1/swagger/paths/checkouts.json +++ a/api/v1/swagger/paths/checkouts.json @@ -43,7 +43,10 @@ "permissions": { "circulate": "circulate_remaining_permissions" } - } + }, + "x-koha-embed": [ + "issuer" + ] } }, "/checkouts/{checkout_id}": { @@ -73,7 +76,10 @@ "permissions": { "circulate": "circulate_remaining_permissions" } - } + }, + "x-koha-embed": [ + "issuer" + ] } }, "/checkouts/{checkout_id}/renewal": { --