|
Line 0
Link Here
|
|
|
1 |
{ |
| 2 |
"type": "object", |
| 3 |
"properties": { |
| 4 |
"itemtype": { |
| 5 |
"description": "unique key identifying itemtype", |
| 6 |
"type": "string" |
| 7 |
}, |
| 8 |
"description": { |
| 9 |
"description": "a plain text explanation of the item type", |
| 10 |
"type": ["string", "null"] |
| 11 |
}, |
| 12 |
"rentalcharge": { |
| 13 |
"description": "the amount charged when this item is checked out/issued", |
| 14 |
"type": ["string", "null"] |
| 15 |
}, |
| 16 |
"notforloan": { |
| 17 |
"description": "1 if the item is not for loan, 0 if the item is available for loan", |
| 18 |
"type": ["string", "null"] |
| 19 |
}, |
| 20 |
"imageurl": { |
| 21 |
"description": "URL for the item type icon", |
| 22 |
"type": ["string", "null"] |
| 23 |
}, |
| 24 |
"summary": { |
| 25 |
"description": "information from the summary field, may include HTML", |
| 26 |
"type": ["string", "null"] |
| 27 |
}, |
| 28 |
"checkinmsg": { |
| 29 |
"description": "message that is displayed when an item with the given item type is checked in", |
| 30 |
"type": ["string", "null"] |
| 31 |
}, |
| 32 |
"checkinmsgtype": { |
| 33 |
"description": "type (CSS class) for the checkinmsg, can be 'alert' or 'message'", |
| 34 |
"type": ["string", "null"] |
| 35 |
}, |
| 36 |
"sip_media_type": { |
| 37 |
"description": "SIP2 protocol media type for this itemtype", |
| 38 |
"type": ["string", "null"] |
| 39 |
}, |
| 40 |
"hideinopac": { |
| 41 |
"description": "Hide the item type from the search options in OPAC", |
| 42 |
"type": "string" |
| 43 |
}, |
| 44 |
"searchcategory": { |
| 45 |
"description": "Group this item type with others with the same value on OPAC search options", |
| 46 |
"type": ["string", "null"] |
| 47 |
} |
| 48 |
}, |
| 49 |
"additionalProperties": false, |
| 50 |
"required": ["itemtype"] |
| 51 |
} |