-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MODINREACH-420 Upgrading dependencies for Quesnelia (#386)
* MODINREACH-420 Upgrading dependencies for Quesnelia
- Loading branch information
1 parent
91951fc
commit 18355bc
Showing
6 changed files
with
77 additions
and
119 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
33 changes: 33 additions & 0 deletions
33
src/main/resources/swagger.api/schemas/inventorystorage/contributors.json
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,33 @@ | ||
{ | ||
"description": "contributors", | ||
"type": "object", | ||
"properties": { | ||
"name": { | ||
"type": "string", | ||
"description": "Personal name, corporate name, meeting name" | ||
}, | ||
"contributorTypeId": { | ||
"type": "string", | ||
"format": "UUID", | ||
"description": "ID for the contributor type term defined as a referencetable in settings" | ||
}, | ||
"contributorTypeText": { | ||
"type": "string", | ||
"description": "Free text element for adding contributor type terms other that defined by the MARC code list for relators" | ||
}, | ||
"contributorNameTypeId": { | ||
"type": "string", | ||
"format": "UUID", | ||
"description": "Contributor type terms defined by the MARC code list for relators" | ||
}, | ||
"primary": { | ||
"type": "boolean", | ||
"description": "Whether this is the primary contributor" | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"required": [ | ||
"name", | ||
"contributorNameTypeId" | ||
] | ||
} |
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
20 changes: 20 additions & 0 deletions
20
src/main/resources/swagger.api/schemas/inventorystorage/instanceIdentifiers.json
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,20 @@ | ||
{ | ||
"description": "An extensible set of name-value pairs of identifiers associated with the resource", | ||
"type": "object", | ||
"properties": { | ||
"value": { | ||
"type": "string", | ||
"description": "Resource identifier value" | ||
}, | ||
"identifierTypeId": { | ||
"description": "UUID of resource identifier type (e.g. ISBN, ISSN, LCCN, CODEN, Locally defined identifiers)", | ||
"type": "string", | ||
"format": "UUID" | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"required": [ | ||
"value", | ||
"identifierTypeId" | ||
] | ||
} |
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