@@ -, +, @@ --- api/v1/swagger/definitions/account_line.json | 3 ++- api/v1/swagger/definitions/allows_renewal.json | 3 ++- api/v1/swagger/definitions/basket.json | 3 ++- api/v1/swagger/definitions/cashup.json | 3 ++- api/v1/swagger/definitions/checkout.json | 5 +++-- api/v1/swagger/definitions/checkouts.json | 3 ++- api/v1/swagger/definitions/club_hold.json | 5 +++-- api/v1/swagger/definitions/club_hold_patron_hold.json | 5 +++-- api/v1/swagger/definitions/club_hold_patron_holds.json | 5 +++-- api/v1/swagger/definitions/club_holds.json | 5 +++-- api/v1/swagger/definitions/error.json | 3 ++- api/v1/swagger/definitions/hold.json | 3 ++- api/v1/swagger/definitions/holds.json | 3 ++- api/v1/swagger/definitions/ill_backend.json | 3 ++- api/v1/swagger/definitions/ill_backends.json | 3 ++- api/v1/swagger/definitions/import_batch_profile.json | 5 +++-- api/v1/swagger/definitions/import_batch_profiles.json | 5 +++-- api/v1/swagger/definitions/patron_account_credit.json | 3 ++- api/v1/swagger/definitions/return_claim.json | 3 ++- 19 files changed, 45 insertions(+), 26 deletions(-) --- a/api/v1/swagger/definitions/account_line.json +++ a/api/v1/swagger/definitions/account_line.json @@ -97,5 +97,6 @@ ], "description": "Internal identifier for the library in which the transaction took place" } - } + }, + "additionalProperties": false } --- a/api/v1/swagger/definitions/allows_renewal.json +++ a/api/v1/swagger/definitions/allows_renewal.json @@ -17,5 +17,6 @@ "type": ["string", "null"], "description": "Description on false allows_renewal." } - } + }, + "additionalProperties": false } --- a/api/v1/swagger/definitions/basket.json +++ a/api/v1/swagger/definitions/basket.json @@ -95,5 +95,6 @@ ], "description": "When items should be created for orders in this basket (Options: 'ordering', 'receiving', 'cataloguing'. Null means system wide config)" } - } + }, + "additionalProperties": false } --- a/api/v1/swagger/definitions/cashup.json +++ a/api/v1/swagger/definitions/cashup.json @@ -26,5 +26,6 @@ "type": "object", "description": "A summary of the cashup action" } - } + }, + "additionalProperties": false } --- a/api/v1/swagger/definitions/checkout.json +++ a/api/v1/swagger/definitions/checkout.json @@ -79,6 +79,7 @@ "null" ], "description": "The object representing the checkout issuer" - } -} + } + }, + "additionalProperties": false } --- a/api/v1/swagger/definitions/checkouts.json +++ a/api/v1/swagger/definitions/checkouts.json @@ -2,5 +2,6 @@ "type": "array", "items": { "$ref": "checkout.json" - } + }, + "additionalProperties": false } --- a/api/v1/swagger/definitions/club_hold.json +++ a/api/v1/swagger/definitions/club_hold.json @@ -17,5 +17,6 @@ "type": ["string", "null"], "description": "Internal item identifier" } - } - } + }, + "additionalProperties": false +} --- a/api/v1/swagger/definitions/club_hold_patron_hold.json +++ a/api/v1/swagger/definitions/club_hold_patron_hold.json @@ -26,5 +26,6 @@ "type": ["string", "null"], "description": "Generic error message" } - } - } + }, + "additionalProperties": false +} --- a/api/v1/swagger/definitions/club_hold_patron_holds.json +++ a/api/v1/swagger/definitions/club_hold_patron_holds.json @@ -2,5 +2,6 @@ "type": "array", "items": { "$ref": "club_hold_patron_hold.json" - } -} + }, + "additionalProperties": false +} --- a/api/v1/swagger/definitions/club_holds.json +++ a/api/v1/swagger/definitions/club_holds.json @@ -2,5 +2,6 @@ "type": "array", "items": { "$ref": "club_hold.json" - } -} + }, + "additionalProperties": false +} --- a/api/v1/swagger/definitions/error.json +++ a/api/v1/swagger/definitions/error.json @@ -5,5 +5,6 @@ "description": "Error message", "type": "string" } - } + }, + "additionalProperties": false } --- a/api/v1/swagger/definitions/hold.json +++ a/api/v1/swagger/definitions/hold.json @@ -83,5 +83,6 @@ "type": "boolean", "description": "If the hold is placed at item level" } - } + }, + "additionalProperties": false } --- a/api/v1/swagger/definitions/holds.json +++ a/api/v1/swagger/definitions/holds.json @@ -2,5 +2,6 @@ "type": "array", "items": { "$ref": "hold.json" - } + }, + "additionalProperties": false } --- a/api/v1/swagger/definitions/ill_backend.json +++ a/api/v1/swagger/definitions/ill_backend.json @@ -9,5 +9,6 @@ "type": "object", "description": "List of capabilities" } - } + }, + "additionalProperties": false } --- a/api/v1/swagger/definitions/ill_backends.json +++ a/api/v1/swagger/definitions/ill_backends.json @@ -2,5 +2,6 @@ "type": "array", "items": { "$ref": "ill_backend.json" - } + }, + "additionalProperties": false } --- a/api/v1/swagger/definitions/import_batch_profile.json +++ a/api/v1/swagger/definitions/import_batch_profile.json @@ -49,5 +49,6 @@ "description": "any comments added when the file was uploaded", "type": ["string", "null"] } - } -} + }, + "additionalProperties": false +} --- a/api/v1/swagger/definitions/import_batch_profiles.json +++ a/api/v1/swagger/definitions/import_batch_profiles.json @@ -2,5 +2,6 @@ "type": "array", "items": { "$ref": "import_batch_profile.json" - } - } + }, + "additionalProperties": false +} --- a/api/v1/swagger/definitions/patron_account_credit.json +++ a/api/v1/swagger/definitions/patron_account_credit.json @@ -39,5 +39,6 @@ "description": "Internal note" } }, - "required": [ "amount" ] + "required": [ "amount" ], + "additionalProperties": false } --- a/api/v1/swagger/definitions/return_claim.json +++ a/api/v1/swagger/definitions/return_claim.json @@ -89,5 +89,6 @@ ], "description": "patron id of librarian who resolved this claim" } - } + }, + "additionalProperties": false } --