airbyte-source-kyriba 0.1.0__py3-none-any.whl → 0.1.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. airbyte_source_kyriba-0.1.3.dist-info/METADATA +110 -0
  2. airbyte_source_kyriba-0.1.3.dist-info/RECORD +15 -0
  3. {airbyte_source_kyriba-0.1.0.dist-info → airbyte_source_kyriba-0.1.3.dist-info}/WHEEL +1 -2
  4. airbyte_source_kyriba-0.1.3.dist-info/entry_points.txt +3 -0
  5. source_kyriba/schemas/accounts.json +174 -289
  6. source_kyriba/schemas/bank_balances_eod.json +20 -38
  7. source_kyriba/schemas/bank_balances_intraday.json +21 -32
  8. source_kyriba/schemas/cash_balances_eod.json +36 -58
  9. source_kyriba/schemas/cash_balances_intraday.json +29 -57
  10. source_kyriba/schemas/cash_flows.json +25 -47
  11. source_kyriba/schemas/shared/_definitions.json +146 -333
  12. source_kyriba/source.py +9 -3
  13. source_kyriba/spec.json +9 -5
  14. airbyte_source_kyriba-0.1.0.dist-info/METADATA +0 -99
  15. airbyte_source_kyriba-0.1.0.dist-info/RECORD +0 -31
  16. airbyte_source_kyriba-0.1.0.dist-info/entry_points.txt +0 -2
  17. airbyte_source_kyriba-0.1.0.dist-info/top_level.txt +0 -3
  18. integration_tests/__init__.py +0 -3
  19. integration_tests/abnormal_state.json +0 -1
  20. integration_tests/acceptance.py +0 -16
  21. integration_tests/configured_catalog.json +0 -74
  22. integration_tests/invalid_config.json +0 -7
  23. integration_tests/sample_config.json +0 -7
  24. integration_tests/sample_state.json +0 -1
  25. unit_tests/__init__.py +0 -3
  26. unit_tests/test_account_sub_stream.py +0 -37
  27. unit_tests/test_bank_balances_stream.py +0 -77
  28. unit_tests/test_cash_balances_stream.py +0 -77
  29. unit_tests/test_cash_flows.py +0 -100
  30. unit_tests/test_incremental_streams.py +0 -72
  31. unit_tests/test_source.py +0 -35
  32. unit_tests/test_streams.py +0 -121
@@ -1,461 +1,346 @@
1
1
  {
2
- "type": "object",
3
- "required": [
4
- "bank",
5
- "branch",
6
- "calendar",
7
- "code",
8
- "company",
9
- "countryCode",
10
- "currency",
11
- "uuid"
12
- ],
2
+ "type": ["object", "null"],
3
+ "title": "AccountSearchModel",
4
+ "description": "Account search",
5
+ "$schema": "http://json-schema.org/schema#",
13
6
  "properties": {
14
7
  "accountCategory1": {
15
- "type": "object",
8
+ "description": "Represents account category 1 data",
9
+ "type": ["object", "null"],
16
10
  "properties": {
17
11
  "code": {
18
- "type": ["null", "string"],
19
- "example": "CODE_ID",
20
- "description": "Code identifier."
12
+ "description": "Code for the first account category",
13
+ "type": ["null", "string"]
21
14
  },
22
15
  "uuid": {
23
- "type": ["null", "string"],
24
- "format": "uuid",
25
- "example": "123e4567-e89b-12d3-a456-426655440001",
26
- "description": "UUID identifier. Has priority over the code"
16
+ "description": "UUID for the first account category",
17
+ "type": ["null", "string"]
27
18
  }
28
- },
29
- "title": "ReferenceModel",
30
- "description": "Represents possible identifiers for resource. Should be provided at least one identifier (code or uuid). In the case of providing uuid and code, uuid will be used for resolving the reference."
19
+ }
31
20
  },
32
21
  "accountCategory2": {
33
- "type": "object",
22
+ "description": "Represents account category 2 data",
23
+ "type": ["object", "null"],
34
24
  "properties": {
35
25
  "code": {
36
- "type": ["null", "string"],
37
- "example": "CODE_ID",
38
- "description": "Code identifier."
26
+ "description": "Code for the second account category",
27
+ "type": ["null", "string"]
39
28
  },
40
29
  "uuid": {
41
- "type": ["null", "string"],
42
- "format": "uuid",
43
- "example": "123e4567-e89b-12d3-a456-426655440001",
44
- "description": "UUID identifier. Has priority over the code"
30
+ "description": "UUID for the second account category",
31
+ "type": ["null", "string"]
45
32
  }
46
- },
47
- "title": "ReferenceModel",
48
- "description": "Represents possible identifiers for resource. Should be provided at least one identifier (code or uuid). In the case of providing uuid and code, uuid will be used for resolving the reference."
33
+ }
49
34
  },
50
35
  "accountCategory3": {
51
- "type": "object",
36
+ "description": "Represents account category 3 data",
37
+ "type": ["object", "null"],
52
38
  "properties": {
53
39
  "code": {
54
- "type": ["null", "string"],
55
- "example": "CODE_ID",
56
- "description": "Code identifier."
40
+ "description": "Code for the third account category",
41
+ "type": ["null", "string"]
57
42
  },
58
43
  "uuid": {
59
- "type": ["null", "string"],
60
- "format": "uuid",
61
- "example": "123e4567-e89b-12d3-a456-426655440001",
62
- "description": "UUID identifier. Has priority over the code"
44
+ "description": "UUID for the third account category",
45
+ "type": ["null", "string"]
63
46
  }
64
- },
65
- "title": "ReferenceModel",
66
- "description": "Represents possible identifiers for resource. Should be provided at least one identifier (code or uuid). In the case of providing uuid and code, uuid will be used for resolving the reference."
47
+ }
67
48
  },
68
49
  "accountCategory4": {
69
- "type": "object",
50
+ "description": "Represents account category 4 data",
51
+ "type": ["object", "null"],
70
52
  "properties": {
71
53
  "code": {
72
- "type": ["null", "string"],
73
- "example": "CODE_ID",
74
- "description": "Code identifier."
54
+ "description": "Code for the fourth account category",
55
+ "type": ["null", "string"]
75
56
  },
76
57
  "uuid": {
77
- "type": ["null", "string"],
78
- "format": "uuid",
79
- "example": "123e4567-e89b-12d3-a456-426655440001",
80
- "description": "UUID identifier. Has priority over the code"
58
+ "description": "UUID for the fourth account category",
59
+ "type": ["null", "string"]
81
60
  }
82
- },
83
- "title": "ReferenceModel",
84
- "description": "Represents possible identifiers for resource. Should be provided at least one identifier (code or uuid). In the case of providing uuid and code, uuid will be used for resolving the reference."
61
+ }
85
62
  },
86
63
  "accountCategory5": {
87
- "type": "object",
64
+ "description": "Represents account category 5 data",
65
+ "type": ["object", "null"],
88
66
  "properties": {
89
67
  "code": {
90
- "type": ["null", "string"],
91
- "example": "CODE_ID",
92
- "description": "Code identifier."
68
+ "description": "Code for the fifth account category",
69
+ "type": ["null", "string"]
93
70
  },
94
71
  "uuid": {
95
- "type": ["null", "string"],
96
- "format": "uuid",
97
- "example": "123e4567-e89b-12d3-a456-426655440001",
98
- "description": "UUID identifier. Has priority over the code"
72
+ "description": "UUID for the fifth account category",
73
+ "type": ["null", "string"]
99
74
  }
100
- },
101
- "title": "ReferenceModel",
102
- "description": "Represents possible identifiers for resource. Should be provided at least one identifier (code or uuid). In the case of providing uuid and code, uuid will be used for resolving the reference."
75
+ }
103
76
  },
104
77
  "accountCategory6": {
105
- "type": "object",
78
+ "description": "Represents account category 6 data",
79
+ "type": ["object", "null"],
106
80
  "properties": {
107
81
  "code": {
108
- "type": ["null", "string"],
109
- "example": "CODE_ID",
110
- "description": "Code identifier."
82
+ "description": "Code for the sixth account category",
83
+ "type": ["null", "string"]
111
84
  },
112
85
  "uuid": {
113
- "type": ["null", "string"],
114
- "format": "uuid",
115
- "example": "123e4567-e89b-12d3-a456-426655440001",
116
- "description": "UUID identifier. Has priority over the code"
86
+ "description": "UUID for the sixth account category",
87
+ "type": ["null", "string"]
117
88
  }
118
- },
119
- "title": "ReferenceModel",
120
- "description": "Represents possible identifiers for resource. Should be provided at least one identifier (code or uuid). In the case of providing uuid and code, uuid will be used for resolving the reference."
89
+ }
121
90
  },
122
91
  "accountCategory7": {
123
- "type": "object",
92
+ "description": "Represents account category 7 data",
93
+ "type": ["object", "null"],
124
94
  "properties": {
125
95
  "code": {
126
- "type": ["null", "string"],
127
- "example": "CODE_ID",
128
- "description": "Code identifier."
96
+ "description": "Code for the seventh account category",
97
+ "type": ["null", "string"]
129
98
  },
130
99
  "uuid": {
131
- "type": ["null", "string"],
132
- "format": "uuid",
133
- "example": "123e4567-e89b-12d3-a456-426655440001",
134
- "description": "UUID identifier. Has priority over the code"
100
+ "description": "UUID for the seventh account category",
101
+ "type": ["null", "string"]
135
102
  }
136
- },
137
- "title": "ReferenceModel",
138
- "description": "Represents possible identifiers for resource. Should be provided at least one identifier (code or uuid). In the case of providing uuid and code, uuid will be used for resolving the reference."
103
+ }
139
104
  },
140
105
  "accountCategory8": {
141
- "type": "object",
106
+ "description": "Represents account category 8 data",
107
+ "type": ["object", "null"],
142
108
  "properties": {
143
109
  "code": {
144
- "type": ["null", "string"],
145
- "example": "CODE_ID",
146
- "description": "Code identifier."
110
+ "description": "Code for the eighth account category",
111
+ "type": ["null", "string"]
147
112
  },
148
113
  "uuid": {
149
- "type": ["null", "string"],
150
- "format": "uuid",
151
- "example": "123e4567-e89b-12d3-a456-426655440001",
152
- "description": "UUID identifier. Has priority over the code"
114
+ "description": "UUID for the eighth account category",
115
+ "type": ["null", "string"]
153
116
  }
154
- },
155
- "title": "ReferenceModel",
156
- "description": "Represents possible identifiers for resource. Should be provided at least one identifier (code or uuid). In the case of providing uuid and code, uuid will be used for resolving the reference."
117
+ }
157
118
  },
158
119
  "accountCategory9": {
159
- "type": "object",
120
+ "description": "Represents account category 9 data",
121
+ "type": ["object", "null"],
160
122
  "properties": {
161
123
  "code": {
162
- "type": ["null", "string"],
163
- "example": "CODE_ID",
164
- "description": "Code identifier."
124
+ "description": "Code for the ninth account category",
125
+ "type": ["null", "string"]
165
126
  },
166
127
  "uuid": {
167
- "type": ["null", "string"],
168
- "format": "uuid",
169
- "example": "123e4567-e89b-12d3-a456-426655440001",
170
- "description": "UUID identifier. Has priority over the code"
128
+ "description": "UUID for the ninth account category",
129
+ "type": ["null", "string"]
171
130
  }
172
- },
173
- "title": "ReferenceModel",
174
- "description": "Represents possible identifiers for resource. Should be provided at least one identifier (code or uuid). In the case of providing uuid and code, uuid will be used for resolving the reference."
131
+ }
175
132
  },
176
133
  "accountCategory10": {
177
- "type": "object",
134
+ "description": "Represents account category 10 data",
135
+ "type": ["object", "null"],
178
136
  "properties": {
179
137
  "code": {
180
- "type": ["null", "string"],
181
- "example": "CODE_ID",
182
- "description": "Code identifier."
138
+ "description": "Code for the tenth account category",
139
+ "type": ["null", "string"]
183
140
  },
184
141
  "uuid": {
185
- "type": ["null", "string"],
186
- "format": "uuid",
187
- "example": "123e4567-e89b-12d3-a456-426655440001",
188
- "description": "UUID identifier. Has priority over the code"
142
+ "description": "UUID for the tenth account category",
143
+ "type": ["null", "string"]
189
144
  }
190
- },
191
- "title": "ReferenceModel",
192
- "description": "Represents possible identifiers for resource. Should be provided at least one identifier (code or uuid). In the case of providing uuid and code, uuid will be used for resolving the reference."
145
+ }
193
146
  },
194
147
  "accountAvailableForPayments": {
195
- "type": "boolean",
196
- "example": true,
197
- "description": "Flag to show if account is available for payments (true) or no (false)."
148
+ "description": "Indicates if the account is available for payments",
149
+ "type": ["boolean", "null"]
198
150
  },
199
151
  "accountType": {
200
- "type": "string",
201
- "example": "BANK_ACCOUNT",
202
- "description": "Account type",
203
- "enum": [
204
- "BANK_ACCOUNT",
205
- "INTERCOMPANY_ACCOUNT",
206
- "OTHER_ACCOUNT",
207
- "SHARED_ACCOUNT"
208
- ]
152
+ "description": "Type of the account",
153
+ "type": ["string", "null"]
209
154
  },
210
155
  "activeStatus": {
211
- "type": "string",
212
- "example": "OPENED",
213
- "description": "Account status.",
214
- "enum": ["OPENED", "CLOSED"]
156
+ "description": "Status indicating if the account is active",
157
+ "type": ["string", "null"]
215
158
  },
216
159
  "attachments": {
217
- "type": "boolean",
218
- "description": "Attachments"
160
+ "description": "Attachments associated with the account",
161
+ "type": ["boolean", "null"]
219
162
  },
220
163
  "banCode": {
221
- "type": "string",
222
- "description": "Account BAN code"
164
+ "description": "Bank account number (BAN) code",
165
+ "type": ["string", "null"]
223
166
  },
224
167
  "bank": {
225
- "type": "object",
168
+ "description": "Represents bank data",
169
+ "type": ["object", "null"],
226
170
  "properties": {
227
171
  "code": {
228
- "type": "string",
229
- "example": "CODE_ID",
230
- "description": "Code identifier."
172
+ "description": "Code for the bank associated with the account",
173
+ "type": ["string", "null"]
231
174
  },
232
175
  "uuid": {
233
- "type": "string",
234
- "format": "uuid",
235
- "example": "123e4567-e89b-12d3-a456-426655440001",
236
- "description": "UUID identifier. Has priority over the code"
176
+ "description": "UUID for the bank associated with the account",
177
+ "type": ["string", "null"]
237
178
  }
238
- },
239
- "title": "ReferenceModel",
240
- "description": "Represents possible identifiers for resource. Should be provided at least one identifier (code or uuid). In the case of providing uuid and code, uuid will be used for resolving the reference."
179
+ }
241
180
  },
242
181
  "branch": {
243
- "type": "object",
182
+ "description": "Represents branch data",
183
+ "type": ["object", "null"],
244
184
  "properties": {
245
185
  "code": {
246
- "type": "string",
247
- "example": "CODE_ID",
248
- "description": "Code identifier."
186
+ "description": "Branch code associated with the account",
187
+ "type": ["string", "null"]
249
188
  },
250
189
  "uuid": {
251
- "type": "string",
252
- "format": "uuid",
253
- "example": "123e4567-e89b-12d3-a456-426655440001",
254
- "description": "UUID identifier. Has priority over the code"
190
+ "description": "UUID for the branch associated with the account",
191
+ "type": ["string", "null"]
255
192
  }
256
- },
257
- "title": "ReferenceModel",
258
- "description": "Represents possible identifiers for resource. Should be provided at least one identifier (code or uuid). In the case of providing uuid and code, uuid will be used for resolving the reference."
193
+ }
259
194
  },
260
195
  "branchDescription": {
261
- "type": ["null", "string"],
262
- "description": "Account branch description"
196
+ "description": "Description of the branch associated with the account",
197
+ "type": ["null", "string"]
263
198
  },
264
199
  "calendar": {
265
- "type": "object",
200
+ "description": "Represents calendar data",
201
+ "type": ["object", "null"],
266
202
  "properties": {
267
203
  "code": {
268
- "type": "string",
269
- "example": "CODE_ID",
270
- "description": "Code identifier."
204
+ "description": "Code for the calendar linked to the account",
205
+ "type": ["string", "null"]
271
206
  },
272
207
  "uuid": {
273
- "type": "string",
274
- "format": "uuid",
275
- "example": "123e4567-e89b-12d3-a456-426655440001",
276
- "description": "UUID identifier. Has priority over the code"
208
+ "description": "UUID for the calendar linked to the account",
209
+ "type": ["string", "null"]
277
210
  }
278
- },
279
- "title": "ReferenceModel",
280
- "description": "Represents possible identifiers for resource. Should be provided at least one identifier (code or uuid). In the case of providing uuid and code, uuid will be used for resolving the reference."
211
+ }
281
212
  },
282
213
  "closedAccount": {
283
- "type": "boolean",
284
- "example": false,
285
- "description": "Is account closed. Default value false"
214
+ "description": "Indicates if the account is closed",
215
+ "type": ["boolean", "null"]
286
216
  },
287
217
  "closingDate": {
288
- "type": ["null", "string"],
289
- "format": "date",
290
- "example": "2020-06-23",
291
- "description": "Closing date"
218
+ "description": "Date when the account was closed",
219
+ "type": ["null", "string"]
292
220
  },
293
221
  "code": {
294
- "type": "string",
295
- "example": "COMPANYCODE",
296
- "description": "Account code."
222
+ "description": "Account code",
223
+ "type": ["string", "null"]
297
224
  },
298
225
  "company": {
299
- "type": "object",
226
+ "description": "Represents company data",
227
+ "type": ["object", "null"],
300
228
  "properties": {
301
229
  "code": {
302
- "type": "string",
303
- "example": "CODE_ID",
304
- "description": "Code identifier."
230
+ "description": "Code for the company associated with the account",
231
+ "type": ["string", "null"]
305
232
  },
306
233
  "uuid": {
307
- "type": "string",
308
- "format": "uuid",
309
- "example": "123e4567-e89b-12d3-a456-426655440001",
310
- "description": "UUID identifier. Has priority over the code"
234
+ "description": "UUID for the company associated with the account",
235
+ "type": ["string", "null"]
311
236
  }
312
- },
313
- "title": "ReferenceModel",
314
- "description": "Represents possible identifiers for resource. Should be provided at least one identifier (code or uuid). In the case of providing uuid and code, uuid will be used for resolving the reference."
237
+ }
315
238
  },
316
239
  "countryCode": {
317
- "type": "string",
318
- "description": "Account country code"
240
+ "description": "Country code of the account",
241
+ "type": ["string", "null"]
319
242
  },
320
243
  "creationDate": {
321
- "type": "string",
322
- "format": "date",
323
- "example": "2020-06-21",
324
- "description": "Creation date"
244
+ "description": "Date when the account was created",
245
+ "type": ["string", "null"]
325
246
  },
326
247
  "currency": {
327
- "type": "object",
248
+ "description": "Represents currency data",
249
+ "type": ["object", "null"],
328
250
  "properties": {
329
251
  "code": {
330
- "type": "string",
331
- "example": "CODE_ID",
332
- "description": "Code identifier."
252
+ "description": "Currency code of the account",
253
+ "type": ["string", "null"]
333
254
  },
334
255
  "uuid": {
335
- "type": "string",
336
- "format": "uuid",
337
- "example": "123e4567-e89b-12d3-a456-426655440001",
338
- "description": "UUID identifier. Has priority over the code"
256
+ "description": "UUID for the currency of the account",
257
+ "type": ["string", "null"]
339
258
  }
340
- },
341
- "title": "ReferenceModel",
342
- "description": "Represents possible identifiers for resource. Should be provided at least one identifier (code or uuid). In the case of providing uuid and code, uuid will be used for resolving the reference."
259
+ }
343
260
  },
344
261
  "defaultGroup": {
345
- "type": "object",
262
+ "description": "Represents default group data",
263
+ "type": ["object", "null"],
346
264
  "properties": {
347
265
  "code": {
348
- "type": ["null", "string"],
349
- "example": "CODE_ID",
350
- "description": "Code identifier."
266
+ "description": "Code for the default group of the account",
267
+ "type": ["null", "string"]
351
268
  },
352
269
  "uuid": {
353
- "type": ["null", "string"],
354
- "format": "uuid",
355
- "example": "123e4567-e89b-12d3-a456-426655440001",
356
- "description": "UUID identifier. Has priority over the code"
270
+ "description": "UUID for the default group of the account",
271
+ "type": ["null", "string"]
357
272
  }
358
- },
359
- "title": "ReferenceModel",
360
- "description": "Represents possible identifiers for resource. Should be provided at least one identifier (code or uuid). In the case of providing uuid and code, uuid will be used for resolving the reference."
273
+ }
361
274
  },
362
275
  "description": {
363
- "type": ["null", "string"],
364
- "example": "Some description",
365
- "description": "Account description."
276
+ "description": "Brief description of the account",
277
+ "type": ["null", "string"]
366
278
  },
367
279
  "description2": {
368
- "type": ["null", "string"],
369
- "example": "Some description2",
370
- "description": "Account description2."
280
+ "description": "Additional description field for the account",
281
+ "type": ["null", "string"]
371
282
  },
372
283
  "documents": {
373
- "type": "boolean",
374
- "description": "Documents."
284
+ "description": "Documents associated with the account",
285
+ "type": ["boolean", "null"]
375
286
  },
376
287
  "glAccount": {
377
- "type": "object",
288
+ "description": "Represents general ledger account data",
289
+ "type": ["object", "null"],
378
290
  "properties": {
379
291
  "code": {
380
- "type": ["null", "string"],
381
- "example": "CODE_ID",
382
- "description": "Code identifier."
292
+ "description": "General ledger (GL) account code",
293
+ "type": ["null", "string"]
383
294
  },
384
295
  "uuid": {
385
- "type": ["null", "string"],
386
- "format": "uuid",
387
- "example": "123e4567-e89b-12d3-a456-426655440001",
388
- "description": "UUID identifier. Has priority over the code"
296
+ "description": "UUID for the GL account linked to the account",
297
+ "type": ["null", "string"]
389
298
  }
390
- },
391
- "title": "ReferenceModel",
392
- "description": "Represents possible identifiers for resource. Should be provided at least one identifier (code or uuid). In the case of providing uuid and code, uuid will be used for resolving the reference."
299
+ }
393
300
  },
394
301
  "ibanCode": {
395
- "type": ["null", "string"],
396
- "description": "Account IBAN code"
302
+ "description": "International Bank Account Number (IBAN) code",
303
+ "type": ["null", "string"]
397
304
  },
398
305
  "internalAccountCode": {
399
- "type": ["null", "string"],
400
- "description": "Internal account code"
306
+ "description": "Internal code for the account",
307
+ "type": ["null", "string"]
401
308
  },
402
309
  "marker1": {
403
- "type": "boolean",
404
- "example": false,
405
- "description": "Marker1."
310
+ "description": "Custom marker 1 for the account",
311
+ "type": ["boolean", "null"]
406
312
  },
407
313
  "marker2": {
408
- "type": "boolean",
409
- "example": false,
410
- "description": "Marker2."
314
+ "description": "Custom marker 2 for the account",
315
+ "type": ["boolean", "null"]
411
316
  },
412
317
  "marker3": {
413
- "type": "boolean",
414
- "example": false,
415
- "description": "Marker3."
318
+ "description": "Custom marker 3 for the account",
319
+ "type": ["boolean", "null"]
416
320
  },
417
321
  "signatoryUsers": {
418
- "type": "integer",
419
- "format": "int64",
420
- "description": "Signatory users."
322
+ "description": "Users authorized as signatories for the account",
323
+ "type": ["integer", "null"]
421
324
  },
422
325
  "statementIdentifier": {
423
- "type": ["null", "string"],
424
- "description": "Account statement identifier"
326
+ "description": "Identifier for the account statement",
327
+ "type": ["null", "string"]
425
328
  },
426
329
  "status": {
427
- "type": "string",
428
- "example": "CREATION_TO_VALIDATE",
429
- "description": "Account status",
430
- "enum": [
431
- "STANDARD",
432
- "CREATION_TO_VALIDATE",
433
- "CREATION_VALIDATED",
434
- "AVAILABLE_FOR_BANK_INTEGRATION",
435
- "CLOSURE_REQUESTED",
436
- "CLOSURE_VALIDATE",
437
- "BANK_CONTRACT_TO_INACTIVATE",
438
- "CLOSED"
439
- ]
330
+ "description": "Status of the account",
331
+ "type": ["string", "null"]
440
332
  },
441
333
  "updateDate": {
442
- "type": ["null", "string"],
443
- "format": "date",
444
- "example": "2020-06-22",
445
- "description": "Update date"
334
+ "description": "Date when the account was last updated",
335
+ "type": ["null", "string"]
446
336
  },
447
337
  "uuid": {
448
- "type": "string",
449
- "format": "uuid",
450
- "example": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
451
- "description": "UUID of the account."
338
+ "description": "Unique identifier for the account",
339
+ "type": ["string", "null"]
452
340
  },
453
341
  "zbaIdentifier": {
454
- "type": ["null", "string"],
455
- "description": "Account ZBA identifier"
342
+ "description": "Zero balance account (ZBA) identifier",
343
+ "type": ["null", "string"]
456
344
  }
457
- },
458
- "title": "AccountSearchModel",
459
- "description": "Account search",
460
- "$schema": "http://json-schema.org/schema#"
345
+ }
461
346
  }