Main Koha release repository https://koha-community.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

54 lines
1.3 KiB

{
"biblionumber": {
"type": "integer",
"description": "internally assigned biblio identifier"
},
"patron_id": {
"type": "integer",
"description": "Internal patron identifier"
},
"library_id": {
"type": "string",
"description": "internally assigned library identifier",
"maxLength": 10,
"minLength": 1
},
"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
}
}