@@ -, +, @@ --- api/v1/swagger/definitions/account_line.json | 5 ++++- api/v1/swagger/definitions/patron_account_credit.json | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) --- a/api/v1/swagger/definitions/account_line.json +++ a/api/v1/swagger/definitions/account_line.json @@ -78,7 +78,10 @@ "description": "Internal patron identifier for the staff member that introduced the account line" }, "library_id": { - "type": "string", + "type": [ + "string", + "null" + ], "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 @@ -11,7 +11,7 @@ "description": "Credit amount" }, "library_id": { - "type": "string", + "type": [ "string", "null" ], "description": "Internal identifier for the library in which the transaction took place" }, "account_lines_ids": { --