-
Notifications
You must be signed in to change notification settings - Fork 24
/
api_bonus.yaml
492 lines (486 loc) · 13.8 KB
/
api_bonus.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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
swagger: '2.0'
info:
version: 7.19.2
title: Bonus vacanze API
host: localhost
basePath: /api/v1
schemes:
- https
security:
- Bearer: []
paths:
/bonus/vacanze/eligibility:
post:
operationId: startBonusEligibilityCheck
summary: Start bonus eligibility check (ISEE)
responses:
'401':
description: Bearer token null or expired.
'404':
description: The feature has been dismissed
schema:
$ref: '#/definitions/ProblemJson'
'500':
description: Service unavailable.
schema:
$ref: '#/definitions/ProblemJson'
get:
operationId: getBonusEligibilityCheck
summary: Get eligibility (ISEE) check information for user's bonus
responses:
'200':
description: Eligibility (ISEE) check information for user's bonus
schema:
$ref: '#/definitions/EligibilityCheck'
'202':
description: Processing request.
'401':
description: Bearer token null or expired.
'404':
description: Request not found.
'410':
description: Request expired
'500':
description: Service unavailable.
schema:
$ref: '#/definitions/ProblemJson'
/bonus/vacanze/activations:
post:
operationId: startBonusActivationProcedure
summary: Start bonus activation request procedure
responses:
'401':
description: Bearer token null or expired.
'404':
description: The feature has been dismissed
'500':
description: Service unavailable.
schema:
$ref: '#/definitions/ProblemJson'
get:
operationId: getAllBonusActivations
summary: |
Get all IDs of the bonus activations requested by
the authenticated user or by any between his family member
responses:
'200':
description: |
List of bonus activations ID belonging to the authenticated user
or to any member of her family (former and actual)
schema:
$ref: '#/definitions/PaginatedBonusActivationsCollection'
'401':
description: Bearer token null or expired.
'500':
description: Service unavailable.
schema:
$ref: '#/definitions/ProblemJson'
/bonus/vacanze/activations/{bonus_id}:
get:
operationId: getLatestBonusActivationById
summary: |
Get the activation details for the latest version
of the bonus entity identified by the provided id
parameters:
- name: bonus_id
in: path
required: true
description: Bonus activation ID.
type: string
responses:
'200':
description: Bonus activation details.
schema:
$ref: '#/definitions/BonusActivationWithQrCode'
'202':
description: Processing request.
schema:
$ref: '#/definitions/InstanceId'
'401':
description: Bearer token null or expired.
'404':
description: No bonus found.
'500':
description: Service unavailable.
schema:
$ref: '#/definitions/ProblemJson'
definitions:
FiscalCode:
type: string
description: User's fiscal code.
format: FiscalCode
x-import: '@pagopa/ts-commons/lib/strings'
example: SPNDNL80R13C555X
InstanceId:
type: object
properties:
id:
type: string
minLength: 1
description: The identifier of the created request.
required:
- id
ProblemJson:
type: object
properties:
type:
type: string
format: uri
description: |-
An absolute URI that identifies the problem type. When dereferenced,
it SHOULD provide human-readable documentation for the problem type
(e.g., using HTML).
default: about:blank
example: https://example.com/problem/constraint-violation
title:
type: string
description: |-
A short, summary of the problem type. Written in english and readable
for engineers (usually not suited for non technical stakeholders and
not localized); example: Service Unavailable
status:
type: integer
format: int32
description: >-
The HTTP status code generated by the origin server for this
occurrence
of the problem.
minimum: 100
maximum: 600
exclusiveMaximum: true
example: 200
detail:
type: string
description: |-
A human readable explanation specific to this occurrence of the
problem.
example: There was an error processing the request
instance:
type: string
format: uri
description: >-
An absolute URI that identifies the specific occurrence of the
problem.
It may or may not yield further information if dereferenced.
FamilyMember:
type: object
properties:
fiscal_code:
type: string
description: User's fiscal code.
format: FiscalCode
x-import: '@pagopa/ts-commons/lib/strings'
example: SPNDNL80R13C555X
name:
type: string
minLength: 1
surname:
type: string
minLength: 1
required:
- fiscal_code
- name
- surname
FamilyMembers:
type: array
items:
$ref: '#/definitions/FamilyMember'
Dsu:
type: object
properties:
family_members:
$ref: '#/definitions/FamilyMembers'
max_amount:
type: integer
max_tax_benefit:
type: integer
request_id:
type: integer
description: IdRichiesta
isee_type:
type: string
description: TipoIndicatoreType
dsu_protocol_id:
type: string
minLength: 1
description: ProtocolloDSU
dsu_created_at:
type: string
format: date
description: DataPresentazioneDSU
has_discrepancies:
type: boolean
description: PresenzaDifformita
required:
- family_members
- max_amount
- max_tax_benefit
- request_id
- isee_type
- dsu_protocol_id
- dsu_created_at
- has_discrepancies
EligibilityCheckSuccess:
x-one-of: true
allOf:
- $ref: '#/definitions/EligibilityCheckSuccessEligible'
- $ref: '#/definitions/EligibilityCheckSuccessConflict'
- $ref: '#/definitions/EligibilityCheckSuccessIneligible'
EligibilityCheckSuccessEligible:
type: object
title: Eligibility check success
description: >
Eligibility check succeeded, we can proceed and send the eligibility
status.
Amounts are left undefined when status is INELIGIBLE
properties:
id:
type: string
minLength: 1
status:
type: string
x-extensible-enum:
- ELIGIBLE
valid_before:
type: string
format: UTCISODateFromString
description: A date-time field in ISO-8601 format and UTC timezone.
x-import: '@pagopa/ts-commons/lib/dates'
example: '2018-10-13T00:00:00.000Z'
dsu_request:
$ref: '#/definitions/Dsu'
required:
- id
- status
- valid_before
- dsu_request
EligibilityCheckSuccessIneligible:
type: object
title: Eligibility check success
description: >
Eligibility check succeeded, we can proceed and send the eligibility
status.
Amounts are left undefined when status is INELIGIBLE
properties:
id:
type: string
minLength: 1
status:
type: string
x-extensible-enum:
- INELIGIBLE
required:
- id
- status
EligibilityCheckSuccessConflict:
type: object
title: |
Eligibility check succeeded but there's already a bonus found
for this set of family members.
properties:
id:
type: string
minLength: 1
status:
type: string
x-extensible-enum:
- CONFLICT
dsu_request:
$ref: '#/definitions/Dsu'
required:
- id
- status
- dsu_request
EligibilityCheckFailure:
type: object
title: Eligibility check failure
description: Eligibility check failed because of some INPS internal error
properties:
id:
type: string
minLength: 1
error:
type: string
description: |
- INVALID_REQUEST Request malformed
- INTERNAL_ERROR Caller must retry after some timeout
- DATA_NOT_FOUND ISEE data not found in INPS database
- DATABASE_OFFLINE Caller must retry after some timeout
x-extensible-enum:
- INVALID_REQUEST
- INTERNAL_ERROR
- DATA_NOT_FOUND
- DATABASE_OFFLINE
error_description:
type: string
status:
type: string
x-extensible-enum:
- FAILURE
required:
- id
- error
- error_description
- status
EligibilityCheck:
title: Eligibility check
description: Eligibility check
x-one-of: true
allOf:
- $ref: '#/definitions/EligibilityCheckSuccess'
- $ref: '#/definitions/EligibilityCheckFailure'
BonusActivationStatus:
type: string
description: >
Bonus activation status.
- PROCESSING The bonus activation has started;
this status is only needed when listing bonus id
and does not appear in the bonus details
since the request will return HTTP 202 in that case
- ACTIVE The bonus has been successfully activated;
the bonus activtion procedure can't be restarted anymore
- FAILED The bonus activation procedure failed and can be restarted
- REDEEMED The bonus is redeemed by the user or by any member of the
family;
the bonus activtion procedure can't be restarted anymore
x-extensible-enum:
- PROCESSING
- ACTIVE
- FAILED
- REDEEMED
BonusCode:
description: The unique secret code that identifies a bonus
type: string
minLength: 12
maxLength: 12
pattern: ^[ACEFGHLMNPRUV3469]{12}$
BonusActivation:
type: object
title: Bonus activation
description: Bonus activation
properties:
id:
$ref: '#/definitions/BonusCode'
applicant_fiscal_code:
type: string
description: User's fiscal code.
format: FiscalCode
x-import: '@pagopa/ts-commons/lib/strings'
example: SPNDNL80R13C555X
status:
$ref: '#/definitions/BonusActivationStatus'
dsu_request:
$ref: '#/definitions/Dsu'
created_at:
type: string
format: UTCISODateFromString
description: A date-time field in ISO-8601 format and UTC timezone.
x-import: '@pagopa/ts-commons/lib/dates'
example: '2018-10-13T00:00:00.000Z'
redeemed_at:
type: string
format: UTCISODateFromString
description: A date-time field in ISO-8601 format and UTC timezone.
x-import: '@pagopa/ts-commons/lib/dates'
example: '2018-10-13T00:00:00.000Z'
required:
- id
- applicant_fiscal_code
- status
- dsu_request
- created_at
Timestamp:
type: string
format: UTCISODateFromString
description: A date-time field in ISO-8601 format and UTC timezone.
x-import: '@pagopa/ts-commons/lib/dates'
example: '2018-10-13T00:00:00.000Z'
BonusActivationItem:
type: object
properties:
id:
$ref: '#/definitions/BonusCode'
is_applicant:
type: boolean
description: |
True in case the authenticated user is the applicant for
the bonus activation identified by the id
required:
- id
- is_applicant
BonusActivationCollection:
type: object
properties:
items:
type: array
items:
$ref: '#/definitions/BonusActivationItem'
required:
- items
PaginationResponse:
type: object
description: Pagination response parameters.
properties:
page_size:
type: integer
minimum: 1
description: Number of items returned for each page.
example: 2
has_more_results:
type: boolean
description: This value indicates if there are more results.
example: true
prev:
type: string
description: Contains a value useful to get the previous page
example: first_id_of_the_page
next:
type: string
description: Contains a value useful to get the next page
example: last_id_of_the_page
PaginatedBonusActivationsCollection:
allOf:
- $ref: '#/definitions/BonusActivationCollection'
- type: object
description: Pagination response parameters.
properties:
page_size:
type: integer
minimum: 1
description: Number of items returned for each page.
example: 2
next:
type: string
description: |-
Contains an URL to GET the next results page in the
retrieved collection of items.
format: uri
example: https://example.com/?p=0XXX2
QrCodeImage:
type: object
properties:
content:
type: string
mime_type:
type: string
required:
- content
- mime_type
QrCode:
type: object
properties:
qr_code:
type: array
items:
$ref: '#/definitions/QrCodeImage'
required:
- qr_code
BonusActivationWithQrCode:
allOf:
- $ref: '#/definitions/BonusActivation'
- $ref: '#/definitions/QrCode'
securityDefinitions:
Bearer:
type: apiKey
name: Authorization
in: header