-
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.
[MODPATRON-165]-Added POST api for external patron. (#140)
* [MODPATRON-165]-Added POST api for external patron. * [MODPATRON-165]-Added POST api for external patron. * [MODPATRON-165]-Added POST api for external patron. * [MODPATRON-165]-Added POST api for external patron. * [MODPATRON-165]-Added POST api for external patron. * [MODPATRON-165]-Added POST api for external patron. * [MODPATRON-165]-Added POST api for external patron. * [MODPATRON-165]-Added POST api for external patron. * [MODPATRON-165]-Added POST api for external patron. * [MODPATRON-165]-Added POST api for external patron.
- Loading branch information
Showing
21 changed files
with
1,340 additions
and
15 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
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 external patron information including general info, addresses, contact info", | ||
"type": "object", | ||
"properties": { | ||
"generalInfo": { | ||
"type": "object", | ||
"description": "General info of external patron", | ||
"properties": { | ||
"externalSystemId": { | ||
"type": "string", | ||
"description": "A unique ID that corresponds to an external authority" | ||
}, | ||
"firstName": { | ||
"type": "string", | ||
"description": "The external patron's given name" | ||
}, | ||
"preferredFirstName": { | ||
"type": "string", | ||
"description": "The user's preferred name" | ||
}, | ||
"middleName": { | ||
"type": "string", | ||
"description": "The external patron's middle name (if any)" | ||
}, | ||
"lastName": { | ||
"type": "string", | ||
"description": "The external patron's surname" | ||
} | ||
}, | ||
"required": ["externalSystemId", "firstName", "lastName"], | ||
"additionalProperties": false | ||
}, | ||
"address0": { | ||
"type": "object", | ||
"description": "Primary address info of external 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 external 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 external 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 external 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
Oops, something went wrong.