Lines 2-21
Link Here
|
2 |
"type": "object", |
2 |
"type": "object", |
3 |
"properties": { |
3 |
"properties": { |
4 |
"borrowernumber": { |
4 |
"borrowernumber": { |
5 |
"type": "string", |
5 |
"$ref": "../x-primitives.json#/borrowernumber" |
6 |
"description": "internally assigned user identifier" |
|
|
7 |
}, |
6 |
}, |
8 |
"cardnumber": { |
7 |
"cardnumber": { |
9 |
"type": ["string", "null"], |
8 |
"$ref": "../x-primitives.json#/cardnumber" |
10 |
"description": "library assigned user identifier" |
|
|
11 |
}, |
9 |
}, |
12 |
"surname": { |
10 |
"surname": { |
13 |
"type": "string", |
11 |
"$ref": "../x-primitives.json#/surname" |
14 |
"description": "patron's last name" |
|
|
15 |
}, |
12 |
}, |
16 |
"firstname": { |
13 |
"firstname": { |
17 |
"type": ["string", "null"], |
14 |
"$ref": "../x-primitives.json#/firstname" |
18 |
"description": "patron's first name" |
|
|
19 |
}, |
15 |
}, |
20 |
"title": { |
16 |
"title": { |
21 |
"type": ["string", "null"], |
17 |
"type": ["string", "null"], |
Lines 62-73
Link Here
|
62 |
"description": "country of patron's primary address" |
58 |
"description": "country of patron's primary address" |
63 |
}, |
59 |
}, |
64 |
"email": { |
60 |
"email": { |
65 |
"type": ["string", "null"], |
61 |
"$ref": "../x-primitives.json#/email" |
66 |
"description": "primary email address for patron's primary address" |
|
|
67 |
}, |
62 |
}, |
68 |
"phone": { |
63 |
"phone": { |
69 |
"type": ["string", "null"], |
64 |
"$ref": "../x-primitives.json#/phone" |
70 |
"description": "primary phone number for patron's primary address" |
|
|
71 |
}, |
65 |
}, |
72 |
"mobile": { |
66 |
"mobile": { |
73 |
"type": ["string", "null"], |
67 |
"type": ["string", "null"], |
Lines 130-137
Link Here
|
130 |
"description": "patron's date of birth" |
124 |
"description": "patron's date of birth" |
131 |
}, |
125 |
}, |
132 |
"branchcode": { |
126 |
"branchcode": { |
133 |
"type": "string", |
127 |
"$ref": "../x-primitives.json#/branchcode" |
134 |
"description": "code of patron's home branch" |
|
|
135 |
}, |
128 |
}, |
136 |
"categorycode": { |
129 |
"categorycode": { |
137 |
"type": "string", |
130 |
"type": "string", |
138 |
- |
|
|