Tomas Cohen Arazi
a7e46047cf
This patch introduces two functions to the patrons endpoint: - _to_api - _to_model This are in charge of field mappings in order to comply with the guidelines. Koha::REST::V1:Auth is adjusted to handle 'patron_id' as well. 'borrowernumber' handling is kept until the existing endpoints get updated. To test: - Apply the patches - Run: $ kshell k$ prove t/db_dependent/api/v1/*.t => SUCCESS: Tests pass! - Sign off :-D Signed-off-by: Josef Moravec <josef.moravec@gmail.com> Signed-off-by: Nick Clemens <nick@bywatersolutions.com> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
48 lines
1.2 KiB
JSON
48 lines
1.2 KiB
JSON
{
|
|
"biblionumber": {
|
|
"type": "integer",
|
|
"description": "internally assigned biblio identifier"
|
|
},
|
|
"patron_id": {
|
|
"type": "integer",
|
|
"description": "Internal patron identifier"
|
|
},
|
|
"cardnumber": {
|
|
"type": ["string", "null"],
|
|
"description": "library assigned user identifier"
|
|
},
|
|
"city_id": {
|
|
"type": "integer",
|
|
"description": "internally assigned city identifier",
|
|
"readOnly": true
|
|
},
|
|
"email": {
|
|
"type": ["string", "null"],
|
|
"description": "primary email address for patron's primary address"
|
|
},
|
|
"firstname": {
|
|
"type": ["string", "null"],
|
|
"description": "patron's first name"
|
|
},
|
|
"itemnumber": {
|
|
"type": ["integer", "null"],
|
|
"description": "internally assigned item identifier"
|
|
},
|
|
"phone": {
|
|
"type": ["string", "null"],
|
|
"description": "primary phone number for patron's primary address"
|
|
},
|
|
"reserve_id": {
|
|
"type": "integer",
|
|
"description": "Internal hold identifier"
|
|
},
|
|
"surname": {
|
|
"type": "string",
|
|
"description": "patron's last name"
|
|
},
|
|
"vendor_id": {
|
|
"type": "integer",
|
|
"description": "internally assigned vendor identifier",
|
|
"readOnly": true
|
|
}
|
|
}
|