Koha/api/v1/swagger/x-primitives.json
Nick Clemens 537ba245ee
Bug 17268: Advanced cataloging editor macros - add endpoint
Signed-off-by: Andrew Fuerste-Henry <andrew@bywatersolutions.com>
Signed-off-by: Heather Hernandez <Heather_Hernandez@nps.gov>
Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
2020-05-04 08:25:21 +01:00

57 lines
1.4 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
},
"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
}
}