Line 0
Link Here
|
|
|
1 |
{ |
2 |
"type": "object", |
3 |
"properties": { |
4 |
"itemnumber": { |
5 |
"type": "string", |
6 |
"description": "internally assigned item identifier" |
7 |
}, |
8 |
"biblionumber": { |
9 |
"type": "string", |
10 |
"description": "internally assigned biblio identifier" |
11 |
}, |
12 |
"biblioitemnumber": { |
13 |
"type": "string", |
14 |
"description": "internally assigned biblio item identifier" |
15 |
}, |
16 |
"barcode": { |
17 |
"type": ["string", "null"], |
18 |
"description": "item barcode" |
19 |
}, |
20 |
"dateaccessioned": { |
21 |
"type": ["string", "null"], |
22 |
"description": "date the item was acquired or added to Koha" |
23 |
}, |
24 |
"booksellerid": { |
25 |
"type": ["string", "null"], |
26 |
"description": "where the item was purchased" |
27 |
}, |
28 |
"homebranch": { |
29 |
"type": ["string", "null"], |
30 |
"description": "library that owns this item" |
31 |
}, |
32 |
"price": { |
33 |
"type": ["string", "null"], |
34 |
"description": "purchase price" |
35 |
}, |
36 |
"replacementprice": { |
37 |
"type": ["string", "null"], |
38 |
"description": "cost the library charges to replace the item if it has been marked lost" |
39 |
}, |
40 |
"replacementpricedate": { |
41 |
"type": ["string", "null"], |
42 |
"description": "the date the price is effective from" |
43 |
}, |
44 |
"datelastborrowed": { |
45 |
"type": ["string", "null"], |
46 |
"description": "the date the item was last checked out/issued" |
47 |
}, |
48 |
"datelastseen": { |
49 |
"type": ["string", "null"], |
50 |
"description": "the date the item was last see (usually the last time the barcode was scanned or inventory was done)" |
51 |
}, |
52 |
"stack": { |
53 |
"type": ["string", "null"], |
54 |
"description": "?" |
55 |
}, |
56 |
"notforloan": { |
57 |
"type": "string", |
58 |
"description": "authorized value defining why this item is not for loan" |
59 |
}, |
60 |
"damaged": { |
61 |
"type": "string", |
62 |
"description": "authorized value defining this item as damaged" |
63 |
}, |
64 |
"itemlost": { |
65 |
"type": "string", |
66 |
"description": "authorized value defining this item as lost" |
67 |
}, |
68 |
"itemlost_on": { |
69 |
"type": ["string", "null"], |
70 |
"description": "the date and time an item was last marked as lost, NULL if not lost" |
71 |
}, |
72 |
"withdrawn": { |
73 |
"type": "string", |
74 |
"description": "authorized value defining this item as withdrawn" |
75 |
}, |
76 |
"withdrawn_on": { |
77 |
"type": ["string", "null"], |
78 |
"description": "the date and time an item was last marked as withdrawn, NULL if not withdrawn" |
79 |
}, |
80 |
"itemcallnumber": { |
81 |
"type": ["string", "null"], |
82 |
"description": "call number for this item" |
83 |
}, |
84 |
"coded_location_qualifier": { |
85 |
"type": ["string", "null"], |
86 |
"description": "coded location qualifier" |
87 |
}, |
88 |
"issues": { |
89 |
"type": ["string", "null"], |
90 |
"description": "number of times this item has been checked out/issued" |
91 |
}, |
92 |
"renewals": { |
93 |
"type": ["string", "null"], |
94 |
"description": "number of times this item has been renewed" |
95 |
}, |
96 |
"reserves": { |
97 |
"type": ["string", "null"], |
98 |
"description": "number of times this item has been placed on hold/reserved" |
99 |
}, |
100 |
"restricted": { |
101 |
"type": ["string", "null"], |
102 |
"description": "authorized value defining use restrictions for this item" |
103 |
}, |
104 |
"itemnotes": { |
105 |
"type": ["string", "null"], |
106 |
"description": "public notes on this item" |
107 |
}, |
108 |
"itemnotes_nonpublic": { |
109 |
"type": ["string", "null"], |
110 |
"description": "non-public notes on this item" |
111 |
}, |
112 |
"holdingbranch": { |
113 |
"type": ["string", "null"], |
114 |
"description": "library that is currently in possession item" |
115 |
}, |
116 |
"paidfor": { |
117 |
"type": ["string", "null"], |
118 |
"description": "?" |
119 |
}, |
120 |
"timestamp": { |
121 |
"type": "string", |
122 |
"description": "date and time this item was last altered" |
123 |
}, |
124 |
"location": { |
125 |
"type": ["string", "null"], |
126 |
"description": "authorized value for the shelving location for this item" |
127 |
}, |
128 |
"permanent_location": { |
129 |
"type": ["string", "null"], |
130 |
"description": "linked to the CART and PROC temporary locations feature, stores the permanent shelving location" |
131 |
}, |
132 |
"onloan": { |
133 |
"type": ["string", "null"], |
134 |
"description": "defines if item is checked out (NULL for not checked out, and checkout date for checked out)" |
135 |
}, |
136 |
"cn_source": { |
137 |
"type": ["string", "null"], |
138 |
"description": "classification source used on this item" |
139 |
}, |
140 |
"cn_sort": { |
141 |
"type": ["string", "null"], |
142 |
"description": "?" |
143 |
}, |
144 |
"ccode": { |
145 |
"type": ["string", "null"], |
146 |
"description": "authorized value for the collection code associated with this item" |
147 |
}, |
148 |
"materials": { |
149 |
"type": ["string", "null"], |
150 |
"description": "materials specified" |
151 |
}, |
152 |
"uri": { |
153 |
"type": ["string", "null"], |
154 |
"description": "URL for the item" |
155 |
}, |
156 |
"itype": { |
157 |
"type": ["string", "null"], |
158 |
"description": "itemtype defining the type for this item" |
159 |
}, |
160 |
"more_subfields_xml": { |
161 |
"type": ["string", "null"], |
162 |
"description": "additional 952 subfields in XML format" |
163 |
}, |
164 |
"enumchron": { |
165 |
"type": ["string", "null"], |
166 |
"description": "serial enumeration/chronology for the item" |
167 |
}, |
168 |
"copynumber": { |
169 |
"type": ["string", "null"], |
170 |
"description": "copy number" |
171 |
}, |
172 |
"stocknumber": { |
173 |
"type": ["string", "null"], |
174 |
"description": "inventory number" |
175 |
} |
176 |
} |
177 |
} |