-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge code changes for EDGEDCB-34 (#40)
* Merge code changes for EDGEDCB-34 * Merge code changes for EDGEDCB-34 --------- Co-authored-by: Antony Hruschev <[email protected]>
- Loading branch information
1 parent
2fac2fd
commit 6371f7a
Showing
9 changed files
with
142 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
DcbUpdateItem: | ||
description: Item metadata required for updating the existing transaction | ||
type: object | ||
properties: | ||
barcode: | ||
description: The barcode of the item as specified in the lending library | ||
type: string | ||
materialType: | ||
description: The “hub-normalized” form of the item item type, used in the circulation rules for determining the correct loan policy. | ||
type: string | ||
lendingLibraryCode: | ||
description: The code which identifies the lending library | ||
type: string | ||
additionalProperties: false | ||
required: | ||
- barcode | ||
- materialType | ||
- lendingLibraryCode |
6 changes: 6 additions & 0 deletions
6
src/main/resources/swagger.api/schemas/dcbUpdateTransaction.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
DcbUpdateTransaction: | ||
type: object | ||
properties: | ||
item: | ||
$ref: 'dcbUpdateItem.yaml#/DcbUpdateItem' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters