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