@azure/ai-text-analytics 6.0.0-alpha.20220607.1 → 6.0.0-alpha.20220617.2
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.
|
@@ -8,85 +8,145 @@
|
|
|
8
8
|
/** Known values of {@link AnalyzeTextTaskKind} that the service accepts. */
|
|
9
9
|
export var KnownAnalyzeTextTaskKind;
|
|
10
10
|
(function (KnownAnalyzeTextTaskKind) {
|
|
11
|
+
/** SentimentAnalysis */
|
|
11
12
|
KnownAnalyzeTextTaskKind["SentimentAnalysis"] = "SentimentAnalysis";
|
|
13
|
+
/** EntityRecognition */
|
|
12
14
|
KnownAnalyzeTextTaskKind["EntityRecognition"] = "EntityRecognition";
|
|
15
|
+
/** PiiEntityRecognition */
|
|
13
16
|
KnownAnalyzeTextTaskKind["PiiEntityRecognition"] = "PiiEntityRecognition";
|
|
17
|
+
/** KeyPhraseExtraction */
|
|
14
18
|
KnownAnalyzeTextTaskKind["KeyPhraseExtraction"] = "KeyPhraseExtraction";
|
|
19
|
+
/** LanguageDetection */
|
|
15
20
|
KnownAnalyzeTextTaskKind["LanguageDetection"] = "LanguageDetection";
|
|
21
|
+
/** EntityLinking */
|
|
16
22
|
KnownAnalyzeTextTaskKind["EntityLinking"] = "EntityLinking";
|
|
17
23
|
})(KnownAnalyzeTextTaskKind || (KnownAnalyzeTextTaskKind = {}));
|
|
18
24
|
/** Known values of {@link AnalyzeTextTaskResultsKind} that the service accepts. */
|
|
19
25
|
export var KnownAnalyzeTextTaskResultsKind;
|
|
20
26
|
(function (KnownAnalyzeTextTaskResultsKind) {
|
|
27
|
+
/** SentimentAnalysisResults */
|
|
21
28
|
KnownAnalyzeTextTaskResultsKind["SentimentAnalysisResults"] = "SentimentAnalysisResults";
|
|
29
|
+
/** EntityRecognitionResults */
|
|
22
30
|
KnownAnalyzeTextTaskResultsKind["EntityRecognitionResults"] = "EntityRecognitionResults";
|
|
31
|
+
/** PiiEntityRecognitionResults */
|
|
23
32
|
KnownAnalyzeTextTaskResultsKind["PiiEntityRecognitionResults"] = "PiiEntityRecognitionResults";
|
|
33
|
+
/** KeyPhraseExtractionResults */
|
|
24
34
|
KnownAnalyzeTextTaskResultsKind["KeyPhraseExtractionResults"] = "KeyPhraseExtractionResults";
|
|
35
|
+
/** LanguageDetectionResults */
|
|
25
36
|
KnownAnalyzeTextTaskResultsKind["LanguageDetectionResults"] = "LanguageDetectionResults";
|
|
37
|
+
/** EntityLinkingResults */
|
|
26
38
|
KnownAnalyzeTextTaskResultsKind["EntityLinkingResults"] = "EntityLinkingResults";
|
|
27
39
|
})(KnownAnalyzeTextTaskResultsKind || (KnownAnalyzeTextTaskResultsKind = {}));
|
|
28
40
|
/** Known values of {@link ErrorCode} that the service accepts. */
|
|
29
41
|
export var KnownErrorCode;
|
|
30
42
|
(function (KnownErrorCode) {
|
|
43
|
+
/** InvalidRequest */
|
|
31
44
|
KnownErrorCode["InvalidRequest"] = "InvalidRequest";
|
|
45
|
+
/** InvalidArgument */
|
|
32
46
|
KnownErrorCode["InvalidArgument"] = "InvalidArgument";
|
|
47
|
+
/** Unauthorized */
|
|
33
48
|
KnownErrorCode["Unauthorized"] = "Unauthorized";
|
|
49
|
+
/** Forbidden */
|
|
34
50
|
KnownErrorCode["Forbidden"] = "Forbidden";
|
|
51
|
+
/** NotFound */
|
|
35
52
|
KnownErrorCode["NotFound"] = "NotFound";
|
|
53
|
+
/** ProjectNotFound */
|
|
36
54
|
KnownErrorCode["ProjectNotFound"] = "ProjectNotFound";
|
|
55
|
+
/** OperationNotFound */
|
|
37
56
|
KnownErrorCode["OperationNotFound"] = "OperationNotFound";
|
|
57
|
+
/** AzureCognitiveSearchNotFound */
|
|
38
58
|
KnownErrorCode["AzureCognitiveSearchNotFound"] = "AzureCognitiveSearchNotFound";
|
|
59
|
+
/** AzureCognitiveSearchIndexNotFound */
|
|
39
60
|
KnownErrorCode["AzureCognitiveSearchIndexNotFound"] = "AzureCognitiveSearchIndexNotFound";
|
|
61
|
+
/** TooManyRequests */
|
|
40
62
|
KnownErrorCode["TooManyRequests"] = "TooManyRequests";
|
|
63
|
+
/** AzureCognitiveSearchThrottling */
|
|
41
64
|
KnownErrorCode["AzureCognitiveSearchThrottling"] = "AzureCognitiveSearchThrottling";
|
|
65
|
+
/** AzureCognitiveSearchIndexLimitReached */
|
|
42
66
|
KnownErrorCode["AzureCognitiveSearchIndexLimitReached"] = "AzureCognitiveSearchIndexLimitReached";
|
|
67
|
+
/** InternalServerError */
|
|
43
68
|
KnownErrorCode["InternalServerError"] = "InternalServerError";
|
|
69
|
+
/** ServiceUnavailable */
|
|
44
70
|
KnownErrorCode["ServiceUnavailable"] = "ServiceUnavailable";
|
|
45
71
|
})(KnownErrorCode || (KnownErrorCode = {}));
|
|
46
72
|
/** Known values of {@link InnerErrorCode} that the service accepts. */
|
|
47
73
|
export var KnownInnerErrorCode;
|
|
48
74
|
(function (KnownInnerErrorCode) {
|
|
75
|
+
/** InvalidRequest */
|
|
49
76
|
KnownInnerErrorCode["InvalidRequest"] = "InvalidRequest";
|
|
77
|
+
/** InvalidParameterValue */
|
|
50
78
|
KnownInnerErrorCode["InvalidParameterValue"] = "InvalidParameterValue";
|
|
79
|
+
/** KnowledgeBaseNotFound */
|
|
51
80
|
KnownInnerErrorCode["KnowledgeBaseNotFound"] = "KnowledgeBaseNotFound";
|
|
81
|
+
/** AzureCognitiveSearchNotFound */
|
|
52
82
|
KnownInnerErrorCode["AzureCognitiveSearchNotFound"] = "AzureCognitiveSearchNotFound";
|
|
83
|
+
/** AzureCognitiveSearchThrottling */
|
|
53
84
|
KnownInnerErrorCode["AzureCognitiveSearchThrottling"] = "AzureCognitiveSearchThrottling";
|
|
85
|
+
/** ExtractionFailure */
|
|
54
86
|
KnownInnerErrorCode["ExtractionFailure"] = "ExtractionFailure";
|
|
87
|
+
/** InvalidRequestBodyFormat */
|
|
55
88
|
KnownInnerErrorCode["InvalidRequestBodyFormat"] = "InvalidRequestBodyFormat";
|
|
89
|
+
/** EmptyRequest */
|
|
56
90
|
KnownInnerErrorCode["EmptyRequest"] = "EmptyRequest";
|
|
91
|
+
/** MissingInputDocuments */
|
|
57
92
|
KnownInnerErrorCode["MissingInputDocuments"] = "MissingInputDocuments";
|
|
93
|
+
/** InvalidDocument */
|
|
58
94
|
KnownInnerErrorCode["InvalidDocument"] = "InvalidDocument";
|
|
95
|
+
/** ModelVersionIncorrect */
|
|
59
96
|
KnownInnerErrorCode["ModelVersionIncorrect"] = "ModelVersionIncorrect";
|
|
97
|
+
/** InvalidDocumentBatch */
|
|
60
98
|
KnownInnerErrorCode["InvalidDocumentBatch"] = "InvalidDocumentBatch";
|
|
99
|
+
/** UnsupportedLanguageCode */
|
|
61
100
|
KnownInnerErrorCode["UnsupportedLanguageCode"] = "UnsupportedLanguageCode";
|
|
101
|
+
/** InvalidCountryHint */
|
|
62
102
|
KnownInnerErrorCode["InvalidCountryHint"] = "InvalidCountryHint";
|
|
63
103
|
})(KnownInnerErrorCode || (KnownInnerErrorCode = {}));
|
|
64
104
|
/** Known values of {@link AnalyzeTextLROTaskKind} that the service accepts. */
|
|
65
105
|
export var KnownAnalyzeTextLROTaskKind;
|
|
66
106
|
(function (KnownAnalyzeTextLROTaskKind) {
|
|
107
|
+
/** SentimentAnalysis */
|
|
67
108
|
KnownAnalyzeTextLROTaskKind["SentimentAnalysis"] = "SentimentAnalysis";
|
|
109
|
+
/** EntityRecognition */
|
|
68
110
|
KnownAnalyzeTextLROTaskKind["EntityRecognition"] = "EntityRecognition";
|
|
111
|
+
/** PiiEntityRecognition */
|
|
69
112
|
KnownAnalyzeTextLROTaskKind["PiiEntityRecognition"] = "PiiEntityRecognition";
|
|
113
|
+
/** KeyPhraseExtraction */
|
|
70
114
|
KnownAnalyzeTextLROTaskKind["KeyPhraseExtraction"] = "KeyPhraseExtraction";
|
|
115
|
+
/** EntityLinking */
|
|
71
116
|
KnownAnalyzeTextLROTaskKind["EntityLinking"] = "EntityLinking";
|
|
117
|
+
/** Healthcare */
|
|
72
118
|
KnownAnalyzeTextLROTaskKind["Healthcare"] = "Healthcare";
|
|
119
|
+
/** ExtractiveSummarization */
|
|
73
120
|
KnownAnalyzeTextLROTaskKind["ExtractiveSummarization"] = "ExtractiveSummarization";
|
|
121
|
+
/** CustomEntityRecognition */
|
|
74
122
|
KnownAnalyzeTextLROTaskKind["CustomEntityRecognition"] = "CustomEntityRecognition";
|
|
123
|
+
/** CustomSingleLabelClassification */
|
|
75
124
|
KnownAnalyzeTextLROTaskKind["CustomSingleLabelClassification"] = "CustomSingleLabelClassification";
|
|
125
|
+
/** CustomMultiLabelClassification */
|
|
76
126
|
KnownAnalyzeTextLROTaskKind["CustomMultiLabelClassification"] = "CustomMultiLabelClassification";
|
|
77
127
|
})(KnownAnalyzeTextLROTaskKind || (KnownAnalyzeTextLROTaskKind = {}));
|
|
78
128
|
/** Known values of {@link AnalyzeTextLROResultsKind} that the service accepts. */
|
|
79
129
|
export var KnownAnalyzeTextLROResultsKind;
|
|
80
130
|
(function (KnownAnalyzeTextLROResultsKind) {
|
|
131
|
+
/** SentimentAnalysisLROResults */
|
|
81
132
|
KnownAnalyzeTextLROResultsKind["SentimentAnalysisLROResults"] = "SentimentAnalysisLROResults";
|
|
133
|
+
/** EntityRecognitionLROResults */
|
|
82
134
|
KnownAnalyzeTextLROResultsKind["EntityRecognitionLROResults"] = "EntityRecognitionLROResults";
|
|
135
|
+
/** PiiEntityRecognitionLROResults */
|
|
83
136
|
KnownAnalyzeTextLROResultsKind["PiiEntityRecognitionLROResults"] = "PiiEntityRecognitionLROResults";
|
|
137
|
+
/** KeyPhraseExtractionLROResults */
|
|
84
138
|
KnownAnalyzeTextLROResultsKind["KeyPhraseExtractionLROResults"] = "KeyPhraseExtractionLROResults";
|
|
139
|
+
/** EntityLinkingLROResults */
|
|
85
140
|
KnownAnalyzeTextLROResultsKind["EntityLinkingLROResults"] = "EntityLinkingLROResults";
|
|
141
|
+
/** HealthcareLROResults */
|
|
86
142
|
KnownAnalyzeTextLROResultsKind["HealthcareLROResults"] = "HealthcareLROResults";
|
|
143
|
+
/** ExtractiveSummarizationLROResults */
|
|
87
144
|
KnownAnalyzeTextLROResultsKind["ExtractiveSummarizationLROResults"] = "ExtractiveSummarizationLROResults";
|
|
145
|
+
/** CustomEntityRecognitionLROResults */
|
|
88
146
|
KnownAnalyzeTextLROResultsKind["CustomEntityRecognitionLROResults"] = "CustomEntityRecognitionLROResults";
|
|
147
|
+
/** CustomSingleLabelClassificationLROResults */
|
|
89
148
|
KnownAnalyzeTextLROResultsKind["CustomSingleLabelClassificationLROResults"] = "CustomSingleLabelClassificationLROResults";
|
|
149
|
+
/** CustomMultiLabelClassificationLROResults */
|
|
90
150
|
KnownAnalyzeTextLROResultsKind["CustomMultiLabelClassificationLROResults"] = "CustomMultiLabelClassificationLROResults";
|
|
91
151
|
})(KnownAnalyzeTextLROResultsKind || (KnownAnalyzeTextLROResultsKind = {}));
|
|
92
152
|
/** Known values of {@link StringIndexType} that the service accepts. */
|
|
@@ -110,244 +170,467 @@ export var KnownPiiEntityDomain;
|
|
|
110
170
|
/** Known values of {@link PiiEntityCategory} that the service accepts. */
|
|
111
171
|
export var KnownPiiEntityCategory;
|
|
112
172
|
(function (KnownPiiEntityCategory) {
|
|
173
|
+
/** ABARoutingNumber */
|
|
113
174
|
KnownPiiEntityCategory["ABARoutingNumber"] = "ABARoutingNumber";
|
|
175
|
+
/** ARNationalIdentityNumber */
|
|
114
176
|
KnownPiiEntityCategory["ARNationalIdentityNumber"] = "ARNationalIdentityNumber";
|
|
177
|
+
/** AUBankAccountNumber */
|
|
115
178
|
KnownPiiEntityCategory["AUBankAccountNumber"] = "AUBankAccountNumber";
|
|
179
|
+
/** AUDriversLicenseNumber */
|
|
116
180
|
KnownPiiEntityCategory["AUDriversLicenseNumber"] = "AUDriversLicenseNumber";
|
|
181
|
+
/** AUMedicalAccountNumber */
|
|
117
182
|
KnownPiiEntityCategory["AUMedicalAccountNumber"] = "AUMedicalAccountNumber";
|
|
183
|
+
/** AUPassportNumber */
|
|
118
184
|
KnownPiiEntityCategory["AUPassportNumber"] = "AUPassportNumber";
|
|
185
|
+
/** AUTaxFileNumber */
|
|
119
186
|
KnownPiiEntityCategory["AUTaxFileNumber"] = "AUTaxFileNumber";
|
|
187
|
+
/** AUBusinessNumber */
|
|
120
188
|
KnownPiiEntityCategory["AUBusinessNumber"] = "AUBusinessNumber";
|
|
189
|
+
/** AUCompanyNumber */
|
|
121
190
|
KnownPiiEntityCategory["AUCompanyNumber"] = "AUCompanyNumber";
|
|
191
|
+
/** ATIdentityCard */
|
|
122
192
|
KnownPiiEntityCategory["ATIdentityCard"] = "ATIdentityCard";
|
|
193
|
+
/** ATTaxIdentificationNumber */
|
|
123
194
|
KnownPiiEntityCategory["ATTaxIdentificationNumber"] = "ATTaxIdentificationNumber";
|
|
195
|
+
/** ATValueAddedTaxNumber */
|
|
124
196
|
KnownPiiEntityCategory["ATValueAddedTaxNumber"] = "ATValueAddedTaxNumber";
|
|
197
|
+
/** AzureDocumentDBAuthKey */
|
|
125
198
|
KnownPiiEntityCategory["AzureDocumentDBAuthKey"] = "AzureDocumentDBAuthKey";
|
|
199
|
+
/** AzureIaasDatabaseConnectionAndSQLString */
|
|
126
200
|
KnownPiiEntityCategory["AzureIaasDatabaseConnectionAndSQLString"] = "AzureIAASDatabaseConnectionAndSQLString";
|
|
201
|
+
/** AzureIoTConnectionString */
|
|
127
202
|
KnownPiiEntityCategory["AzureIoTConnectionString"] = "AzureIoTConnectionString";
|
|
203
|
+
/** AzurePublishSettingPassword */
|
|
128
204
|
KnownPiiEntityCategory["AzurePublishSettingPassword"] = "AzurePublishSettingPassword";
|
|
205
|
+
/** AzureRedisCacheString */
|
|
129
206
|
KnownPiiEntityCategory["AzureRedisCacheString"] = "AzureRedisCacheString";
|
|
207
|
+
/** AzureSAS */
|
|
130
208
|
KnownPiiEntityCategory["AzureSAS"] = "AzureSAS";
|
|
209
|
+
/** AzureServiceBusString */
|
|
131
210
|
KnownPiiEntityCategory["AzureServiceBusString"] = "AzureServiceBusString";
|
|
211
|
+
/** AzureStorageAccountKey */
|
|
132
212
|
KnownPiiEntityCategory["AzureStorageAccountKey"] = "AzureStorageAccountKey";
|
|
213
|
+
/** AzureStorageAccountGeneric */
|
|
133
214
|
KnownPiiEntityCategory["AzureStorageAccountGeneric"] = "AzureStorageAccountGeneric";
|
|
215
|
+
/** BENationalNumber */
|
|
134
216
|
KnownPiiEntityCategory["BENationalNumber"] = "BENationalNumber";
|
|
217
|
+
/** BENationalNumberV2 */
|
|
135
218
|
KnownPiiEntityCategory["BENationalNumberV2"] = "BENationalNumberV2";
|
|
219
|
+
/** BEValueAddedTaxNumber */
|
|
136
220
|
KnownPiiEntityCategory["BEValueAddedTaxNumber"] = "BEValueAddedTaxNumber";
|
|
221
|
+
/** BrcpfNumber */
|
|
137
222
|
KnownPiiEntityCategory["BrcpfNumber"] = "BRCPFNumber";
|
|
223
|
+
/** BRLegalEntityNumber */
|
|
138
224
|
KnownPiiEntityCategory["BRLegalEntityNumber"] = "BRLegalEntityNumber";
|
|
225
|
+
/** BRNationalIdrg */
|
|
139
226
|
KnownPiiEntityCategory["BRNationalIdrg"] = "BRNationalIDRG";
|
|
227
|
+
/** BGUniformCivilNumber */
|
|
140
228
|
KnownPiiEntityCategory["BGUniformCivilNumber"] = "BGUniformCivilNumber";
|
|
229
|
+
/** CABankAccountNumber */
|
|
141
230
|
KnownPiiEntityCategory["CABankAccountNumber"] = "CABankAccountNumber";
|
|
231
|
+
/** CADriversLicenseNumber */
|
|
142
232
|
KnownPiiEntityCategory["CADriversLicenseNumber"] = "CADriversLicenseNumber";
|
|
233
|
+
/** CAHealthServiceNumber */
|
|
143
234
|
KnownPiiEntityCategory["CAHealthServiceNumber"] = "CAHealthServiceNumber";
|
|
235
|
+
/** CAPassportNumber */
|
|
144
236
|
KnownPiiEntityCategory["CAPassportNumber"] = "CAPassportNumber";
|
|
237
|
+
/** CAPersonalHealthIdentification */
|
|
145
238
|
KnownPiiEntityCategory["CAPersonalHealthIdentification"] = "CAPersonalHealthIdentification";
|
|
239
|
+
/** CASocialInsuranceNumber */
|
|
146
240
|
KnownPiiEntityCategory["CASocialInsuranceNumber"] = "CASocialInsuranceNumber";
|
|
241
|
+
/** CLIdentityCardNumber */
|
|
147
242
|
KnownPiiEntityCategory["CLIdentityCardNumber"] = "CLIdentityCardNumber";
|
|
243
|
+
/** CNResidentIdentityCardNumber */
|
|
148
244
|
KnownPiiEntityCategory["CNResidentIdentityCardNumber"] = "CNResidentIdentityCardNumber";
|
|
245
|
+
/** CreditCardNumber */
|
|
149
246
|
KnownPiiEntityCategory["CreditCardNumber"] = "CreditCardNumber";
|
|
247
|
+
/** HRIdentityCardNumber */
|
|
150
248
|
KnownPiiEntityCategory["HRIdentityCardNumber"] = "HRIdentityCardNumber";
|
|
249
|
+
/** HRNationalIDNumber */
|
|
151
250
|
KnownPiiEntityCategory["HRNationalIDNumber"] = "HRNationalIDNumber";
|
|
251
|
+
/** HRPersonalIdentificationNumber */
|
|
152
252
|
KnownPiiEntityCategory["HRPersonalIdentificationNumber"] = "HRPersonalIdentificationNumber";
|
|
253
|
+
/** HRPersonalIdentificationOIBNumberV2 */
|
|
153
254
|
KnownPiiEntityCategory["HRPersonalIdentificationOIBNumberV2"] = "HRPersonalIdentificationOIBNumberV2";
|
|
255
|
+
/** CYIdentityCard */
|
|
154
256
|
KnownPiiEntityCategory["CYIdentityCard"] = "CYIdentityCard";
|
|
257
|
+
/** CYTaxIdentificationNumber */
|
|
155
258
|
KnownPiiEntityCategory["CYTaxIdentificationNumber"] = "CYTaxIdentificationNumber";
|
|
259
|
+
/** CZPersonalIdentityNumber */
|
|
156
260
|
KnownPiiEntityCategory["CZPersonalIdentityNumber"] = "CZPersonalIdentityNumber";
|
|
261
|
+
/** CZPersonalIdentityV2 */
|
|
157
262
|
KnownPiiEntityCategory["CZPersonalIdentityV2"] = "CZPersonalIdentityV2";
|
|
263
|
+
/** DKPersonalIdentificationNumber */
|
|
158
264
|
KnownPiiEntityCategory["DKPersonalIdentificationNumber"] = "DKPersonalIdentificationNumber";
|
|
265
|
+
/** DKPersonalIdentificationV2 */
|
|
159
266
|
KnownPiiEntityCategory["DKPersonalIdentificationV2"] = "DKPersonalIdentificationV2";
|
|
267
|
+
/** DrugEnforcementAgencyNumber */
|
|
160
268
|
KnownPiiEntityCategory["DrugEnforcementAgencyNumber"] = "DrugEnforcementAgencyNumber";
|
|
269
|
+
/** EEPersonalIdentificationCode */
|
|
161
270
|
KnownPiiEntityCategory["EEPersonalIdentificationCode"] = "EEPersonalIdentificationCode";
|
|
271
|
+
/** EUDebitCardNumber */
|
|
162
272
|
KnownPiiEntityCategory["EUDebitCardNumber"] = "EUDebitCardNumber";
|
|
273
|
+
/** EUDriversLicenseNumber */
|
|
163
274
|
KnownPiiEntityCategory["EUDriversLicenseNumber"] = "EUDriversLicenseNumber";
|
|
275
|
+
/** EugpsCoordinates */
|
|
164
276
|
KnownPiiEntityCategory["EugpsCoordinates"] = "EUGPSCoordinates";
|
|
277
|
+
/** EUNationalIdentificationNumber */
|
|
165
278
|
KnownPiiEntityCategory["EUNationalIdentificationNumber"] = "EUNationalIdentificationNumber";
|
|
279
|
+
/** EUPassportNumber */
|
|
166
280
|
KnownPiiEntityCategory["EUPassportNumber"] = "EUPassportNumber";
|
|
281
|
+
/** EUSocialSecurityNumber */
|
|
167
282
|
KnownPiiEntityCategory["EUSocialSecurityNumber"] = "EUSocialSecurityNumber";
|
|
283
|
+
/** EUTaxIdentificationNumber */
|
|
168
284
|
KnownPiiEntityCategory["EUTaxIdentificationNumber"] = "EUTaxIdentificationNumber";
|
|
285
|
+
/** FIEuropeanHealthNumber */
|
|
169
286
|
KnownPiiEntityCategory["FIEuropeanHealthNumber"] = "FIEuropeanHealthNumber";
|
|
287
|
+
/** FINationalID */
|
|
170
288
|
KnownPiiEntityCategory["FINationalID"] = "FINationalID";
|
|
289
|
+
/** FINationalIDV2 */
|
|
171
290
|
KnownPiiEntityCategory["FINationalIDV2"] = "FINationalIDV2";
|
|
291
|
+
/** FIPassportNumber */
|
|
172
292
|
KnownPiiEntityCategory["FIPassportNumber"] = "FIPassportNumber";
|
|
293
|
+
/** FRDriversLicenseNumber */
|
|
173
294
|
KnownPiiEntityCategory["FRDriversLicenseNumber"] = "FRDriversLicenseNumber";
|
|
295
|
+
/** FRHealthInsuranceNumber */
|
|
174
296
|
KnownPiiEntityCategory["FRHealthInsuranceNumber"] = "FRHealthInsuranceNumber";
|
|
297
|
+
/** FRNationalID */
|
|
175
298
|
KnownPiiEntityCategory["FRNationalID"] = "FRNationalID";
|
|
299
|
+
/** FRPassportNumber */
|
|
176
300
|
KnownPiiEntityCategory["FRPassportNumber"] = "FRPassportNumber";
|
|
301
|
+
/** FRSocialSecurityNumber */
|
|
177
302
|
KnownPiiEntityCategory["FRSocialSecurityNumber"] = "FRSocialSecurityNumber";
|
|
303
|
+
/** FRTaxIdentificationNumber */
|
|
178
304
|
KnownPiiEntityCategory["FRTaxIdentificationNumber"] = "FRTaxIdentificationNumber";
|
|
305
|
+
/** FRValueAddedTaxNumber */
|
|
179
306
|
KnownPiiEntityCategory["FRValueAddedTaxNumber"] = "FRValueAddedTaxNumber";
|
|
307
|
+
/** DEDriversLicenseNumber */
|
|
180
308
|
KnownPiiEntityCategory["DEDriversLicenseNumber"] = "DEDriversLicenseNumber";
|
|
309
|
+
/** DEPassportNumber */
|
|
181
310
|
KnownPiiEntityCategory["DEPassportNumber"] = "DEPassportNumber";
|
|
311
|
+
/** DEIdentityCardNumber */
|
|
182
312
|
KnownPiiEntityCategory["DEIdentityCardNumber"] = "DEIdentityCardNumber";
|
|
313
|
+
/** DETaxIdentificationNumber */
|
|
183
314
|
KnownPiiEntityCategory["DETaxIdentificationNumber"] = "DETaxIdentificationNumber";
|
|
315
|
+
/** DEValueAddedNumber */
|
|
184
316
|
KnownPiiEntityCategory["DEValueAddedNumber"] = "DEValueAddedNumber";
|
|
317
|
+
/** GRNationalIDCard */
|
|
185
318
|
KnownPiiEntityCategory["GRNationalIDCard"] = "GRNationalIDCard";
|
|
319
|
+
/** GRNationalIDV2 */
|
|
186
320
|
KnownPiiEntityCategory["GRNationalIDV2"] = "GRNationalIDV2";
|
|
321
|
+
/** GRTaxIdentificationNumber */
|
|
187
322
|
KnownPiiEntityCategory["GRTaxIdentificationNumber"] = "GRTaxIdentificationNumber";
|
|
323
|
+
/** HKIdentityCardNumber */
|
|
188
324
|
KnownPiiEntityCategory["HKIdentityCardNumber"] = "HKIdentityCardNumber";
|
|
325
|
+
/** HUValueAddedNumber */
|
|
189
326
|
KnownPiiEntityCategory["HUValueAddedNumber"] = "HUValueAddedNumber";
|
|
327
|
+
/** HUPersonalIdentificationNumber */
|
|
190
328
|
KnownPiiEntityCategory["HUPersonalIdentificationNumber"] = "HUPersonalIdentificationNumber";
|
|
329
|
+
/** HUTaxIdentificationNumber */
|
|
191
330
|
KnownPiiEntityCategory["HUTaxIdentificationNumber"] = "HUTaxIdentificationNumber";
|
|
331
|
+
/** INPermanentAccount */
|
|
192
332
|
KnownPiiEntityCategory["INPermanentAccount"] = "INPermanentAccount";
|
|
333
|
+
/** INUniqueIdentificationNumber */
|
|
193
334
|
KnownPiiEntityCategory["INUniqueIdentificationNumber"] = "INUniqueIdentificationNumber";
|
|
335
|
+
/** IDIdentityCardNumber */
|
|
194
336
|
KnownPiiEntityCategory["IDIdentityCardNumber"] = "IDIdentityCardNumber";
|
|
337
|
+
/** InternationalBankingAccountNumber */
|
|
195
338
|
KnownPiiEntityCategory["InternationalBankingAccountNumber"] = "InternationalBankingAccountNumber";
|
|
339
|
+
/** IEPersonalPublicServiceNumber */
|
|
196
340
|
KnownPiiEntityCategory["IEPersonalPublicServiceNumber"] = "IEPersonalPublicServiceNumber";
|
|
341
|
+
/** IEPersonalPublicServiceNumberV2 */
|
|
197
342
|
KnownPiiEntityCategory["IEPersonalPublicServiceNumberV2"] = "IEPersonalPublicServiceNumberV2";
|
|
343
|
+
/** ILBankAccountNumber */
|
|
198
344
|
KnownPiiEntityCategory["ILBankAccountNumber"] = "ILBankAccountNumber";
|
|
345
|
+
/** ILNationalID */
|
|
199
346
|
KnownPiiEntityCategory["ILNationalID"] = "ILNationalID";
|
|
347
|
+
/** ITDriversLicenseNumber */
|
|
200
348
|
KnownPiiEntityCategory["ITDriversLicenseNumber"] = "ITDriversLicenseNumber";
|
|
349
|
+
/** ITFiscalCode */
|
|
201
350
|
KnownPiiEntityCategory["ITFiscalCode"] = "ITFiscalCode";
|
|
351
|
+
/** ITValueAddedTaxNumber */
|
|
202
352
|
KnownPiiEntityCategory["ITValueAddedTaxNumber"] = "ITValueAddedTaxNumber";
|
|
353
|
+
/** JPBankAccountNumber */
|
|
203
354
|
KnownPiiEntityCategory["JPBankAccountNumber"] = "JPBankAccountNumber";
|
|
355
|
+
/** JPDriversLicenseNumber */
|
|
204
356
|
KnownPiiEntityCategory["JPDriversLicenseNumber"] = "JPDriversLicenseNumber";
|
|
357
|
+
/** JPPassportNumber */
|
|
205
358
|
KnownPiiEntityCategory["JPPassportNumber"] = "JPPassportNumber";
|
|
359
|
+
/** JPResidentRegistrationNumber */
|
|
206
360
|
KnownPiiEntityCategory["JPResidentRegistrationNumber"] = "JPResidentRegistrationNumber";
|
|
361
|
+
/** JPSocialInsuranceNumber */
|
|
207
362
|
KnownPiiEntityCategory["JPSocialInsuranceNumber"] = "JPSocialInsuranceNumber";
|
|
363
|
+
/** JPMyNumberCorporate */
|
|
208
364
|
KnownPiiEntityCategory["JPMyNumberCorporate"] = "JPMyNumberCorporate";
|
|
365
|
+
/** JPMyNumberPersonal */
|
|
209
366
|
KnownPiiEntityCategory["JPMyNumberPersonal"] = "JPMyNumberPersonal";
|
|
367
|
+
/** JPResidenceCardNumber */
|
|
210
368
|
KnownPiiEntityCategory["JPResidenceCardNumber"] = "JPResidenceCardNumber";
|
|
369
|
+
/** LVPersonalCode */
|
|
211
370
|
KnownPiiEntityCategory["LVPersonalCode"] = "LVPersonalCode";
|
|
371
|
+
/** LTPersonalCode */
|
|
212
372
|
KnownPiiEntityCategory["LTPersonalCode"] = "LTPersonalCode";
|
|
373
|
+
/** LUNationalIdentificationNumberNatural */
|
|
213
374
|
KnownPiiEntityCategory["LUNationalIdentificationNumberNatural"] = "LUNationalIdentificationNumberNatural";
|
|
375
|
+
/** LUNationalIdentificationNumberNonNatural */
|
|
214
376
|
KnownPiiEntityCategory["LUNationalIdentificationNumberNonNatural"] = "LUNationalIdentificationNumberNonNatural";
|
|
377
|
+
/** MYIdentityCardNumber */
|
|
215
378
|
KnownPiiEntityCategory["MYIdentityCardNumber"] = "MYIdentityCardNumber";
|
|
379
|
+
/** MTIdentityCardNumber */
|
|
216
380
|
KnownPiiEntityCategory["MTIdentityCardNumber"] = "MTIdentityCardNumber";
|
|
381
|
+
/** MTTaxIDNumber */
|
|
217
382
|
KnownPiiEntityCategory["MTTaxIDNumber"] = "MTTaxIDNumber";
|
|
383
|
+
/** NLCitizensServiceNumber */
|
|
218
384
|
KnownPiiEntityCategory["NLCitizensServiceNumber"] = "NLCitizensServiceNumber";
|
|
385
|
+
/** NLCitizensServiceNumberV2 */
|
|
219
386
|
KnownPiiEntityCategory["NLCitizensServiceNumberV2"] = "NLCitizensServiceNumberV2";
|
|
387
|
+
/** NLTaxIdentificationNumber */
|
|
220
388
|
KnownPiiEntityCategory["NLTaxIdentificationNumber"] = "NLTaxIdentificationNumber";
|
|
389
|
+
/** NLValueAddedTaxNumber */
|
|
221
390
|
KnownPiiEntityCategory["NLValueAddedTaxNumber"] = "NLValueAddedTaxNumber";
|
|
391
|
+
/** NZBankAccountNumber */
|
|
222
392
|
KnownPiiEntityCategory["NZBankAccountNumber"] = "NZBankAccountNumber";
|
|
393
|
+
/** NZDriversLicenseNumber */
|
|
223
394
|
KnownPiiEntityCategory["NZDriversLicenseNumber"] = "NZDriversLicenseNumber";
|
|
395
|
+
/** NZInlandRevenueNumber */
|
|
224
396
|
KnownPiiEntityCategory["NZInlandRevenueNumber"] = "NZInlandRevenueNumber";
|
|
397
|
+
/** NZMinistryOfHealthNumber */
|
|
225
398
|
KnownPiiEntityCategory["NZMinistryOfHealthNumber"] = "NZMinistryOfHealthNumber";
|
|
399
|
+
/** NZSocialWelfareNumber */
|
|
226
400
|
KnownPiiEntityCategory["NZSocialWelfareNumber"] = "NZSocialWelfareNumber";
|
|
401
|
+
/** NOIdentityNumber */
|
|
227
402
|
KnownPiiEntityCategory["NOIdentityNumber"] = "NOIdentityNumber";
|
|
403
|
+
/** PHUnifiedMultiPurposeIDNumber */
|
|
228
404
|
KnownPiiEntityCategory["PHUnifiedMultiPurposeIDNumber"] = "PHUnifiedMultiPurposeIDNumber";
|
|
405
|
+
/** PLIdentityCard */
|
|
229
406
|
KnownPiiEntityCategory["PLIdentityCard"] = "PLIdentityCard";
|
|
407
|
+
/** PLNationalID */
|
|
230
408
|
KnownPiiEntityCategory["PLNationalID"] = "PLNationalID";
|
|
409
|
+
/** PLNationalIDV2 */
|
|
231
410
|
KnownPiiEntityCategory["PLNationalIDV2"] = "PLNationalIDV2";
|
|
411
|
+
/** PLPassportNumber */
|
|
232
412
|
KnownPiiEntityCategory["PLPassportNumber"] = "PLPassportNumber";
|
|
413
|
+
/** PLTaxIdentificationNumber */
|
|
233
414
|
KnownPiiEntityCategory["PLTaxIdentificationNumber"] = "PLTaxIdentificationNumber";
|
|
415
|
+
/** PlregonNumber */
|
|
234
416
|
KnownPiiEntityCategory["PlregonNumber"] = "PLREGONNumber";
|
|
417
|
+
/** PTCitizenCardNumber */
|
|
235
418
|
KnownPiiEntityCategory["PTCitizenCardNumber"] = "PTCitizenCardNumber";
|
|
419
|
+
/** PTCitizenCardNumberV2 */
|
|
236
420
|
KnownPiiEntityCategory["PTCitizenCardNumberV2"] = "PTCitizenCardNumberV2";
|
|
421
|
+
/** PTTaxIdentificationNumber */
|
|
237
422
|
KnownPiiEntityCategory["PTTaxIdentificationNumber"] = "PTTaxIdentificationNumber";
|
|
423
|
+
/** ROPersonalNumericalCode */
|
|
238
424
|
KnownPiiEntityCategory["ROPersonalNumericalCode"] = "ROPersonalNumericalCode";
|
|
425
|
+
/** RUPassportNumberDomestic */
|
|
239
426
|
KnownPiiEntityCategory["RUPassportNumberDomestic"] = "RUPassportNumberDomestic";
|
|
427
|
+
/** RUPassportNumberInternational */
|
|
240
428
|
KnownPiiEntityCategory["RUPassportNumberInternational"] = "RUPassportNumberInternational";
|
|
429
|
+
/** SANationalID */
|
|
241
430
|
KnownPiiEntityCategory["SANationalID"] = "SANationalID";
|
|
431
|
+
/** SGNationalRegistrationIdentityCardNumber */
|
|
242
432
|
KnownPiiEntityCategory["SGNationalRegistrationIdentityCardNumber"] = "SGNationalRegistrationIdentityCardNumber";
|
|
433
|
+
/** SKPersonalNumber */
|
|
243
434
|
KnownPiiEntityCategory["SKPersonalNumber"] = "SKPersonalNumber";
|
|
435
|
+
/** SITaxIdentificationNumber */
|
|
244
436
|
KnownPiiEntityCategory["SITaxIdentificationNumber"] = "SITaxIdentificationNumber";
|
|
437
|
+
/** SIUniqueMasterCitizenNumber */
|
|
245
438
|
KnownPiiEntityCategory["SIUniqueMasterCitizenNumber"] = "SIUniqueMasterCitizenNumber";
|
|
439
|
+
/** ZAIdentificationNumber */
|
|
246
440
|
KnownPiiEntityCategory["ZAIdentificationNumber"] = "ZAIdentificationNumber";
|
|
441
|
+
/** KRResidentRegistrationNumber */
|
|
247
442
|
KnownPiiEntityCategory["KRResidentRegistrationNumber"] = "KRResidentRegistrationNumber";
|
|
443
|
+
/** Esdni */
|
|
248
444
|
KnownPiiEntityCategory["Esdni"] = "ESDNI";
|
|
445
|
+
/** ESSocialSecurityNumber */
|
|
249
446
|
KnownPiiEntityCategory["ESSocialSecurityNumber"] = "ESSocialSecurityNumber";
|
|
447
|
+
/** ESTaxIdentificationNumber */
|
|
250
448
|
KnownPiiEntityCategory["ESTaxIdentificationNumber"] = "ESTaxIdentificationNumber";
|
|
449
|
+
/** SQLServerConnectionString */
|
|
251
450
|
KnownPiiEntityCategory["SQLServerConnectionString"] = "SQLServerConnectionString";
|
|
451
|
+
/** SENationalID */
|
|
252
452
|
KnownPiiEntityCategory["SENationalID"] = "SENationalID";
|
|
453
|
+
/** SENationalIDV2 */
|
|
253
454
|
KnownPiiEntityCategory["SENationalIDV2"] = "SENationalIDV2";
|
|
455
|
+
/** SEPassportNumber */
|
|
254
456
|
KnownPiiEntityCategory["SEPassportNumber"] = "SEPassportNumber";
|
|
457
|
+
/** SETaxIdentificationNumber */
|
|
255
458
|
KnownPiiEntityCategory["SETaxIdentificationNumber"] = "SETaxIdentificationNumber";
|
|
459
|
+
/** SwiftCode */
|
|
256
460
|
KnownPiiEntityCategory["SwiftCode"] = "SWIFTCode";
|
|
461
|
+
/** CHSocialSecurityNumber */
|
|
257
462
|
KnownPiiEntityCategory["CHSocialSecurityNumber"] = "CHSocialSecurityNumber";
|
|
463
|
+
/** TWNationalID */
|
|
258
464
|
KnownPiiEntityCategory["TWNationalID"] = "TWNationalID";
|
|
465
|
+
/** TWPassportNumber */
|
|
259
466
|
KnownPiiEntityCategory["TWPassportNumber"] = "TWPassportNumber";
|
|
467
|
+
/** TWResidentCertificate */
|
|
260
468
|
KnownPiiEntityCategory["TWResidentCertificate"] = "TWResidentCertificate";
|
|
469
|
+
/** THPopulationIdentificationCode */
|
|
261
470
|
KnownPiiEntityCategory["THPopulationIdentificationCode"] = "THPopulationIdentificationCode";
|
|
471
|
+
/** TRNationalIdentificationNumber */
|
|
262
472
|
KnownPiiEntityCategory["TRNationalIdentificationNumber"] = "TRNationalIdentificationNumber";
|
|
473
|
+
/** UKDriversLicenseNumber */
|
|
263
474
|
KnownPiiEntityCategory["UKDriversLicenseNumber"] = "UKDriversLicenseNumber";
|
|
475
|
+
/** UKElectoralRollNumber */
|
|
264
476
|
KnownPiiEntityCategory["UKElectoralRollNumber"] = "UKElectoralRollNumber";
|
|
477
|
+
/** UKNationalHealthNumber */
|
|
265
478
|
KnownPiiEntityCategory["UKNationalHealthNumber"] = "UKNationalHealthNumber";
|
|
479
|
+
/** UKNationalInsuranceNumber */
|
|
266
480
|
KnownPiiEntityCategory["UKNationalInsuranceNumber"] = "UKNationalInsuranceNumber";
|
|
481
|
+
/** UKUniqueTaxpayerNumber */
|
|
267
482
|
KnownPiiEntityCategory["UKUniqueTaxpayerNumber"] = "UKUniqueTaxpayerNumber";
|
|
483
|
+
/** UsukPassportNumber */
|
|
268
484
|
KnownPiiEntityCategory["UsukPassportNumber"] = "USUKPassportNumber";
|
|
485
|
+
/** USBankAccountNumber */
|
|
269
486
|
KnownPiiEntityCategory["USBankAccountNumber"] = "USBankAccountNumber";
|
|
487
|
+
/** USDriversLicenseNumber */
|
|
270
488
|
KnownPiiEntityCategory["USDriversLicenseNumber"] = "USDriversLicenseNumber";
|
|
489
|
+
/** USIndividualTaxpayerIdentification */
|
|
271
490
|
KnownPiiEntityCategory["USIndividualTaxpayerIdentification"] = "USIndividualTaxpayerIdentification";
|
|
491
|
+
/** USSocialSecurityNumber */
|
|
272
492
|
KnownPiiEntityCategory["USSocialSecurityNumber"] = "USSocialSecurityNumber";
|
|
493
|
+
/** UAPassportNumberDomestic */
|
|
273
494
|
KnownPiiEntityCategory["UAPassportNumberDomestic"] = "UAPassportNumberDomestic";
|
|
495
|
+
/** UAPassportNumberInternational */
|
|
274
496
|
KnownPiiEntityCategory["UAPassportNumberInternational"] = "UAPassportNumberInternational";
|
|
497
|
+
/** Organization */
|
|
275
498
|
KnownPiiEntityCategory["Organization"] = "Organization";
|
|
499
|
+
/** Email */
|
|
276
500
|
KnownPiiEntityCategory["Email"] = "Email";
|
|
501
|
+
/** URL */
|
|
277
502
|
KnownPiiEntityCategory["URL"] = "URL";
|
|
503
|
+
/** Age */
|
|
278
504
|
KnownPiiEntityCategory["Age"] = "Age";
|
|
505
|
+
/** PhoneNumber */
|
|
279
506
|
KnownPiiEntityCategory["PhoneNumber"] = "PhoneNumber";
|
|
507
|
+
/** IPAddress */
|
|
280
508
|
KnownPiiEntityCategory["IPAddress"] = "IPAddress";
|
|
509
|
+
/** Date */
|
|
281
510
|
KnownPiiEntityCategory["Date"] = "Date";
|
|
511
|
+
/** Person */
|
|
282
512
|
KnownPiiEntityCategory["Person"] = "Person";
|
|
513
|
+
/** Address */
|
|
283
514
|
KnownPiiEntityCategory["Address"] = "Address";
|
|
515
|
+
/** All */
|
|
284
516
|
KnownPiiEntityCategory["All"] = "All";
|
|
517
|
+
/** Default */
|
|
285
518
|
KnownPiiEntityCategory["Default"] = "Default";
|
|
286
519
|
})(KnownPiiEntityCategory || (KnownPiiEntityCategory = {}));
|
|
287
520
|
/** Known values of {@link WarningCode} that the service accepts. */
|
|
288
521
|
export var KnownWarningCode;
|
|
289
522
|
(function (KnownWarningCode) {
|
|
523
|
+
/** LongWordsInDocument */
|
|
290
524
|
KnownWarningCode["LongWordsInDocument"] = "LongWordsInDocument";
|
|
525
|
+
/** DocumentTruncated */
|
|
291
526
|
KnownWarningCode["DocumentTruncated"] = "DocumentTruncated";
|
|
292
527
|
})(KnownWarningCode || (KnownWarningCode = {}));
|
|
293
528
|
/** Known values of {@link FhirVersion} that the service accepts. */
|
|
294
529
|
export var KnownFhirVersion;
|
|
295
530
|
(function (KnownFhirVersion) {
|
|
531
|
+
/** Four01 */
|
|
296
532
|
KnownFhirVersion["Four01"] = "4.0.1";
|
|
297
533
|
})(KnownFhirVersion || (KnownFhirVersion = {}));
|
|
298
534
|
/** Known values of {@link HealthcareEntityCategory} that the service accepts. */
|
|
299
535
|
export var KnownHealthcareEntityCategory;
|
|
300
536
|
(function (KnownHealthcareEntityCategory) {
|
|
537
|
+
/** BodyStructure */
|
|
301
538
|
KnownHealthcareEntityCategory["BodyStructure"] = "BODY_STRUCTURE";
|
|
539
|
+
/** AGE */
|
|
302
540
|
KnownHealthcareEntityCategory["AGE"] = "AGE";
|
|
541
|
+
/** Gender */
|
|
303
542
|
KnownHealthcareEntityCategory["Gender"] = "GENDER";
|
|
543
|
+
/** ExaminationName */
|
|
304
544
|
KnownHealthcareEntityCategory["ExaminationName"] = "EXAMINATION_NAME";
|
|
545
|
+
/** Date */
|
|
305
546
|
KnownHealthcareEntityCategory["Date"] = "DATE";
|
|
547
|
+
/** Direction */
|
|
306
548
|
KnownHealthcareEntityCategory["Direction"] = "DIRECTION";
|
|
549
|
+
/** Frequency */
|
|
307
550
|
KnownHealthcareEntityCategory["Frequency"] = "FREQUENCY";
|
|
551
|
+
/** MeasurementValue */
|
|
308
552
|
KnownHealthcareEntityCategory["MeasurementValue"] = "MEASUREMENT_VALUE";
|
|
553
|
+
/** MeasurementUnit */
|
|
309
554
|
KnownHealthcareEntityCategory["MeasurementUnit"] = "MEASUREMENT_UNIT";
|
|
555
|
+
/** RelationalOperator */
|
|
310
556
|
KnownHealthcareEntityCategory["RelationalOperator"] = "RELATIONAL_OPERATOR";
|
|
557
|
+
/** Time */
|
|
311
558
|
KnownHealthcareEntityCategory["Time"] = "TIME";
|
|
559
|
+
/** GeneORProtein */
|
|
312
560
|
KnownHealthcareEntityCategory["GeneORProtein"] = "GENE_OR_PROTEIN";
|
|
561
|
+
/** Variant */
|
|
313
562
|
KnownHealthcareEntityCategory["Variant"] = "VARIANT";
|
|
563
|
+
/** AdministrativeEvent */
|
|
314
564
|
KnownHealthcareEntityCategory["AdministrativeEvent"] = "ADMINISTRATIVE_EVENT";
|
|
565
|
+
/** CareEnvironment */
|
|
315
566
|
KnownHealthcareEntityCategory["CareEnvironment"] = "CARE_ENVIRONMENT";
|
|
567
|
+
/** HealthcareProfession */
|
|
316
568
|
KnownHealthcareEntityCategory["HealthcareProfession"] = "HEALTHCARE_PROFESSION";
|
|
569
|
+
/** Diagnosis */
|
|
317
570
|
KnownHealthcareEntityCategory["Diagnosis"] = "DIAGNOSIS";
|
|
571
|
+
/** SymptomORSign */
|
|
318
572
|
KnownHealthcareEntityCategory["SymptomORSign"] = "SYMPTOM_OR_SIGN";
|
|
573
|
+
/** ConditionQualifier */
|
|
319
574
|
KnownHealthcareEntityCategory["ConditionQualifier"] = "CONDITION_QUALIFIER";
|
|
575
|
+
/** MedicationClass */
|
|
320
576
|
KnownHealthcareEntityCategory["MedicationClass"] = "MEDICATION_CLASS";
|
|
577
|
+
/** MedicationName */
|
|
321
578
|
KnownHealthcareEntityCategory["MedicationName"] = "MEDICATION_NAME";
|
|
579
|
+
/** Dosage */
|
|
322
580
|
KnownHealthcareEntityCategory["Dosage"] = "DOSAGE";
|
|
581
|
+
/** MedicationForm */
|
|
323
582
|
KnownHealthcareEntityCategory["MedicationForm"] = "MEDICATION_FORM";
|
|
583
|
+
/** MedicationRoute */
|
|
324
584
|
KnownHealthcareEntityCategory["MedicationRoute"] = "MEDICATION_ROUTE";
|
|
585
|
+
/** FamilyRelation */
|
|
325
586
|
KnownHealthcareEntityCategory["FamilyRelation"] = "FAMILY_RELATION";
|
|
587
|
+
/** TreatmentName */
|
|
326
588
|
KnownHealthcareEntityCategory["TreatmentName"] = "TREATMENT_NAME";
|
|
327
589
|
})(KnownHealthcareEntityCategory || (KnownHealthcareEntityCategory = {}));
|
|
328
590
|
/** Known values of {@link RelationType} that the service accepts. */
|
|
329
591
|
export var KnownRelationType;
|
|
330
592
|
(function (KnownRelationType) {
|
|
593
|
+
/** Abbreviation */
|
|
331
594
|
KnownRelationType["Abbreviation"] = "Abbreviation";
|
|
595
|
+
/** DirectionOfBodyStructure */
|
|
332
596
|
KnownRelationType["DirectionOfBodyStructure"] = "DirectionOfBodyStructure";
|
|
597
|
+
/** DirectionOfCondition */
|
|
333
598
|
KnownRelationType["DirectionOfCondition"] = "DirectionOfCondition";
|
|
599
|
+
/** DirectionOfExamination */
|
|
334
600
|
KnownRelationType["DirectionOfExamination"] = "DirectionOfExamination";
|
|
601
|
+
/** DirectionOfTreatment */
|
|
335
602
|
KnownRelationType["DirectionOfTreatment"] = "DirectionOfTreatment";
|
|
603
|
+
/** DosageOfMedication */
|
|
336
604
|
KnownRelationType["DosageOfMedication"] = "DosageOfMedication";
|
|
605
|
+
/** FormOfMedication */
|
|
337
606
|
KnownRelationType["FormOfMedication"] = "FormOfMedication";
|
|
607
|
+
/** FrequencyOfMedication */
|
|
338
608
|
KnownRelationType["FrequencyOfMedication"] = "FrequencyOfMedication";
|
|
609
|
+
/** FrequencyOfTreatment */
|
|
339
610
|
KnownRelationType["FrequencyOfTreatment"] = "FrequencyOfTreatment";
|
|
611
|
+
/** QualifierOfCondition */
|
|
340
612
|
KnownRelationType["QualifierOfCondition"] = "QualifierOfCondition";
|
|
613
|
+
/** RelationOfExamination */
|
|
341
614
|
KnownRelationType["RelationOfExamination"] = "RelationOfExamination";
|
|
615
|
+
/** RouteOfMedication */
|
|
342
616
|
KnownRelationType["RouteOfMedication"] = "RouteOfMedication";
|
|
617
|
+
/** TimeOfCondition */
|
|
343
618
|
KnownRelationType["TimeOfCondition"] = "TimeOfCondition";
|
|
619
|
+
/** TimeOfEvent */
|
|
344
620
|
KnownRelationType["TimeOfEvent"] = "TimeOfEvent";
|
|
621
|
+
/** TimeOfExamination */
|
|
345
622
|
KnownRelationType["TimeOfExamination"] = "TimeOfExamination";
|
|
623
|
+
/** TimeOfMedication */
|
|
346
624
|
KnownRelationType["TimeOfMedication"] = "TimeOfMedication";
|
|
625
|
+
/** TimeOfTreatment */
|
|
347
626
|
KnownRelationType["TimeOfTreatment"] = "TimeOfTreatment";
|
|
627
|
+
/** UnitOfCondition */
|
|
348
628
|
KnownRelationType["UnitOfCondition"] = "UnitOfCondition";
|
|
629
|
+
/** UnitOfExamination */
|
|
349
630
|
KnownRelationType["UnitOfExamination"] = "UnitOfExamination";
|
|
631
|
+
/** ValueOfCondition */
|
|
350
632
|
KnownRelationType["ValueOfCondition"] = "ValueOfCondition";
|
|
633
|
+
/** ValueOfExamination */
|
|
351
634
|
KnownRelationType["ValueOfExamination"] = "ValueOfExamination";
|
|
352
635
|
})(KnownRelationType || (KnownRelationType = {}));
|
|
353
636
|
/** Known values of {@link ExtractiveSummarizationOrderingCriteria} that the service accepts. */
|