@azure-rest/health-insights-radiologyinsights 1.0.0-alpha.20250401.1 → 1.0.0-alpha.20250402.1

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.
@@ -0,0 +1,1361 @@
1
+ ## API Report File for "@azure-rest/health-insights-radiologyinsights"
2
+
3
+ > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
4
+
5
+ ```ts
6
+
7
+ import type { Client } from '@azure-rest/core-client';
8
+ import type { ClientOptions } from '@azure-rest/core-client';
9
+ import type { CreateHttpPollerOptions } from '@azure/core-lro';
10
+ import type { ErrorModel } from '@azure-rest/core-client';
11
+ import type { HttpResponse } from '@azure-rest/core-client';
12
+ import type { OperationState } from '@azure/core-lro';
13
+ import type { RawHttpHeaders } from '@azure/core-rest-pipeline';
14
+ import type { RequestParameters } from '@azure-rest/core-client';
15
+ import type { SimplePollerLike } from '@azure/core-lro';
16
+ import type { StreamableMethod } from '@azure-rest/core-client';
17
+ import type { TokenCredential } from '@azure/core-auth';
18
+
19
+ // @public
20
+ export interface AgeMismatchInference extends RadiologyInsightsInferenceParent {
21
+ kind: "ageMismatch";
22
+ }
23
+
24
+ // @public
25
+ export interface AgeMismatchInferenceOutput extends RadiologyInsightsInferenceOutputParent {
26
+ kind: "ageMismatch";
27
+ }
28
+
29
+ // @public
30
+ export interface Annotation extends Element_2 {
31
+ authorString?: string;
32
+ text: string;
33
+ time?: string;
34
+ }
35
+
36
+ // @public
37
+ export interface AnnotationOutput extends ElementOutput {
38
+ authorString?: string;
39
+ text: string;
40
+ time?: string;
41
+ }
42
+
43
+ // @public
44
+ export type AzureHealthInsightsClient = Client & {
45
+ path: Routes;
46
+ };
47
+
48
+ // @public
49
+ export function buildMultiCollection(items: string[], parameterName: string): string;
50
+
51
+ // @public
52
+ export type ClinicalDocumentType = ClinicalDocumentTypeEnum;
53
+
54
+ // @public
55
+ export enum ClinicalDocumentTypeEnum {
56
+ Consultation = "consultation",
57
+ DischargeSummary = "dischargeSummary",
58
+ HistoryAndPhysical = "historyAndPhysical",
59
+ Laboratory = "laboratory",
60
+ Procedure = "procedure",
61
+ Progress = "progress",
62
+ RadiologyReport = "radiologyReport"
63
+ }
64
+
65
+ // @public
66
+ export type ClinicalDocumentTypeOutput = ClinicalDocumentTypeOutputEnum;
67
+
68
+ // @public
69
+ export enum ClinicalDocumentTypeOutputEnum {
70
+ Consultation = "consultation",
71
+ DischargeSummary = "dischargeSummary",
72
+ HistoryAndPhysical = "historyAndPhysical",
73
+ Laboratory = "laboratory",
74
+ Procedure = "procedure",
75
+ Progress = "progress",
76
+ RadiologyReport = "radiologyReport"
77
+ }
78
+
79
+ // @public
80
+ export interface CodeableConcept extends Element_2 {
81
+ coding?: Array<Coding>;
82
+ text?: string;
83
+ }
84
+
85
+ // @public
86
+ export interface CodeableConceptOutput extends ElementOutput {
87
+ coding?: Array<CodingOutput>;
88
+ text?: string;
89
+ }
90
+
91
+ // @public
92
+ export interface Coding extends Element_2 {
93
+ code?: string;
94
+ display?: string;
95
+ system?: string;
96
+ version?: string;
97
+ }
98
+
99
+ // @public
100
+ export interface CodingOutput extends ElementOutput {
101
+ code?: string;
102
+ display?: string;
103
+ system?: string;
104
+ version?: string;
105
+ }
106
+
107
+ // @public
108
+ export interface CompleteOrderDiscrepancyInference extends RadiologyInsightsInferenceParent {
109
+ kind: "completeOrderDiscrepancy";
110
+ missingBodyPartMeasurements?: Array<CodeableConcept>;
111
+ missingBodyParts?: Array<CodeableConcept>;
112
+ orderType: CodeableConcept;
113
+ }
114
+
115
+ // @public
116
+ export interface CompleteOrderDiscrepancyInferenceOutput extends RadiologyInsightsInferenceOutputParent {
117
+ kind: "completeOrderDiscrepancy";
118
+ missingBodyPartMeasurements?: Array<CodeableConceptOutput>;
119
+ missingBodyParts?: Array<CodeableConceptOutput>;
120
+ orderType: CodeableConceptOutput;
121
+ }
122
+
123
+ // @public
124
+ export interface Condition extends DomainResourceParent {
125
+ abatementAge?: Quantity;
126
+ abatementDateTime?: string;
127
+ abatementPeriod?: Period;
128
+ abatementRange?: Range_2;
129
+ abatementString?: string;
130
+ bodySite?: Array<CodeableConcept>;
131
+ category?: Array<CodeableConcept>;
132
+ clinicalStatus?: CodeableConcept;
133
+ code?: CodeableConcept;
134
+ encounter?: Reference;
135
+ identifier?: Array<Identifier>;
136
+ note?: Array<Annotation>;
137
+ onsetAge?: Quantity;
138
+ onsetDateTime?: string;
139
+ onsetPeriod?: Period;
140
+ onsetRange?: Range_2;
141
+ onsetString?: string;
142
+ recordedDate?: string;
143
+ resourceType: "Condition";
144
+ severity?: CodeableConcept;
145
+ stage?: Array<ConditionStage>;
146
+ verificationStatus?: CodeableConcept;
147
+ }
148
+
149
+ // @public
150
+ export interface ConditionOutput extends DomainResourceOutputParent {
151
+ abatementAge?: QuantityOutput;
152
+ abatementDateTime?: string;
153
+ abatementPeriod?: PeriodOutput;
154
+ abatementRange?: RangeOutput;
155
+ abatementString?: string;
156
+ bodySite?: Array<CodeableConceptOutput>;
157
+ category?: Array<CodeableConceptOutput>;
158
+ clinicalStatus?: CodeableConceptOutput;
159
+ code?: CodeableConceptOutput;
160
+ encounter?: ReferenceOutput;
161
+ identifier?: Array<IdentifierOutput>;
162
+ note?: Array<AnnotationOutput>;
163
+ onsetAge?: QuantityOutput;
164
+ onsetDateTime?: string;
165
+ onsetPeriod?: PeriodOutput;
166
+ onsetRange?: RangeOutput;
167
+ onsetString?: string;
168
+ recordedDate?: string;
169
+ resourceType: "Condition";
170
+ severity?: CodeableConceptOutput;
171
+ stage?: Array<ConditionStageOutput>;
172
+ verificationStatus?: CodeableConceptOutput;
173
+ }
174
+
175
+ // @public
176
+ export interface ConditionStage {
177
+ summary?: CodeableConcept;
178
+ type?: CodeableConcept;
179
+ }
180
+
181
+ // @public
182
+ export interface ConditionStageOutput {
183
+ summary?: CodeableConceptOutput;
184
+ type?: CodeableConceptOutput;
185
+ }
186
+
187
+ // @public
188
+ export interface ContactDetail extends Element_2 {
189
+ name?: string;
190
+ telecom?: Array<ContactPoint>;
191
+ }
192
+
193
+ // @public
194
+ export interface ContactDetailOutput extends ElementOutput {
195
+ name?: string;
196
+ telecom?: Array<ContactPointOutput>;
197
+ }
198
+
199
+ // @public
200
+ export interface ContactPoint {
201
+ period?: Period;
202
+ rank?: number;
203
+ system?: ContactPointSystem;
204
+ use?: ContactPointUse;
205
+ value?: string;
206
+ }
207
+
208
+ // @public
209
+ export interface ContactPointOutput {
210
+ period?: PeriodOutput;
211
+ rank?: number;
212
+ system?: ContactPointSystemOutput;
213
+ use?: ContactPointUseOutput;
214
+ value?: string;
215
+ }
216
+
217
+ // @public
218
+ export type ContactPointSystem = string | "phone" | "fax" | "email" | "pager" | "url" | "sms" | "other";
219
+
220
+ // @public
221
+ export type ContactPointSystemOutput = string | "phone" | "fax" | "email" | "pager" | "url" | "sms" | "other";
222
+
223
+ // @public
224
+ export type ContactPointUse = string | "home" | "work" | "temp" | "old" | "mobile";
225
+
226
+ // @public
227
+ export type ContactPointUseOutput = string | "home" | "work" | "temp" | "old" | "mobile";
228
+
229
+ // @public
230
+ function createClient(endpointParam: string, credentials: TokenCredential, options?: ClientOptions): AzureHealthInsightsClient;
231
+ export default createClient;
232
+
233
+ // @public
234
+ export interface CreateJob200Headers {
235
+ "operation-location": string;
236
+ "x-ms-request-id"?: string;
237
+ }
238
+
239
+ // @public
240
+ export interface CreateJob200Response extends HttpResponse {
241
+ body: RadiologyInsightsJobOutput;
242
+ headers: RawHttpHeaders & CreateJob200Headers;
243
+ status: "200";
244
+ }
245
+
246
+ // @public
247
+ export interface CreateJob201Headers {
248
+ "operation-location": string;
249
+ "x-ms-request-id"?: string;
250
+ }
251
+
252
+ // @public
253
+ export interface CreateJob201Response extends HttpResponse {
254
+ body: RadiologyInsightsJobOutput;
255
+ headers: RawHttpHeaders & CreateJob201Headers;
256
+ status: "201";
257
+ }
258
+
259
+ // @public
260
+ export interface CreateJobBodyParam {
261
+ body: RadiologyInsightsJob;
262
+ }
263
+
264
+ // @public
265
+ export interface CreateJobDefaultHeaders {
266
+ "x-ms-error-code"?: string;
267
+ "x-ms-request-id"?: string;
268
+ }
269
+
270
+ // @public
271
+ export interface CreateJobDefaultResponse extends HttpResponse {
272
+ body: HealthInsightsErrorResponseOutput;
273
+ headers: RawHttpHeaders & CreateJobDefaultHeaders;
274
+ status: string;
275
+ }
276
+
277
+ // @public
278
+ export interface CreateJobLogicalResponse extends HttpResponse {
279
+ body: RadiologyInsightsJobOutput;
280
+ status: "200";
281
+ }
282
+
283
+ // @public
284
+ export type CreateJobParameters = CreateJobQueryParam & CreateJobBodyParam & RequestParameters;
285
+
286
+ // @public
287
+ export interface CreateJobQueryParam {
288
+ queryParameters?: CreateJobQueryParamProperties;
289
+ }
290
+
291
+ // @public
292
+ export interface CreateJobQueryParamProperties {
293
+ expand?: string;
294
+ }
295
+
296
+ // @public
297
+ export interface CriticalResult {
298
+ description: string;
299
+ finding?: Observation;
300
+ }
301
+
302
+ // @public
303
+ export interface CriticalResultInference extends RadiologyInsightsInferenceParent {
304
+ kind: "criticalResult";
305
+ result: CriticalResult;
306
+ }
307
+
308
+ // @public
309
+ export interface CriticalResultInferenceOutput extends RadiologyInsightsInferenceOutputParent {
310
+ kind: "criticalResult";
311
+ result: CriticalResultOutput;
312
+ }
313
+
314
+ // @public
315
+ export interface CriticalResultOutput {
316
+ description: string;
317
+ finding?: ObservationOutput;
318
+ }
319
+
320
+ // @public
321
+ export interface DocumentAdministrativeMetadata {
322
+ encounterId?: string;
323
+ orderedProcedures?: Array<OrderedProcedure>;
324
+ }
325
+
326
+ // @public
327
+ export interface DocumentAdministrativeMetadataOutput {
328
+ encounterId?: string;
329
+ orderedProcedures?: Array<OrderedProcedureOutput>;
330
+ }
331
+
332
+ // @public
333
+ export interface DocumentAuthor {
334
+ fullName?: string;
335
+ id?: string;
336
+ }
337
+
338
+ // @public
339
+ export interface DocumentAuthorOutput {
340
+ fullName?: string;
341
+ id?: string;
342
+ }
343
+
344
+ // @public
345
+ export interface DocumentContent {
346
+ sourceType: DocumentContentSourceType;
347
+ value: string;
348
+ }
349
+
350
+ // @public
351
+ export interface DocumentContentOutput {
352
+ sourceType: DocumentContentSourceTypeOutput;
353
+ value: string;
354
+ }
355
+
356
+ // @public
357
+ export type DocumentContentSourceType = string | "inline" | "reference";
358
+
359
+ // @public
360
+ export type DocumentContentSourceTypeOutput = string | "inline" | "reference";
361
+
362
+ // @public
363
+ type DocumentType_2 = string | "note" | "fhirBundle" | "dicom" | "genomicSequencing";
364
+ export { DocumentType_2 as DocumentType }
365
+
366
+ // @public
367
+ export type DocumentTypeOutput = string | "note" | "fhirBundle" | "dicom" | "genomicSequencing";
368
+
369
+ // @public
370
+ export type DomainResource = DomainResourceParent | Observation | Condition | ResearchStudy;
371
+
372
+ // @public
373
+ export type DomainResourceOutput = DomainResourceOutputParent | ObservationOutput | ConditionOutput | ResearchStudyOutput;
374
+
375
+ // @public
376
+ export interface DomainResourceOutputParent extends ResourceOutput {
377
+ contained?: Array<ResourceOutput>;
378
+ extension?: Array<ExtensionOutput>;
379
+ modifierExtension?: Array<ExtensionOutput>;
380
+ resourceType: string;
381
+ text?: NarrativeOutput;
382
+ }
383
+
384
+ // @public
385
+ export interface DomainResourceParent extends Resource {
386
+ contained?: Array<Resource>;
387
+ extension?: Array<Extension>;
388
+ modifierExtension?: Array<Extension>;
389
+ resourceType: string;
390
+ text?: Narrative;
391
+ }
392
+
393
+ // @public
394
+ interface Element_2 {
395
+ extension?: Array<Extension>;
396
+ id?: string;
397
+ }
398
+ export { Element_2 as Element }
399
+
400
+ // @public
401
+ export interface ElementOutput {
402
+ extension?: Array<ExtensionOutput>;
403
+ id?: string;
404
+ }
405
+
406
+ // @public
407
+ export type EncounterClass = string | "inpatient" | "ambulatory" | "observation" | "emergency" | "virtual" | "healthHome";
408
+
409
+ // @public
410
+ export type EncounterClassOutput = string | "inpatient" | "ambulatory" | "observation" | "emergency" | "virtual" | "healthHome";
411
+
412
+ // @public
413
+ export interface Extension extends Element_2 {
414
+ url: string;
415
+ valueBoolean?: boolean;
416
+ valueCodeableConcept?: CodeableConcept;
417
+ valueDateTime?: string;
418
+ valueInteger?: number;
419
+ valuePeriod?: Period;
420
+ valueQuantity?: Quantity;
421
+ valueRange?: Range_2;
422
+ valueRatio?: Ratio;
423
+ valueReference?: Reference;
424
+ valueSampledData?: SampledData;
425
+ valueString?: string;
426
+ valueTime?: Date | string;
427
+ }
428
+
429
+ // @public
430
+ export interface ExtensionOutput extends ElementOutput {
431
+ url: string;
432
+ valueBoolean?: boolean;
433
+ valueCodeableConcept?: CodeableConceptOutput;
434
+ valueDateTime?: string;
435
+ valueInteger?: number;
436
+ valuePeriod?: PeriodOutput;
437
+ valueQuantity?: QuantityOutput;
438
+ valueRange?: RangeOutput;
439
+ valueRatio?: RatioOutput;
440
+ valueReference?: ReferenceOutput;
441
+ valueSampledData?: SampledDataOutput;
442
+ valueString?: string;
443
+ valueTime?: string;
444
+ }
445
+
446
+ // @public
447
+ export interface FindingInference extends RadiologyInsightsInferenceParent {
448
+ finding: Observation;
449
+ kind: "finding";
450
+ }
451
+
452
+ // @public
453
+ export interface FindingInferenceOutput extends RadiologyInsightsInferenceOutputParent {
454
+ finding: ObservationOutput;
455
+ kind: "finding";
456
+ }
457
+
458
+ // @public
459
+ export interface FindingOptions {
460
+ provideFocusedSentenceEvidence?: boolean;
461
+ }
462
+
463
+ // @public
464
+ export interface FindingOptionsOutput {
465
+ provideFocusedSentenceEvidence?: boolean;
466
+ }
467
+
468
+ // @public
469
+ export interface FollowupCommunicationInference extends RadiologyInsightsInferenceParent {
470
+ communicatedAt?: Date[] | string[];
471
+ kind: "followupCommunication";
472
+ recipient?: MedicalProfessionalType[];
473
+ wasAcknowledged: boolean;
474
+ }
475
+
476
+ // @public
477
+ export interface FollowupCommunicationInferenceOutput extends RadiologyInsightsInferenceOutputParent {
478
+ communicatedAt?: string[];
479
+ kind: "followupCommunication";
480
+ recipient?: MedicalProfessionalTypeOutput[];
481
+ wasAcknowledged: boolean;
482
+ }
483
+
484
+ // @public
485
+ export interface FollowupRecommendationInference extends RadiologyInsightsInferenceParent {
486
+ effectiveAt?: string;
487
+ effectivePeriod?: Period;
488
+ findings?: Array<RecommendationFinding>;
489
+ isConditional: boolean;
490
+ isGuideline: boolean;
491
+ isHedging: boolean;
492
+ isOption: boolean;
493
+ kind: "followupRecommendation";
494
+ recommendedProcedure: ProcedureRecommendation;
495
+ }
496
+
497
+ // @public
498
+ export interface FollowupRecommendationInferenceOutput extends RadiologyInsightsInferenceOutputParent {
499
+ effectiveAt?: string;
500
+ effectivePeriod?: PeriodOutput;
501
+ findings?: Array<RecommendationFindingOutput>;
502
+ isConditional: boolean;
503
+ isGuideline: boolean;
504
+ isHedging: boolean;
505
+ isOption: boolean;
506
+ kind: "followupRecommendation";
507
+ recommendedProcedure: ProcedureRecommendationOutput;
508
+ }
509
+
510
+ // @public
511
+ export interface FollowupRecommendationOptions {
512
+ includeRecommendationsInReferences?: boolean;
513
+ includeRecommendationsWithNoSpecifiedModality?: boolean;
514
+ provideFocusedSentenceEvidence?: boolean;
515
+ }
516
+
517
+ // @public
518
+ export interface FollowupRecommendationOptionsOutput {
519
+ includeRecommendationsInReferences?: boolean;
520
+ includeRecommendationsWithNoSpecifiedModality?: boolean;
521
+ provideFocusedSentenceEvidence?: boolean;
522
+ }
523
+
524
+ // @public
525
+ export interface GenericProcedureRecommendation extends ProcedureRecommendationParent {
526
+ code: CodeableConcept;
527
+ description?: string;
528
+ kind: "genericProcedureRecommendation";
529
+ }
530
+
531
+ // @public
532
+ export interface GenericProcedureRecommendationOutput extends ProcedureRecommendationOutputParent {
533
+ code: CodeableConceptOutput;
534
+ description?: string;
535
+ kind: "genericProcedureRecommendation";
536
+ }
537
+
538
+ // @public
539
+ export interface GetJob {
540
+ get(options?: GetJobParameters): StreamableMethod<GetJob200Response | GetJobDefaultResponse>;
541
+ put(options: CreateJobParameters, requestOptions?: GetJobParameters): StreamableMethod<CreateJob200Response | CreateJob201Response | CreateJobDefaultResponse>;
542
+ }
543
+
544
+ // @public
545
+ export interface GetJob200Headers {
546
+ "retry-after"?: number;
547
+ "x-ms-request-id"?: string;
548
+ }
549
+
550
+ // @public
551
+ export interface GetJob200Response extends HttpResponse {
552
+ body: RadiologyInsightsJobOutput;
553
+ headers: RawHttpHeaders & GetJob200Headers;
554
+ status: "200";
555
+ }
556
+
557
+ // @public
558
+ export interface GetJobDefaultHeaders {
559
+ "x-ms-error-code"?: string;
560
+ "x-ms-request-id"?: string;
561
+ }
562
+
563
+ // @public
564
+ export interface GetJobDefaultResponse extends HttpResponse {
565
+ body: HealthInsightsErrorResponseOutput;
566
+ headers: RawHttpHeaders & GetJobDefaultHeaders;
567
+ status: string;
568
+ }
569
+
570
+ // @public
571
+ export type GetJobParameters = GetJobQueryParam & RequestParameters;
572
+
573
+ // @public
574
+ export interface GetJobQueryParam {
575
+ queryParameters?: GetJobQueryParamProperties;
576
+ }
577
+
578
+ // @public
579
+ export interface GetJobQueryParamProperties {
580
+ expand?: string;
581
+ }
582
+
583
+ // @public
584
+ export function getLongRunningPoller<TResult extends CreateJobLogicalResponse | CreateJobDefaultResponse>(client: Client, initialResponse: CreateJob200Response | CreateJob201Response | CreateJobDefaultResponse, options?: CreateHttpPollerOptions<TResult, OperationState<TResult>>): Promise<SimplePollerLike<OperationState<TResult>, TResult>>;
585
+
586
+ // @public
587
+ export interface HealthInsightsErrorResponseOutput {
588
+ error: ErrorModel;
589
+ requestId: {
590
+ response: RequestIdResponseHeaderOutput;
591
+ };
592
+ }
593
+
594
+ // @public
595
+ export interface Identifier extends Element_2 {
596
+ assigner?: Reference;
597
+ period?: Period;
598
+ system?: string;
599
+ type?: CodeableConcept;
600
+ use?: string;
601
+ value?: string;
602
+ }
603
+
604
+ // @public
605
+ export interface IdentifierOutput extends ElementOutput {
606
+ assigner?: ReferenceOutput;
607
+ period?: PeriodOutput;
608
+ system?: string;
609
+ type?: CodeableConceptOutput;
610
+ use?: string;
611
+ value?: string;
612
+ }
613
+
614
+ // @public
615
+ export interface ImagingProcedure {
616
+ anatomy: CodeableConcept;
617
+ contrast?: RadiologyCodeWithTypes;
618
+ laterality?: CodeableConcept;
619
+ modality: CodeableConcept;
620
+ view?: RadiologyCodeWithTypes;
621
+ }
622
+
623
+ // @public
624
+ export interface ImagingProcedureOutput {
625
+ anatomy: CodeableConceptOutput;
626
+ contrast?: RadiologyCodeWithTypesOutput;
627
+ laterality?: CodeableConceptOutput;
628
+ modality: CodeableConceptOutput;
629
+ view?: RadiologyCodeWithTypesOutput;
630
+ }
631
+
632
+ // @public
633
+ export interface ImagingProcedureRecommendation extends ProcedureRecommendationParent {
634
+ imagingProcedures: Array<ImagingProcedure>;
635
+ kind: "imagingProcedureRecommendation";
636
+ procedureCodes?: Array<CodeableConcept>;
637
+ }
638
+
639
+ // @public
640
+ export interface ImagingProcedureRecommendationOutput extends ProcedureRecommendationOutputParent {
641
+ imagingProcedures: Array<ImagingProcedureOutput>;
642
+ kind: "imagingProcedureRecommendation";
643
+ procedureCodes?: Array<CodeableConceptOutput>;
644
+ }
645
+
646
+ // @public
647
+ export function isUnexpected(response: GetJob200Response | GetJobDefaultResponse): response is GetJobDefaultResponse;
648
+
649
+ // @public
650
+ export function isUnexpected(response: CreateJob200Response | CreateJob201Response | CreateJobLogicalResponse | CreateJobDefaultResponse): response is CreateJobDefaultResponse;
651
+
652
+ // @public
653
+ export type JobStatus = string | "notStarted" | "running" | "succeeded" | "failed" | "canceled";
654
+
655
+ // @public
656
+ export type JobStatusOutput = string | "notStarted" | "running" | "succeeded" | "failed" | "canceled";
657
+
658
+ // @public
659
+ export interface LateralityDiscrepancyInference extends RadiologyInsightsInferenceParent {
660
+ discrepancyType: LateralityDiscrepancyType;
661
+ kind: "lateralityDiscrepancy";
662
+ lateralityIndication?: CodeableConcept;
663
+ }
664
+
665
+ // @public
666
+ export interface LateralityDiscrepancyInferenceOutput extends RadiologyInsightsInferenceOutputParent {
667
+ discrepancyType: LateralityDiscrepancyTypeOutput;
668
+ kind: "lateralityDiscrepancy";
669
+ lateralityIndication?: CodeableConceptOutput;
670
+ }
671
+
672
+ // @public
673
+ export type LateralityDiscrepancyType = string | "orderLateralityMismatch" | "textLateralityContradiction" | "textLateralityMissing";
674
+
675
+ // @public
676
+ export type LateralityDiscrepancyTypeOutput = string | "orderLateralityMismatch" | "textLateralityContradiction" | "textLateralityMissing";
677
+
678
+ // @public
679
+ export interface LimitedOrderDiscrepancyInference extends RadiologyInsightsInferenceParent {
680
+ kind: "limitedOrderDiscrepancy";
681
+ orderType: CodeableConcept;
682
+ presentBodyPartMeasurements?: Array<CodeableConcept>;
683
+ presentBodyParts?: Array<CodeableConcept>;
684
+ }
685
+
686
+ // @public
687
+ export interface LimitedOrderDiscrepancyInferenceOutput extends RadiologyInsightsInferenceOutputParent {
688
+ kind: "limitedOrderDiscrepancy";
689
+ orderType: CodeableConceptOutput;
690
+ presentBodyPartMeasurements?: Array<CodeableConceptOutput>;
691
+ presentBodyParts?: Array<CodeableConceptOutput>;
692
+ }
693
+
694
+ // @public
695
+ export type MedicalProfessionalType = string | "unknown" | "doctor" | "nurse" | "midwife" | "physicianAssistant";
696
+
697
+ // @public
698
+ export type MedicalProfessionalTypeOutput = string | "unknown" | "doctor" | "nurse" | "midwife" | "physicianAssistant";
699
+
700
+ // @public
701
+ export interface Meta {
702
+ lastUpdated?: string;
703
+ profile?: string[];
704
+ security?: Array<Coding>;
705
+ source?: string;
706
+ tag?: Array<Coding>;
707
+ versionId?: string;
708
+ }
709
+
710
+ // @public
711
+ export interface MetaOutput {
712
+ lastUpdated?: string;
713
+ profile?: string[];
714
+ security?: Array<CodingOutput>;
715
+ source?: string;
716
+ tag?: Array<CodingOutput>;
717
+ versionId?: string;
718
+ }
719
+
720
+ // @public
721
+ export interface Narrative extends Element_2 {
722
+ div: string;
723
+ status: string;
724
+ }
725
+
726
+ // @public
727
+ export interface NarrativeOutput extends ElementOutput {
728
+ div: string;
729
+ status: string;
730
+ }
731
+
732
+ // @public
733
+ export interface Observation extends DomainResourceParent {
734
+ bodySite?: CodeableConcept;
735
+ category?: Array<CodeableConcept>;
736
+ code: CodeableConcept;
737
+ component?: Array<ObservationComponent>;
738
+ dataAbsentReason?: CodeableConcept;
739
+ derivedFrom?: Array<Reference>;
740
+ effectiveDateTime?: string;
741
+ effectiveInstant?: string;
742
+ effectivePeriod?: Period;
743
+ encounter?: Reference;
744
+ hasMember?: Array<Reference>;
745
+ identifier?: Array<Identifier>;
746
+ interpretation?: Array<CodeableConcept>;
747
+ issued?: string;
748
+ method?: CodeableConcept;
749
+ note?: Array<Annotation>;
750
+ referenceRange?: Array<ObservationReferenceRange>;
751
+ resourceType: "Observation";
752
+ status: ObservationStatusCodeType;
753
+ subject?: Reference;
754
+ valueBoolean?: boolean;
755
+ valueCodeableConcept?: CodeableConcept;
756
+ valueDateTime?: string;
757
+ valueInteger?: number;
758
+ valuePeriod?: Period;
759
+ valueQuantity?: Quantity;
760
+ valueRange?: Range_2;
761
+ valueRatio?: Ratio;
762
+ valueSampledData?: SampledData;
763
+ valueString?: string;
764
+ valueTime?: Date | string;
765
+ }
766
+
767
+ // @public
768
+ export interface ObservationComponent extends Element_2 {
769
+ code: CodeableConcept;
770
+ dataAbsentReason?: CodeableConcept;
771
+ interpretation?: Array<CodeableConcept>;
772
+ referenceRange?: Array<ObservationReferenceRange>;
773
+ valueBoolean?: boolean;
774
+ valueCodeableConcept?: CodeableConcept;
775
+ valueDateTime?: string;
776
+ valueInteger?: number;
777
+ valuePeriod?: Period;
778
+ valueQuantity?: Quantity;
779
+ valueRange?: Range_2;
780
+ valueRatio?: Ratio;
781
+ valueReference?: Reference;
782
+ valueSampledData?: SampledData;
783
+ valueString?: string;
784
+ valueTime?: Date | string;
785
+ }
786
+
787
+ // @public
788
+ export interface ObservationComponentOutput extends ElementOutput {
789
+ code: CodeableConceptOutput;
790
+ dataAbsentReason?: CodeableConceptOutput;
791
+ interpretation?: Array<CodeableConceptOutput>;
792
+ referenceRange?: Array<ObservationReferenceRangeOutput>;
793
+ valueBoolean?: boolean;
794
+ valueCodeableConcept?: CodeableConceptOutput;
795
+ valueDateTime?: string;
796
+ valueInteger?: number;
797
+ valuePeriod?: PeriodOutput;
798
+ valueQuantity?: QuantityOutput;
799
+ valueRange?: RangeOutput;
800
+ valueRatio?: RatioOutput;
801
+ valueReference?: ReferenceOutput;
802
+ valueSampledData?: SampledDataOutput;
803
+ valueString?: string;
804
+ valueTime?: string;
805
+ }
806
+
807
+ // @public
808
+ export interface ObservationOutput extends DomainResourceOutputParent {
809
+ bodySite?: CodeableConceptOutput;
810
+ category?: Array<CodeableConceptOutput>;
811
+ code: CodeableConceptOutput;
812
+ component?: Array<ObservationComponentOutput>;
813
+ dataAbsentReason?: CodeableConceptOutput;
814
+ derivedFrom?: Array<ReferenceOutput>;
815
+ effectiveDateTime?: string;
816
+ effectiveInstant?: string;
817
+ effectivePeriod?: PeriodOutput;
818
+ encounter?: ReferenceOutput;
819
+ hasMember?: Array<ReferenceOutput>;
820
+ identifier?: Array<IdentifierOutput>;
821
+ interpretation?: Array<CodeableConceptOutput>;
822
+ issued?: string;
823
+ method?: CodeableConceptOutput;
824
+ note?: Array<AnnotationOutput>;
825
+ referenceRange?: Array<ObservationReferenceRangeOutput>;
826
+ resourceType: "Observation";
827
+ status: ObservationStatusCodeTypeOutput;
828
+ subject?: ReferenceOutput;
829
+ valueBoolean?: boolean;
830
+ valueCodeableConcept?: CodeableConceptOutput;
831
+ valueDateTime?: string;
832
+ valueInteger?: number;
833
+ valuePeriod?: PeriodOutput;
834
+ valueQuantity?: QuantityOutput;
835
+ valueRange?: RangeOutput;
836
+ valueRatio?: RatioOutput;
837
+ valueSampledData?: SampledDataOutput;
838
+ valueString?: string;
839
+ valueTime?: string;
840
+ }
841
+
842
+ // @public
843
+ export interface ObservationReferenceRange {
844
+ age?: Range_2;
845
+ appliesTo?: Array<CodeableConcept>;
846
+ high?: Quantity;
847
+ low?: Quantity;
848
+ text?: string;
849
+ type?: CodeableConcept;
850
+ }
851
+
852
+ // @public
853
+ export interface ObservationReferenceRangeOutput {
854
+ age?: RangeOutput;
855
+ appliesTo?: Array<CodeableConceptOutput>;
856
+ high?: QuantityOutput;
857
+ low?: QuantityOutput;
858
+ text?: string;
859
+ type?: CodeableConceptOutput;
860
+ }
861
+
862
+ // @public
863
+ export type ObservationStatusCodeType = string | "registered" | "preliminary" | "final" | "amended" | "corrected" | "cancelled" | "entered-in-error" | "unknown";
864
+
865
+ // @public
866
+ export type ObservationStatusCodeTypeOutput = string | "registered" | "preliminary" | "final" | "amended" | "corrected" | "cancelled" | "entered-in-error" | "unknown";
867
+
868
+ // @public
869
+ export interface OrderedProcedure {
870
+ code?: CodeableConcept;
871
+ description?: string;
872
+ extension?: Array<Extension>;
873
+ }
874
+
875
+ // @public
876
+ export interface OrderedProcedureOutput {
877
+ code?: CodeableConceptOutput;
878
+ description?: string;
879
+ extension?: Array<ExtensionOutput>;
880
+ }
881
+
882
+ // @public
883
+ export interface PatientDetails {
884
+ birthDate?: Date | string;
885
+ clinicalInfo?: Array<Resource>;
886
+ sex?: PatientSex;
887
+ }
888
+
889
+ // @public
890
+ export interface PatientDetailsOutput {
891
+ birthDate?: string;
892
+ clinicalInfo?: Array<ResourceOutput>;
893
+ sex?: PatientSexOutput;
894
+ }
895
+
896
+ // @public
897
+ export interface PatientDocument {
898
+ administrativeMetadata?: DocumentAdministrativeMetadata;
899
+ authors?: Array<DocumentAuthor>;
900
+ clinicalType?: ClinicalDocumentType;
901
+ content: DocumentContent;
902
+ createdAt?: Date | string;
903
+ id: string;
904
+ language?: string;
905
+ specialtyType?: SpecialtyType;
906
+ type: DocumentType_2;
907
+ }
908
+
909
+ // @public
910
+ export interface PatientDocumentOutput {
911
+ administrativeMetadata?: DocumentAdministrativeMetadataOutput;
912
+ authors?: Array<DocumentAuthorOutput>;
913
+ clinicalType?: ClinicalDocumentTypeOutput;
914
+ content: DocumentContentOutput;
915
+ createdAt?: string;
916
+ id: string;
917
+ language?: string;
918
+ specialtyType?: SpecialtyTypeOutput;
919
+ type: DocumentTypeOutput;
920
+ }
921
+
922
+ // @public
923
+ export interface PatientEncounter {
924
+ class?: EncounterClass;
925
+ id: string;
926
+ period?: TimePeriod;
927
+ }
928
+
929
+ // @public
930
+ export interface PatientEncounterOutput {
931
+ class?: EncounterClassOutput;
932
+ id: string;
933
+ period?: TimePeriodOutput;
934
+ }
935
+
936
+ // @public
937
+ export interface PatientRecord {
938
+ details?: PatientDetails;
939
+ encounters?: Array<PatientEncounter>;
940
+ id: string;
941
+ patientDocuments?: Array<PatientDocument>;
942
+ }
943
+
944
+ // @public
945
+ export interface PatientRecordOutput {
946
+ details?: PatientDetailsOutput;
947
+ encounters?: Array<PatientEncounterOutput>;
948
+ id: string;
949
+ patientDocuments?: Array<PatientDocumentOutput>;
950
+ }
951
+
952
+ // @public
953
+ export type PatientSex = string | "female" | "male" | "unspecified";
954
+
955
+ // @public
956
+ export type PatientSexOutput = string | "female" | "male" | "unspecified";
957
+
958
+ // @public
959
+ export interface Period extends Element_2 {
960
+ end?: string;
961
+ start?: string;
962
+ }
963
+
964
+ // @public
965
+ export interface PeriodOutput extends ElementOutput {
966
+ end?: string;
967
+ start?: string;
968
+ }
969
+
970
+ // @public
971
+ export type ProcedureRecommendation = ProcedureRecommendationParent | GenericProcedureRecommendation | ImagingProcedureRecommendation;
972
+
973
+ // @public
974
+ export type ProcedureRecommendationOutput = ProcedureRecommendationOutputParent | GenericProcedureRecommendationOutput | ImagingProcedureRecommendationOutput;
975
+
976
+ // @public
977
+ export interface ProcedureRecommendationOutputParent {
978
+ extension?: Array<ExtensionOutput>;
979
+ kind: string;
980
+ }
981
+
982
+ // @public
983
+ export interface ProcedureRecommendationParent {
984
+ extension?: Array<Extension>;
985
+ kind: string;
986
+ }
987
+
988
+ // @public
989
+ export interface Quantity extends Element_2 {
990
+ code?: string;
991
+ comparator?: string;
992
+ system?: string;
993
+ unit?: string;
994
+ value?: number;
995
+ }
996
+
997
+ // @public
998
+ export interface QuantityOutput extends ElementOutput {
999
+ code?: string;
1000
+ comparator?: string;
1001
+ system?: string;
1002
+ unit?: string;
1003
+ value?: number;
1004
+ }
1005
+
1006
+ // @public
1007
+ export interface RadiologyCodeWithTypes {
1008
+ code: CodeableConcept;
1009
+ types: Array<CodeableConcept>;
1010
+ }
1011
+
1012
+ // @public
1013
+ export interface RadiologyCodeWithTypesOutput {
1014
+ code: CodeableConceptOutput;
1015
+ types: Array<CodeableConceptOutput>;
1016
+ }
1017
+
1018
+ // @public
1019
+ export interface RadiologyInsightsData {
1020
+ configuration?: RadiologyInsightsModelConfiguration;
1021
+ patients: Array<PatientRecord>;
1022
+ }
1023
+
1024
+ // @public
1025
+ export interface RadiologyInsightsDataOutput {
1026
+ configuration?: RadiologyInsightsModelConfigurationOutput;
1027
+ patients: Array<PatientRecordOutput>;
1028
+ }
1029
+
1030
+ // @public
1031
+ export type RadiologyInsightsInference = RadiologyInsightsInferenceParent | AgeMismatchInference | SexMismatchInference | LateralityDiscrepancyInference | CompleteOrderDiscrepancyInference | LimitedOrderDiscrepancyInference | FindingInference | CriticalResultInference | RadiologyProcedureInference | FollowupRecommendationInference | FollowupCommunicationInference;
1032
+
1033
+ // @public
1034
+ export interface RadiologyInsightsInferenceOptions {
1035
+ findingOptions?: FindingOptions;
1036
+ followupRecommendationOptions?: FollowupRecommendationOptions;
1037
+ }
1038
+
1039
+ // @public
1040
+ export interface RadiologyInsightsInferenceOptionsOutput {
1041
+ findingOptions?: FindingOptionsOutput;
1042
+ followupRecommendationOptions?: FollowupRecommendationOptionsOutput;
1043
+ }
1044
+
1045
+ // @public
1046
+ export type RadiologyInsightsInferenceOutput = RadiologyInsightsInferenceOutputParent | AgeMismatchInferenceOutput | SexMismatchInferenceOutput | LateralityDiscrepancyInferenceOutput | CompleteOrderDiscrepancyInferenceOutput | LimitedOrderDiscrepancyInferenceOutput | FindingInferenceOutput | CriticalResultInferenceOutput | RadiologyProcedureInferenceOutput | FollowupRecommendationInferenceOutput | FollowupCommunicationInferenceOutput;
1047
+
1048
+ // @public
1049
+ export interface RadiologyInsightsInferenceOutputParent {
1050
+ extension?: Array<ExtensionOutput>;
1051
+ kind: string;
1052
+ }
1053
+
1054
+ // @public
1055
+ export interface RadiologyInsightsInferenceParent {
1056
+ extension?: Array<Extension>;
1057
+ kind: string;
1058
+ }
1059
+
1060
+ // @public
1061
+ export interface RadiologyInsightsInferenceResult {
1062
+ modelVersion: string;
1063
+ patientResults: Array<RadiologyInsightsPatientResult>;
1064
+ }
1065
+
1066
+ // @public
1067
+ export interface RadiologyInsightsInferenceResultOutput {
1068
+ modelVersion: string;
1069
+ patientResults: Array<RadiologyInsightsPatientResultOutput>;
1070
+ }
1071
+
1072
+ // @public
1073
+ export type RadiologyInsightsInferenceType = string | "ageMismatch" | "lateralityDiscrepancy" | "sexMismatch" | "completeOrderDiscrepancy" | "limitedOrderDiscrepancy" | "finding" | "criticalResult" | "followupRecommendation" | "followupCommunication" | "radiologyProcedure";
1074
+
1075
+ // @public
1076
+ export type RadiologyInsightsInferenceTypeOutput = string | "ageMismatch" | "lateralityDiscrepancy" | "sexMismatch" | "completeOrderDiscrepancy" | "limitedOrderDiscrepancy" | "finding" | "criticalResult" | "followupRecommendation" | "followupCommunication" | "radiologyProcedure";
1077
+
1078
+ // @public
1079
+ export interface RadiologyInsightsJob {
1080
+ jobData?: RadiologyInsightsData;
1081
+ }
1082
+
1083
+ // @public
1084
+ export interface RadiologyInsightsJobOutput {
1085
+ readonly createdAt?: string;
1086
+ readonly error?: ErrorModel;
1087
+ readonly expiresAt?: string;
1088
+ readonly id: string;
1089
+ jobData?: RadiologyInsightsDataOutput;
1090
+ readonly result?: RadiologyInsightsInferenceResultOutput;
1091
+ readonly status: JobStatusOutput;
1092
+ readonly updatedAt?: string;
1093
+ }
1094
+
1095
+ // @public
1096
+ export interface RadiologyInsightsModelConfiguration {
1097
+ includeEvidence?: boolean;
1098
+ inferenceOptions?: RadiologyInsightsInferenceOptions;
1099
+ inferenceTypes?: RadiologyInsightsInferenceType[];
1100
+ locale?: string;
1101
+ verbose?: boolean;
1102
+ }
1103
+
1104
+ // @public
1105
+ export interface RadiologyInsightsModelConfigurationOutput {
1106
+ includeEvidence?: boolean;
1107
+ inferenceOptions?: RadiologyInsightsInferenceOptionsOutput;
1108
+ inferenceTypes?: RadiologyInsightsInferenceTypeOutput[];
1109
+ locale?: string;
1110
+ verbose?: boolean;
1111
+ }
1112
+
1113
+ // @public
1114
+ export interface RadiologyInsightsPatientResult {
1115
+ inferences: Array<RadiologyInsightsInference>;
1116
+ patientId: string;
1117
+ }
1118
+
1119
+ // @public
1120
+ export interface RadiologyInsightsPatientResultOutput {
1121
+ inferences: Array<RadiologyInsightsInferenceOutput>;
1122
+ patientId: string;
1123
+ }
1124
+
1125
+ // @public
1126
+ export interface RadiologyProcedureInference extends RadiologyInsightsInferenceParent {
1127
+ imagingProcedures: Array<ImagingProcedure>;
1128
+ kind: "radiologyProcedure";
1129
+ orderedProcedure: OrderedProcedure;
1130
+ procedureCodes?: Array<CodeableConcept>;
1131
+ }
1132
+
1133
+ // @public
1134
+ export interface RadiologyProcedureInferenceOutput extends RadiologyInsightsInferenceOutputParent {
1135
+ imagingProcedures: Array<ImagingProcedureOutput>;
1136
+ kind: "radiologyProcedure";
1137
+ orderedProcedure: OrderedProcedureOutput;
1138
+ procedureCodes?: Array<CodeableConceptOutput>;
1139
+ }
1140
+
1141
+ // @public
1142
+ interface Range_2 extends Element_2 {
1143
+ high?: Quantity;
1144
+ low?: Quantity;
1145
+ }
1146
+ export { Range_2 as Range }
1147
+
1148
+ // @public
1149
+ export interface RangeOutput extends ElementOutput {
1150
+ high?: QuantityOutput;
1151
+ low?: QuantityOutput;
1152
+ }
1153
+
1154
+ // @public
1155
+ export interface Ratio extends Element_2 {
1156
+ denominator?: Quantity;
1157
+ numerator?: Quantity;
1158
+ }
1159
+
1160
+ // @public
1161
+ export interface RatioOutput extends ElementOutput {
1162
+ denominator?: QuantityOutput;
1163
+ numerator?: QuantityOutput;
1164
+ }
1165
+
1166
+ // @public
1167
+ export interface RecommendationFinding {
1168
+ criticalFinding?: CriticalResult;
1169
+ extension?: Array<Extension>;
1170
+ finding?: Observation;
1171
+ recommendationFindingStatus: RecommendationFindingStatusType;
1172
+ }
1173
+
1174
+ // @public
1175
+ export interface RecommendationFindingOutput {
1176
+ criticalFinding?: CriticalResultOutput;
1177
+ extension?: Array<ExtensionOutput>;
1178
+ finding?: ObservationOutput;
1179
+ recommendationFindingStatus: RecommendationFindingStatusTypeOutput;
1180
+ }
1181
+
1182
+ // @public
1183
+ export type RecommendationFindingStatusType = string | "present" | "differential" | "ruleOut" | "conditional";
1184
+
1185
+ // @public
1186
+ export type RecommendationFindingStatusTypeOutput = string | "present" | "differential" | "ruleOut" | "conditional";
1187
+
1188
+ // @public
1189
+ export interface Reference extends Element_2 {
1190
+ display?: string;
1191
+ identifier?: Identifier;
1192
+ reference?: string;
1193
+ type?: string;
1194
+ }
1195
+
1196
+ // @public
1197
+ export interface ReferenceOutput extends ElementOutput {
1198
+ display?: string;
1199
+ identifier?: IdentifierOutput;
1200
+ reference?: string;
1201
+ type?: string;
1202
+ }
1203
+
1204
+ // @public
1205
+ export interface RequestIdResponseHeaderOutput {
1206
+ }
1207
+
1208
+ // @public
1209
+ export interface ResearchStudy extends DomainResourceParent {
1210
+ arm?: {
1211
+ name: string;
1212
+ type?: CodeableConcept;
1213
+ description?: string;
1214
+ }[];
1215
+ category?: Array<CodeableConcept>;
1216
+ condition?: Array<CodeableConcept>;
1217
+ contact?: Array<ContactDetail>;
1218
+ description?: string;
1219
+ enrollment?: Array<Reference>;
1220
+ focus?: Array<CodeableConcept>;
1221
+ identifier?: Array<Identifier>;
1222
+ keyword?: Array<CodeableConcept>;
1223
+ location?: Array<CodeableConcept>;
1224
+ note?: Array<Annotation>;
1225
+ objective?: {
1226
+ name: string;
1227
+ type?: CodeableConcept;
1228
+ }[];
1229
+ partOf?: Array<Reference>;
1230
+ period?: Period;
1231
+ phase?: CodeableConcept;
1232
+ primaryPurposeType?: CodeableConcept;
1233
+ principalInvestigator?: Reference;
1234
+ protocol?: Array<Reference>;
1235
+ reasonStopped?: CodeableConcept;
1236
+ resourceType: "ResearchStudy";
1237
+ site?: Array<Reference>;
1238
+ sponsor?: Reference;
1239
+ status: ResearchStudyStatusCodeType;
1240
+ title?: string;
1241
+ }
1242
+
1243
+ // @public
1244
+ export interface ResearchStudyOutput extends DomainResourceOutputParent {
1245
+ arm?: {
1246
+ name: string;
1247
+ type?: CodeableConceptOutput;
1248
+ description?: string;
1249
+ }[];
1250
+ category?: Array<CodeableConceptOutput>;
1251
+ condition?: Array<CodeableConceptOutput>;
1252
+ contact?: Array<ContactDetailOutput>;
1253
+ description?: string;
1254
+ enrollment?: Array<ReferenceOutput>;
1255
+ focus?: Array<CodeableConceptOutput>;
1256
+ identifier?: Array<IdentifierOutput>;
1257
+ keyword?: Array<CodeableConceptOutput>;
1258
+ location?: Array<CodeableConceptOutput>;
1259
+ note?: Array<AnnotationOutput>;
1260
+ objective?: {
1261
+ name: string;
1262
+ type?: CodeableConceptOutput;
1263
+ }[];
1264
+ partOf?: Array<ReferenceOutput>;
1265
+ period?: PeriodOutput;
1266
+ phase?: CodeableConceptOutput;
1267
+ primaryPurposeType?: CodeableConceptOutput;
1268
+ principalInvestigator?: ReferenceOutput;
1269
+ protocol?: Array<ReferenceOutput>;
1270
+ reasonStopped?: CodeableConceptOutput;
1271
+ resourceType: "ResearchStudy";
1272
+ site?: Array<ReferenceOutput>;
1273
+ sponsor?: ReferenceOutput;
1274
+ status: ResearchStudyStatusCodeTypeOutput;
1275
+ title?: string;
1276
+ }
1277
+
1278
+ // @public
1279
+ export type ResearchStudyStatusCodeType = string | "active" | "administratively-completed" | "approved" | "closed-to-accrual" | "closed-to-accrual-and-intervention" | "completed" | "disapproved" | "in-review" | "temporarily-closed-to-accrual" | "temporarily-closed-to-accrual-and-intervention" | "withdrawn";
1280
+
1281
+ // @public
1282
+ export type ResearchStudyStatusCodeTypeOutput = string | "active" | "administratively-completed" | "approved" | "closed-to-accrual" | "closed-to-accrual-and-intervention" | "completed" | "disapproved" | "in-review" | "temporarily-closed-to-accrual" | "temporarily-closed-to-accrual-and-intervention" | "withdrawn";
1283
+
1284
+ // @public
1285
+ export interface Resource extends Record<string, unknown> {
1286
+ id?: string;
1287
+ implicitRules?: string;
1288
+ language?: string;
1289
+ meta?: Meta;
1290
+ resourceType: string;
1291
+ }
1292
+
1293
+ // @public
1294
+ export interface ResourceOutput extends Record<string, any> {
1295
+ id?: string;
1296
+ implicitRules?: string;
1297
+ language?: string;
1298
+ meta?: MetaOutput;
1299
+ resourceType: string;
1300
+ }
1301
+
1302
+ // @public
1303
+ export interface Routes {
1304
+ (path: "/radiology-insights/jobs/{id}", id: string): GetJob;
1305
+ }
1306
+
1307
+ // @public
1308
+ export interface SampledData extends Element_2 {
1309
+ data?: string;
1310
+ dimensions: number;
1311
+ factor?: number;
1312
+ lowerLimit?: number;
1313
+ origin: Quantity;
1314
+ period: number;
1315
+ upperLimit?: number;
1316
+ }
1317
+
1318
+ // @public
1319
+ export interface SampledDataOutput extends ElementOutput {
1320
+ data?: string;
1321
+ dimensions: number;
1322
+ factor?: number;
1323
+ lowerLimit?: number;
1324
+ origin: QuantityOutput;
1325
+ period: number;
1326
+ upperLimit?: number;
1327
+ }
1328
+
1329
+ // @public
1330
+ export interface SexMismatchInference extends RadiologyInsightsInferenceParent {
1331
+ kind: "sexMismatch";
1332
+ sexIndication: CodeableConcept;
1333
+ }
1334
+
1335
+ // @public
1336
+ export interface SexMismatchInferenceOutput extends RadiologyInsightsInferenceOutputParent {
1337
+ kind: "sexMismatch";
1338
+ sexIndication: CodeableConceptOutput;
1339
+ }
1340
+
1341
+ // @public
1342
+ export type SpecialtyType = string | "pathology" | "radiology";
1343
+
1344
+ // @public
1345
+ export type SpecialtyTypeOutput = string | "pathology" | "radiology";
1346
+
1347
+ // @public
1348
+ export interface TimePeriod {
1349
+ end?: Date | string;
1350
+ start?: Date | string;
1351
+ }
1352
+
1353
+ // @public
1354
+ export interface TimePeriodOutput {
1355
+ end?: string;
1356
+ start?: string;
1357
+ }
1358
+
1359
+ // (No @packageDocumentation comment for this package)
1360
+
1361
+ ```