forked from opacapp/libopac-sample-gradle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
swagger.yaml
244 lines (237 loc) · 5.62 KB
/
swagger.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
swagger: '2.0'
info:
description: This is the web version of the libopac Java library
version: 0.1.0
title: libopac-web-api
contact:
email: [email protected]
host: berlin.codefor.de
basePath: /
tags:
- name: media_data
description: Information about things to borrow from the libraries
schemes:
- https
paths:
'/libraries/{libraryName}/search':
get:
tags:
- media_data
summary: Search for media - libopac style
description: Search for media - structured after libopac
produces:
- application/json
parameters:
- name: libraryName
in: path
description: ID of the library
required: true
type: string
- name: title
in: query
description: Title
required: false
type: string
- name: author
in: query
description: Author
required: false
type: string
- name: isbn
in: query
description: ISBN
required: false
type: string
responses:
'200':
description: successful operation
schema:
$ref: '#/definitions/RawResult'
'400':
description: Invalid tag value
'/libraries/{libraryName}/{isbn}':
get:
tags:
- media_data
summary: Retrieve information by ISBN10 or ISBN13
description: Record Details Endpoint structured after libraryextension
produces:
- application/json
parameters:
- name: libraryName
in: path
description: ID of the library
required: true
type: string
- name: isbn
in: path
description: ISBN of the book
required: true
type: string
responses:
'200':
description: successful operation
schema:
$ref: '#/definitions/RecordDetails'
'400':
description: Invalid input
'/libraries/{libraryName}/catalog/search':
get:
tags:
- media_data
summary: Search for media - libraryextension style
description: Search for media - structured after libraryextension
produces:
- application/json
parameters:
- name: libraryName
in: path
description: ID of the library
required: true
type: string
- name: searchTerm
in: query
description: The Name of the Field in which to search
required: true
type: string
enum:
- ISBN
- ISBN13
- Title
- name: term
in: query
description: The string to search for
required: true
type: string
responses:
'200':
description: successful operation
schema:
$ref: '#/definitions/StructuredResponse'
'400':
description: Invalid input
'/libraries/{libraryName}/record/{id}':
get:
tags:
- media_data
summary: Retrieve book by id - libraryextension style
produces:
- application/json
parameters:
- name: libraryName
in: path
description: ID of the library
required: true
type: string
- name: id
in: path
description: ID of the media
required: true
type: string
responses:
'200':
description: successful operation
schema:
$ref: '#/definitions/Details'
'400':
description: Invalid input
'/libraries/{libraryName}/record/branches/{id}':
get:
tags:
- media_data
summary: Availability Endpoint
produces:
- application/json
parameters:
- name: libraryName
in: path
description: ID of the library
required: true
type: string
- name: id
in: path
description: ID of the media
required: true
type: string
responses:
'200':
description: successful operation
schema:
$ref: '#/definitions/Availability'
'400':
description: Invalid input
definitions:
RawResult:
type: object
properties:
type:
type: string
nr:
type: number
id:
type: string
innerhtml:
type: string
status:
type: string
enum:
- GREEN
- RED
coverBitmap:
type: string
page:
type: number
childquery:
type: string
StructuredResponse:
type: object
properties:
id:
type: string
infoHtml:
type: string
format:
type: string
Details:
type: object
properties:
details:
$ref: '#/definitions/Details1'
Details1:
type: object
properties:
total_copies:
type: integer
example: 1
available_copies:
type: integer
example: 1
branches:
type: array
items:
type: string
example: "ZB Grimm-Zentrum"
Availability:
type: object
properties:
branches:
type: array
items:
type: string
example: "ZB Grimm-Zentrum"
RecordDetail:
type: object
properties:
description:
type: string
example: <b>Der Weg des Bogens</b><br />Coelho, Paulo<br />2017
availability:
type: string
example: RESTRICTED
RecordDetails:
type: object
properties:
items:
type: array
items:
$ref: '#/definitions/RecordDetail'