-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcatalog-info.yaml
More file actions
533 lines (515 loc) · 12.7 KB
/
catalog-info.yaml
File metadata and controls
533 lines (515 loc) · 12.7 KB
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
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
apiVersion: backstage.io/v1alpha1
kind: Component
metadata:
name: gp-documents-api
title: GP Documents API
description: |
Backend service that implements the GP Documents API, enabling the secure
exchange of clinical documents between GP practices and other healthcare systems.
annotations:
backstage.io/techdocs-ref: url:https://github.com/Work-In-Progress-For-Health/gp-documents-api
tags:
- healthcare
- fhir
- documents
- api
links:
- url: https://api.your-domain.com/gp-documents/docs
title: API Documentation
icon: docs
- url: https://grafana.your-domain.com/d/gp-documents
title: Monitoring Dashboard
icon: dashboard
spec:
type: service
lifecycle: production
owner: platform-team
system: gp-documents
# APIs provided by this component
providesApis:
- gp-documents-api
# APIs consumed by this component
consumesApis:
- authentication-api
- audit-logging-api
- fhir-validation-api
- wccg-api
- clinical-documents-api
# Component dependencies
dependsOn:
- component:default/authentication-service
- component:default/audit-service
- component:default/wccg-service
- component:default/clinical-documents-service
- resource:default/gp-documents-database
- resource:default/gp-documents-cache
- resource:default/document-storage
---
# API PROVIDED by this component
apiVersion: backstage.io/v1alpha1
kind: API
metadata:
name: gp-documents-api
title: GP Documents API
description: RESTful API for managing and exchanging clinical documents in GP practices
tags:
- healthcare
- fhir
- rest
- documents
links:
- url: https://api.your-domain.com/gp-documents/docs
title: OpenAPI Specification
icon: docs
spec:
type: openapi
lifecycle: production
owner: platform-team
system: gp-documents
definition: |
openapi: 3.0.0
info:
title: GP Documents API
version: 1.0.0
description: API for secure document exchange between GP practices
paths:
/documents:
get:
summary: List documents
description: Retrieve a list of clinical documents
responses:
'200':
description: Successful response
content:
application/json:
schema:
type: array
items:
type: object
post:
summary: Create a new document
description: Upload a new clinical document
responses:
'201':
description: Document created
/documents/{id}:
get:
summary: Get document by ID
description: Retrieve a specific clinical document
parameters:
- name: id
in: path
required: true
schema:
type: string
responses:
'200':
description: Successful response
'404':
description: Document not found
---
# CONSUMED API: Authentication
apiVersion: backstage.io/v1alpha1
kind: API
metadata:
name: authentication-api
title: Authentication API
description: API for authentication and authorization services including OAuth2 and JWT token management
tags:
- security
- authentication
- oauth2
links:
- url: https://api.your-domain.com/auth/docs
title: API Documentation
icon: docs
spec:
type: openapi
lifecycle: production
owner: security-team
system: authentication
definition: |
openapi: 3.0.0
info:
title: Authentication API
version: 1.0.0
description: Provides authentication and authorization services
paths:
/auth/token:
post:
summary: Get access token
responses:
'200':
description: Token issued
/auth/validate:
post:
summary: Validate token
responses:
'200':
description: Token is valid
---
# CONSUMED API: Audit Logging
apiVersion: backstage.io/v1alpha1
kind: API
metadata:
name: audit-logging-api
title: Audit Logging API
description: API for recording audit events and compliance logging for healthcare data access
tags:
- compliance
- audit
- logging
- security
links:
- url: https://api.your-domain.com/audit/docs
title: API Documentation
icon: docs
spec:
type: openapi
lifecycle: production
owner: compliance-team
system: audit
definition: |
openapi: 3.0.0
info:
title: Audit Logging API
version: 1.0.0
description: Records audit events for compliance
paths:
/audit/events:
post:
summary: Log audit event
description: Record a new audit event
responses:
'201':
description: Event logged
/audit/events/{id}:
get:
summary: Get audit event
parameters:
- name: id
in: path
required: true
schema:
type: string
responses:
'200':
description: Event retrieved
---
# CONSUMED API: FHIR Validation
apiVersion: backstage.io/v1alpha1
kind: API
metadata:
name: fhir-validation-api
title: FHIR Validation API
description: API for validating FHIR resources against UK Core and other FHIR profiles
tags:
- healthcare
- fhir
- validation
- interoperability
links:
- url: https://api.your-domain.com/fhir-validation/docs
title: API Documentation
icon: docs
spec:
type: openapi
lifecycle: production
owner: platform-team
system: fhir-validation
definition: |
openapi: 3.0.0
info:
title: FHIR Validation API
version: 1.0.0
description: Validates FHIR resources against profiles
paths:
/validate:
post:
summary: Validate FHIR resource
description: Validate a FHIR resource against specified profiles
responses:
'200':
description: Validation result
/profiles:
get:
summary: List available profiles
responses:
'200':
description: List of profiles
---
# CONSUMED API: WCCG
apiVersion: backstage.io/v1alpha1
kind: API
metadata:
name: wccg-api
title: WCCG API
description: Wales Clinical Communications Gateway API for healthcare interoperability and secure messaging across Welsh health systems
tags:
- healthcare
- wales
- interoperability
- messaging
- nhs
links:
- url: https://api.your-domain.com/wccg/docs
title: API Documentation
icon: docs
spec:
type: openapi
lifecycle: production
owner: integration-team
system: wccg
definition: |
openapi: 3.0.0
info:
title: WCCG API
version: 1.0.0
description: Wales Clinical Communications Gateway API
paths:
/messages:
post:
summary: Send message
description: Send a clinical message via WCCG
responses:
'201':
description: Message sent
get:
summary: List messages
responses:
'200':
description: Message list
/messages/{id}:
get:
summary: Get message
parameters:
- name: id
in: path
required: true
schema:
type: string
responses:
'200':
description: Message retrieved
---
# CONSUMED API: Clinical Documents
apiVersion: backstage.io/v1alpha1
kind: API
metadata:
name: clinical-documents-api
title: Clinical Documents API
description: API for accessing and managing clinical document repositories including discharge summaries, referrals, and clinical correspondence
tags:
- healthcare
- documents
- clinical
- repository
links:
- url: https://api.your-domain.com/clinical-documents/docs
title: API Documentation
icon: docs
spec:
type: openapi
lifecycle: production
owner: clinical-systems-team
system: clinical-documents
definition: |
openapi: 3.0.0
info:
title: Clinical Documents API
version: 1.0.0
description: Access and manage clinical document repositories
paths:
/repositories:
get:
summary: List document repositories
responses:
'200':
description: Repository list
/repositories/{repoId}/documents:
get:
summary: List documents in repository
parameters:
- name: repoId
in: path
required: true
schema:
type: string
responses:
'200':
description: Document list
/repositories/{repoId}/documents/{docId}:
get:
summary: Retrieve document
parameters:
- name: repoId
in: path
required: true
schema:
type: string
- name: docId
in: path
required: true
schema:
type: string
responses:
'200':
description: Document retrieved
---
# Supporting Service: Authentication
apiVersion: backstage.io/v1alpha1
kind: Component
metadata:
name: authentication-service
title: Authentication Service
description: Service providing authentication and authorization using OAuth2 and JWT
tags:
- security
- authentication
spec:
type: service
lifecycle: production
owner: security-team
system: authentication
providesApis:
- authentication-api
---
# Supporting Service: Audit
apiVersion: backstage.io/v1alpha1
kind: Component
metadata:
name: audit-service
title: Audit Service
description: Service for audit logging and compliance with healthcare regulations
tags:
- compliance
- audit
spec:
type: service
lifecycle: production
owner: compliance-team
system: audit
providesApis:
- audit-logging-api
---
# Supporting Service: WCCG
apiVersion: backstage.io/v1alpha1
kind: Component
metadata:
name: wccg-service
title: WCCG Service
description: Service implementing the Wales Clinical Communications Gateway for NHS Wales
tags:
- healthcare
- wales
- nhs
spec:
type: service
lifecycle: production
owner: integration-team
system: wccg
providesApis:
- wccg-api
---
# Supporting Service: Clinical Documents
apiVersion: backstage.io/v1alpha1
kind: Component
metadata:
name: clinical-documents-service
title: Clinical Documents Service
description: Service managing clinical document repositories and document lifecycle
tags:
- healthcare
- documents
spec:
type: service
lifecycle: production
owner: clinical-systems-team
system: clinical-documents
providesApis:
- clinical-documents-api
---
# Supporting Service: FHIR Validation (Added this one as it was referenced but missing)
apiVersion: backstage.io/v1alpha1
kind: Component
metadata:
name: fhir-validation-service
title: FHIR Validation Service
description: Service for validating FHIR resources against profiles
tags:
- healthcare
- fhir
- validation
spec:
type: service
lifecycle: production
owner: platform-team
system: fhir-validation
providesApis:
- fhir-validation-api
dependsOn:
- resource:default/fhir-profiles-storage
---
# Resource: Database
apiVersion: backstage.io/v1alpha1
kind: Resource
metadata:
name: gp-documents-database
title: GP Documents Database
description: PostgreSQL database for storing document metadata, indices, and relationships
tags:
- database
- postgresql
spec:
type: database
lifecycle: production
owner: platform-team
system: gp-documents
---
# Resource: Cache
apiVersion: backstage.io/v1alpha1
kind: Resource
metadata:
name: gp-documents-cache
title: GP Documents Cache
description: Redis cache for API response caching and session management
tags:
- cache
- redis
spec:
type: cache
lifecycle: production
owner: platform-team
system: gp-documents
---
# Resource: Storage
apiVersion: backstage.io/v1alpha1
kind: Resource
metadata:
name: document-storage
title: Document Storage
description: S3-compatible object storage for encrypted clinical documents with versioning
tags:
- storage
- s3
spec:
type: storage
lifecycle: production
owner: platform-team
system: gp-documents
---
# Resource: FHIR Profiles Storage (Added for FHIR validation service)
apiVersion: backstage.io/v1alpha1
kind: Resource
metadata:
name: fhir-profiles-storage
title: FHIR Profiles Storage
description: Storage for FHIR profile definitions and validation rules
tags:
- storage
- fhir
spec:
type: storage
lifecycle: production
owner: platform-team
system: fhir-validation