-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MODRS-194 Upgrading dependencies for Quesnelia (#200)
* MODRS-194 Upgrading dependencies for Quesnelia
- Loading branch information
Showing
8 changed files
with
107 additions
and
121 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
32 changes: 32 additions & 0 deletions
32
src/main/resources/swagger.api/schemas/instanceContributors.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,32 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"description": "Contributors", | ||
"type": "object", | ||
"properties": { | ||
"name": { | ||
"type": "string", | ||
"description": "Personal name, corporate name, meeting name" | ||
}, | ||
"contributorTypeId": { | ||
"type": "string", | ||
"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", | ||
"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" | ||
] | ||
} |
20 changes: 20 additions & 0 deletions
20
src/main/resources/swagger.api/schemas/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 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"description": "An extensible name-value pairs associated with the resource", | ||
"type": "object", | ||
"properties": { | ||
"value": { | ||
"type": "string", | ||
"description": "Resource identifier value" | ||
}, | ||
"identifierTypeId": { | ||
"type": "string", | ||
"description": "Resource identifier type (e.g. ISBN, ISSN, LCCN, CODEN, Locally defined identifiers)" | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"required": [ | ||
"value", | ||
"identifierTypeId" | ||
] | ||
} |
23 changes: 23 additions & 0 deletions
23
src/main/resources/swagger.api/schemas/instancePublication.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,23 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"description": "Publication items", | ||
"type": "object", | ||
"properties": { | ||
"publisher": { | ||
"type": "string", | ||
"description": "Name of publisher, distributor, etc." | ||
}, | ||
"place": { | ||
"type": "string", | ||
"description": "Place of publication, distribution, etc." | ||
}, | ||
"dateOfPublication": { | ||
"type": "string", | ||
"description": "Date (year YYYY) of publication, distribution, etc." | ||
}, | ||
"role": { | ||
"type": "string", | ||
"description": "The role of the publisher, distributor, etc." | ||
} | ||
} | ||
} |
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
11 changes: 11 additions & 0 deletions
11
src/main/resources/swagger.api/schemas/itemContributorNames.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,11 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"description": "Contributor names", | ||
"type": "object", | ||
"properties": { | ||
"name": { | ||
"description": "The contributor name", | ||
"type": "string" | ||
} | ||
} | ||
} |