-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
EDGPATRON-160 - Updated raml pieces (#139)
* [EDGPATRON-160] - Add put API for /patron/{externalSystemId} * [EDGPATRON-160] - Add put API for /patron/{externalSystemId} * [EDGPATRON-160] - Add put API for /patron/{externalSystemId} * [EDGPATRON-160] - Add put API for /patron/{externalSystemId} * [EDGPATRON-160] - Add put API for /patron/{externalSystemId} * [EDGPATRON-160] - Add put API for /patron/{externalSystemId} * [EDGPATRON-160] - Add put API for /patron/{externalSystemId} * [EDGPATRON-160] - Add put API for /patron/{externalSystemId} * [EDGPATRON-160] - Add put API for /patron/{externalSystemId} * [EDGPATRON-160] - Add put API for /patron/{externalSystemId} * [EDGPATRON-160] - Add put API for /patron/{externalSystemId} * [EDGPATRON-160] - Add put API for /patron/{externalSystemId} * [EDGPATRON-160] - Add put API for /patron/{externalSystemId} * [EDGPATRON-160] - Add put API for /patron/{externalSystemId} * [EDGPATRON-160] - Add put API for /patron/{externalSystemId} * [EDGPATRON-160] - Add put API for /patron/{externalSystemId}
- Loading branch information
1 parent
1299b03
commit 9f934cb
Showing
6 changed files
with
41 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
"requires": [ | ||
{ | ||
"id": "patron", | ||
"version": "6.0" | ||
"version": "6.3" | ||
}, | ||
{ | ||
"id": "circulation", | ||
|
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,4 @@ | ||
{ | ||
"code": "STAGING_USER_NOT_FOUND", | ||
"errorMessage": "Staging user does not exist" | ||
} |
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,26 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"id": "external_patron_error.schema", | ||
"description": "An external_patron user error", | ||
"type": "object", | ||
"properties": { | ||
"code": { | ||
"type": "string", | ||
"description": "Error code" | ||
}, | ||
"errorMessage": { | ||
"type": "string", | ||
"description": "Error message text", | ||
"examples": [ | ||
{ | ||
"code": "STAGING_USER_NOT_FOUND", | ||
"errorMessage": "Staging user does not exist" | ||
} | ||
] | ||
} | ||
}, | ||
"required": [ | ||
"code", | ||
"errorMessage" | ||
] | ||
} |
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