Kyle M Hall
8aec8a8021
Test Plan: 1) prove t/db_dependent/api/v1/transfer_limits.t Signed-off-by: Lisette Scheer <lisettes@latahlibrary.org> Signed-off-by: Lisette Scheer <lisettes@latahlibrary.org> Signed-off-by: Lisette Scheer <lisettes@latahlibrary.org> Signed-off-by: Lisette Scheer <lisettes@latahlibrary.org> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Bug 26633: Convert transfer_limit.json to YAML Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
65 lines
1.6 KiB
JSON
65 lines
1.6 KiB
JSON
{
|
|
"biblio_id": {
|
|
"type": "integer",
|
|
"description": "Internal biblio identifier"
|
|
},
|
|
"advancededitormacro_id": {
|
|
"type": "integer",
|
|
"description": "Internal advanced editor macro identifier",
|
|
"readOnly": true
|
|
},
|
|
"patron_id": {
|
|
"type": "integer",
|
|
"description": "Internal patron identifier"
|
|
},
|
|
"library_id": {
|
|
"type": "string",
|
|
"description": "internally assigned library identifier",
|
|
"maxLength": 10,
|
|
"minLength": 1
|
|
},
|
|
"limit_id": {
|
|
"type": "integer",
|
|
"description": "Internal transfer limit 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"
|
|
},
|
|
"phone": {
|
|
"type": ["string", "null"],
|
|
"description": "primary phone number for patron's primary address"
|
|
},
|
|
"surname": {
|
|
"type": ["string", "null"],
|
|
"description": "patron's last name"
|
|
},
|
|
"vendor_id": {
|
|
"type": "integer",
|
|
"description": "internally assigned vendor identifier",
|
|
"readOnly": true
|
|
},
|
|
"fund_id": {
|
|
"type": "integer",
|
|
"description": "internally assigned fund identifier",
|
|
"readOnly": true
|
|
},
|
|
"quote_id": {
|
|
"type": "integer",
|
|
"description": "internally assigned quote identifier",
|
|
"readOnly": true
|
|
}
|
|
}
|