@@ -, +, @@ --- api/v1/swagger/definitions/account_line.json | 4 ++++ api/v1/swagger/definitions/patron_account_credit.json | 4 ++++ 2 files changed, 8 insertions(+) --- a/api/v1/swagger/definitions/account_line.json +++ a/api/v1/swagger/definitions/account_line.json @@ -76,6 +76,10 @@ "user_id": { "type": "integer", "description": "Internal patron identifier for the staff member that introduced the account line" + }, + "library_id": { + "type": "string", + "description": "Internal identifier for the library in which the transaction took place" } } } --- a/api/v1/swagger/definitions/patron_account_credit.json +++ a/api/v1/swagger/definitions/patron_account_credit.json @@ -10,6 +10,10 @@ "minimum": 0, "description": "Credit amount" }, + "library_id": { + "type": "string", + "description": "Internal identifier for the library in which the transaction took place" + }, "account_lines_ids": { "type": "array", "items": { --