File tree Expand file tree Collapse file tree 4 files changed +34
-1
lines changed
Expand file tree Collapse file tree 4 files changed +34
-1
lines changed Original file line number Diff line number Diff line change 1+ .idea
12dist
2- dist.yaml
33node_modules
4+
5+ dist.yaml
46openapi.yaml
Original file line number Diff line number Diff line change 1+ type : object
2+ description : Represents the health of a service
3+ properties :
4+ status :
5+ description : Indicates whether the service status is acceptable or not
6+ type : string
7+ enum :
8+ - pass
9+ - fail
10+ - warn
11+ required :
12+ - status
Original file line number Diff line number Diff line change 1+ get :
2+ tags :
3+ - HealthCheck
4+ summary : Get health check information
5+ description : Get information about the health of the service
6+ operationId : getHealthCheck
7+ responses :
8+ ' 200 ' :
9+ description : Success
10+ content :
11+ application/json :
12+ schema :
13+ $ref : ../components/schemas/HealthCheck.yaml
14+ ' 404 ' :
15+ $ref : ../components/responses/NotFound.yaml
Original file line number Diff line number Diff line change 3333 description : Operations about datasets
3434 - name : FhirStore
3535 description : Operations about FHIR stores
36+ - name : HealthCheck
37+ description : Operations about health checks
3638 - name : Note
3739 description : Operations about notes
3840 - name : Patient
7274 $ref : ' paths/notes.yaml'
7375 /datasets/{datasetId}/fhirStores/{fhirStoreId}/fhir/Note/{noteId} :
7476 $ref : ' paths/notes@{noteId}.yaml'
77+ /healthCheck :
78+ $ref : ' ../commons/paths/healthCheck.yaml'
7579 /service :
7680 $ref : ' ../commons/paths/service.yaml'
You can’t perform that action at this time.
0 commit comments