|
Line 0
Link Here
|
| 0 |
- |
1 |
{ |
|
|
2 |
"/topissues": { |
| 3 |
"get": { |
| 4 |
"x-mojo-to": "TopIssues#list", |
| 5 |
"operationId": "listTopIssues", |
| 6 |
"tags": ["issues"], |
| 7 |
"parameters": [ |
| 8 |
{ |
| 9 |
"name": "count", |
| 10 |
"in": "query", |
| 11 |
"type": "integer", |
| 12 |
"minimum": 1, |
| 13 |
"description": "Number of titles to retrieve" |
| 14 |
}, |
| 15 |
{ |
| 16 |
"name": "branch", |
| 17 |
"in": "query", |
| 18 |
"type": "string", |
| 19 |
"description": "Filter by branch code" |
| 20 |
}, |
| 21 |
{ |
| 22 |
"name": "itemtype", |
| 23 |
"in": "query", |
| 24 |
"type": "string", |
| 25 |
"description": "Filter by item type" |
| 26 |
}, |
| 27 |
{ |
| 28 |
"name": "ccode", |
| 29 |
"in": "query", |
| 30 |
"type": "string", |
| 31 |
"description": "Filter by collection code" |
| 32 |
}, |
| 33 |
{ |
| 34 |
"name": "newness", |
| 35 |
"in": "query", |
| 36 |
"type": "integer", |
| 37 |
"minimum": 1, |
| 38 |
"description": "Filter by newness (in days)" |
| 39 |
} |
| 40 |
], |
| 41 |
"produces": [ |
| 42 |
"application/json" |
| 43 |
], |
| 44 |
"responses": { |
| 45 |
"200": { |
| 46 |
"description": "A borrower", |
| 47 |
"schema": { |
| 48 |
"type": "array", |
| 49 |
"items": { |
| 50 |
"type": "object", |
| 51 |
"properties": { |
| 52 |
"count": { |
| 53 |
"description": "Number of issues for this title" |
| 54 |
}, |
| 55 |
"copyrightdate": { |
| 56 |
"description": "Copyright date" |
| 57 |
}, |
| 58 |
"ccode": { |
| 59 |
"description": "Collection code" |
| 60 |
}, |
| 61 |
"itemtype": { |
| 62 |
"description": "Item type" |
| 63 |
}, |
| 64 |
"place": { |
| 65 |
"description": "Publication place" |
| 66 |
}, |
| 67 |
"author": { |
| 68 |
"description": "Author" |
| 69 |
}, |
| 70 |
"size": { |
| 71 |
"description": "Material size" |
| 72 |
}, |
| 73 |
"biblionumber": { |
| 74 |
"description": "Biblio internal identifier" |
| 75 |
}, |
| 76 |
"title": { |
| 77 |
"description": "Title" |
| 78 |
}, |
| 79 |
"publicationyear": { |
| 80 |
"description": "Publication year" |
| 81 |
}, |
| 82 |
"publishercode": { |
| 83 |
"description": "Publisher code" |
| 84 |
}, |
| 85 |
"pages": { |
| 86 |
"description": "Number of pages" |
| 87 |
} |
| 88 |
} |
| 89 |
} |
| 90 |
} |
| 91 |
} |
| 92 |
} |
| 93 |
} |
| 94 |
} |
| 95 |
} |