-
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.
Merge pull request #113 from folio-org/EDGEPATRON-131
[EDGEPATRON-131]-Added POST edge api for LOC patron
- Loading branch information
Showing
11 changed files
with
500 additions
and
8 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": "4.2 5.1" | ||
"version": "4.2 5.2" | ||
}, | ||
{ | ||
"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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"generalInfo": { | ||
"externalSystemId": "ext-123456", | ||
"firstName": "John", | ||
"preferredFirstName": "Johnny", | ||
"middleName": "M", | ||
"lastName": "Doe" | ||
}, | ||
"address0": { | ||
"addressLine0": "123 Main St", | ||
"addressLine1": "Apt 4B", | ||
"city": "Metropolis", | ||
"province": "NY", | ||
"zip": "12345", | ||
"country": "USA" | ||
}, | ||
"address1": { | ||
"addressLine0": "456 Side St", | ||
"addressLine1": "Suite 500", | ||
"city": "Metropolis", | ||
"province": "NY", | ||
"zip": "12346", | ||
"country": "USA" | ||
}, | ||
"contactInfo": { | ||
"phone": "555-1234", | ||
"mobilePhone": "555-5678", | ||
"email": "[email protected]" | ||
}, | ||
"preferredEmailCommunication": ["Support", "Programs"] | ||
} |
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,135 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"title": "User Information Schema", | ||
"description": "Schema for user information including general info, addresses, contact info", | ||
"type": "object", | ||
"properties": { | ||
"generalInfo": { | ||
"type": "object", | ||
"description": "General info of patron", | ||
"properties": { | ||
"externalSystemId": { | ||
"type": "string", | ||
"description": "A unique ID that corresponds to an external authority" | ||
}, | ||
"firstName": { | ||
"type": "string", | ||
"description": "The user's given name" | ||
}, | ||
"preferredFirstName": { | ||
"type": "string", | ||
"description": "The user's preferred name" | ||
}, | ||
"middleName": { | ||
"type": "string", | ||
"description": "The user's middle name (if any)" | ||
}, | ||
"lastName": { | ||
"type": "string", | ||
"description": "The user's surname" | ||
} | ||
}, | ||
"required": ["externalSystemId", "firstName", "lastName"], | ||
"additionalProperties": false | ||
}, | ||
"address0": { | ||
"type": "object", | ||
"description": "Primary address info of patron", | ||
"properties": { | ||
"addressLine0": { | ||
"type": "string", | ||
"description": "Address, Line 0" | ||
}, | ||
"addressLine1": { | ||
"type": "string", | ||
"description": "Address, Line 1" | ||
}, | ||
"city": { | ||
"type": "string", | ||
"description": "City name" | ||
}, | ||
"province": { | ||
"type": "string", | ||
"description": "Province" | ||
}, | ||
"zip": { | ||
"type": "string", | ||
"description": "Zip Code" | ||
}, | ||
"country": { | ||
"type": "string", | ||
"description": "Country" | ||
} | ||
}, | ||
"required": ["addressLine0", "city", "province", "zip", "country"], | ||
"additionalProperties": false | ||
}, | ||
"address1": { | ||
"type": "object", | ||
"description": "Secondary address info of patron", | ||
"properties": { | ||
"addressLine0": { | ||
"type": "string", | ||
"description": "Address, Line 0" | ||
}, | ||
"addressLine1": { | ||
"type": "string", | ||
"description": "Address, Line 1" | ||
}, | ||
"city": { | ||
"type": "string", | ||
"description": "City name" | ||
}, | ||
"province": { | ||
"type": "string", | ||
"description": "Province" | ||
}, | ||
"zip": { | ||
"type": "string", | ||
"description": "Zip Code" | ||
}, | ||
"country": { | ||
"type": "string", | ||
"description": "Country" | ||
} | ||
}, | ||
"required": ["addressLine0", "city", "province", "zip", "country"], | ||
"additionalProperties": false | ||
}, | ||
"contactInfo": { | ||
"type": "object", | ||
"description": "Contact info of patron", | ||
"properties": { | ||
"phone": { | ||
"type": "string", | ||
"description": "The user's primary phone number" | ||
}, | ||
"mobilePhone": { | ||
"type": "string", | ||
"description": "The user's mobile phone number" | ||
}, | ||
"email": { | ||
"type": "string", | ||
"description": "The user's email address", | ||
"format": "email" | ||
} | ||
}, | ||
"required": ["email"], | ||
"additionalProperties": false | ||
}, | ||
"preferredEmailCommunication": { | ||
"type": "array", | ||
"description": "Email communication info of patron", | ||
"items": { | ||
"type": "string", | ||
"enum": ["Support", "Programs", "Service"] | ||
}, | ||
"minItems": 1, | ||
"maxItems": 3, | ||
"uniqueItems": true, | ||
"description": "Preferred email communication types" | ||
} | ||
}, | ||
"required": ["generalInfo", "address0", "contactInfo", "preferredEmailCommunication"], | ||
"additionalProperties": false | ||
} |
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
Oops, something went wrong.