From eee137a4ea93f3a85d091cb774b241153fb0d22a Mon Sep 17 00:00:00 2001 From: Ere Maijala Date: Wed, 19 Feb 2020 09:49:49 +0200 Subject: [PATCH] Bug 20447: Add holding_id to REST API item definition Allows items to be properly returned, including the holding_id field. https://bugs.koha-community.org/show_bug.cgi?id=22690 --- api/v1/swagger/definitions/item.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/api/v1/swagger/definitions/item.json b/api/v1/swagger/definitions/item.json index 14c110714e..2600ecfb4c 100644 --- a/api/v1/swagger/definitions/item.json +++ b/api/v1/swagger/definitions/item.json @@ -9,6 +9,10 @@ "type": "integer", "description": "Internal identifier for the parent bibliographic record" }, + "holding_id": { + "type": ["integer", "null"], + "description": "Internal identifier for the parent holdings record" + }, "external_id": { "type": ["string", "null"], "description": "The item's barcode" -- 2.17.1