Skip to content

Commit 5011439

Browse files
committed
Add /healthCheck to all services
1 parent 74504c0 commit 5011439

File tree

4 files changed

+16
-0
lines changed

4 files changed

+16
-0
lines changed

openapi/date-annotator/openapi.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ info:
1919
This NLP tool detects date references in the clinical note specified and
2020
returns a list of date annotations.
2121
tags:
22+
- name: HealthCheck
23+
description: Operations about health checks
2224
- name: TextDateAnnotation
2325
description: Operations about text date annotations
2426
- name: Tool
@@ -27,6 +29,8 @@ servers:
2729
- url: 'http://example.com/api/v1'
2830
- url: 'https://example.com/api/v1'
2931
paths:
32+
/healthCheck:
33+
$ref: '../commons/paths/healthCheck.yaml'
3034
/textDateAnnotations:
3135
$ref: 'paths/textDateAnnotations.yaml'
3236
/tool:

openapi/person-name-annotator/openapi.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ info:
1919
This NLP tool detects references of person names in the clinical notes given
2020
as input and returns a list of person name annotations.
2121
tags:
22+
- name: HealthCheck
23+
description: Operations about health checks
2224
- name: TextPersonNameAnnotation
2325
description: Operations about text person name annotations
2426
- name: Tool
@@ -27,6 +29,8 @@ servers:
2729
- url: 'http://example.com/api/v1'
2830
- url: 'https://example.com/api/v1'
2931
paths:
32+
/healthCheck:
33+
$ref: '../commons/paths/healthCheck.yaml'
3034
/textPersonNameAnnotations:
3135
$ref: 'paths/textPersonNameAnnotations.yaml'
3236
/tool:

openapi/phi-deidentifier/openapi.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ info:
2020
tags:
2121
- name: DeidentifiedNotes
2222
description: Operations about deidentified notes
23+
- name: HealthCheck
24+
description: Operations about health checks
2325
- name: Tool
2426
description: Operations about this tool
2527
servers:
@@ -28,6 +30,8 @@ servers:
2830
paths:
2931
/deidentifiedNotes:
3032
$ref: 'paths/deidentifiedNotes.yaml'
33+
/healthCheck:
34+
$ref: '../commons/paths/healthCheck.yaml'
3135
/tool:
3236
$ref: '../commons/paths/tool.yaml'
3337
/tool/dependencies:

openapi/physical-address-annotator/openapi.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ info:
1919
This NLP tool detects references of physical addresses in the clinical notes
2020
given as input and returns a list of physical address annotations.
2121
tags:
22+
- name: HealthCheck
23+
description: Operations about health checks
2224
- name: TextPhysicalAddressAnnotation
2325
description: Operations about text physical address annotations
2426
- name: Tool
@@ -27,6 +29,8 @@ servers:
2729
- url: 'http://example.com/api/v1'
2830
- url: 'https://example.com/api/v1'
2931
paths:
32+
/healthCheck:
33+
$ref: '../commons/paths/healthCheck.yaml'
3034
/textPhysicalAddressAnnotations:
3135
$ref: 'paths/textPhysicalAddressAnnotations.yaml'
3236
/tool:

0 commit comments

Comments
 (0)