forked from Azure/azure-rest-api-specs
-
Notifications
You must be signed in to change notification settings - Fork 8
/
openapi.json
3032 lines (3032 loc) · 99.8 KB
/
openapi.json
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
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"swagger": "2.0",
"info": {
"title": "Azure AI Health Insights",
"version": "2024-04-01",
"description": "Azure AI Health Insights provides an API that serves insight models, specific for Health & Life Sciences, that perform analysis and provide inferences to be used by a human.",
"x-typespec-generated": [
{
"emitter": "@azure-tools/typespec-autorest"
}
]
},
"schemes": [
"https"
],
"x-ms-parameterized-host": {
"hostTemplate": "{endpoint}/health-insights",
"useSchemePrefix": false,
"parameters": [
{
"name": "endpoint",
"in": "path",
"description": "Supported Cognitive Services endpoints (protocol and hostname, for example: https://westus2.api.cognitive.microsoft.com).",
"required": true,
"type": "string",
"format": "uri",
"x-ms-skip-url-encoding": true
}
]
},
"produces": [
"application/json"
],
"consumes": [
"application/json"
],
"security": [
{
"AzureKey": []
},
{
"EntraIdToken": [
"https://cognitiveservices.azure.com/.default"
]
}
],
"securityDefinitions": {
"AzureKey": {
"type": "apiKey",
"description": "The secret key for your Azure Cognitive Services subscription.",
"name": "Ocp-Apim-Subscription-Key",
"in": "header"
},
"EntraIdToken": {
"type": "oauth2",
"description": "The Microsoft Entra Id Flow",
"flow": "accessCode",
"authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize",
"scopes": {
"https://cognitiveservices.azure.com/.default": ""
},
"tokenUrl": "https://login.microsoftonline.com/common/oauth2/token"
}
},
"tags": [
{
"name": "RadiologyInsights"
}
],
"paths": {
"/radiology-insights/jobs/{id}": {
"get": {
"operationId": "RadiologyInsights_GetJob",
"tags": [
"RadiologyInsights"
],
"summary": "Get Radiology Insights job details",
"description": "Gets the status and details of the Radiology Insights job.",
"parameters": [
{
"$ref": "#/parameters/Azure.Core.Foundations.ApiVersionParameter"
},
{
"name": "id",
"in": "path",
"description": "The unique ID of the job.",
"required": true,
"type": "string",
"minLength": 3,
"maxLength": 36,
"pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]+[a-zA-Z0-9]$"
},
{
"$ref": "#/parameters/Azure.Core.ExpandQueryParameter"
}
],
"responses": {
"200": {
"description": "The request has succeeded.",
"schema": {
"$ref": "#/definitions/RadiologyInsightsJob"
},
"headers": {
"Retry-After": {
"type": "integer",
"format": "int32",
"description": "The Retry-After header can indicate how long the client should wait before polling the operation status."
},
"x-ms-request-id": {
"type": "string",
"format": "uuid",
"description": "An opaque, globally-unique, server-generated string identifier for the request."
}
}
},
"default": {
"description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/HealthInsightsErrorResponse"
},
"headers": {
"x-ms-error-code": {
"type": "string",
"description": "String error code indicating what went wrong."
},
"x-ms-request-id": {
"type": "string",
"format": "uuid",
"description": "An opaque, globally-unique, server-generated string identifier for the request."
}
}
}
},
"x-ms-examples": {
"Gets the status and details of the Radiology Insights job.": {
"$ref": "./examples/SuccessfulRadiologyInsightsResponse.json"
}
}
},
"put": {
"operationId": "RadiologyInsights_CreateJob",
"tags": [
"RadiologyInsights"
],
"summary": "Create Radiology Insights job",
"description": "Creates a Radiology Insights job with the given request body.",
"parameters": [
{
"$ref": "#/parameters/Azure.Core.Foundations.ApiVersionParameter"
},
{
"name": "id",
"in": "path",
"description": "The unique ID of the job.",
"required": true,
"type": "string",
"minLength": 3,
"maxLength": 36,
"pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]+[a-zA-Z0-9]$"
},
{
"$ref": "#/parameters/Azure.Core.ExpandQueryParameter"
},
{
"name": "resource",
"in": "body",
"description": "The resource instance.",
"required": true,
"schema": {
"$ref": "#/definitions/RadiologyInsightsJob"
}
}
],
"responses": {
"200": {
"description": "The request has succeeded.",
"schema": {
"$ref": "#/definitions/RadiologyInsightsJob"
},
"headers": {
"Operation-Location": {
"type": "string",
"format": "uri",
"description": "The location for monitoring the operation state."
},
"x-ms-request-id": {
"type": "string",
"format": "uuid",
"description": "An opaque, globally-unique, server-generated string identifier for the request."
}
}
},
"201": {
"description": "The request has succeeded and a new resource has been created as a result.",
"schema": {
"$ref": "#/definitions/RadiologyInsightsJob"
},
"headers": {
"Operation-Location": {
"type": "string",
"format": "uri",
"description": "The location for monitoring the operation state."
},
"x-ms-request-id": {
"type": "string",
"format": "uuid",
"description": "An opaque, globally-unique, server-generated string identifier for the request."
}
}
},
"default": {
"description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/HealthInsightsErrorResponse"
},
"headers": {
"x-ms-error-code": {
"type": "string",
"description": "String error code indicating what went wrong."
},
"x-ms-request-id": {
"type": "string",
"format": "uuid",
"description": "An opaque, globally-unique, server-generated string identifier for the request."
}
}
}
},
"x-ms-examples": {
"Creates a Radiology Insights job with the given request body.": {
"$ref": "./examples/SuccessfulRadiologyInsightsRequest.json"
}
},
"x-ms-long-running-operation": true
}
}
},
"definitions": {
"AgeMismatchInference": {
"type": "object",
"description": "A notification for age mismatch is displayed when the age mentioned in a document for a specific patient does not match the age specified in the patient information.",
"allOf": [
{
"$ref": "#/definitions/RadiologyInsightsInference"
}
],
"x-ms-discriminator-value": "ageMismatch"
},
"Azure.Core.Foundations.Error": {
"type": "object",
"description": "The error object.",
"properties": {
"code": {
"type": "string",
"description": "One of a server-defined set of error codes."
},
"message": {
"type": "string",
"description": "A human-readable representation of the error."
},
"target": {
"type": "string",
"description": "The target of the error."
},
"details": {
"type": "array",
"description": "An array of details about specific errors that led to this reported error.",
"items": {
"$ref": "#/definitions/Azure.Core.Foundations.Error"
},
"x-ms-identifiers": []
},
"innererror": {
"$ref": "#/definitions/Azure.Core.Foundations.InnerError",
"description": "An object containing more specific information than the current object about the error."
}
},
"required": [
"code",
"message"
]
},
"Azure.Core.Foundations.InnerError": {
"type": "object",
"description": "An object containing more specific information about the error. As per Microsoft One API guidelines - https://github.com/Microsoft/api-guidelines/blob/vNext/Guidelines.md#7102-error-condition-responses.",
"properties": {
"code": {
"type": "string",
"description": "One of a server-defined set of error codes."
},
"innererror": {
"$ref": "#/definitions/Azure.Core.Foundations.InnerError",
"description": "Inner error."
}
}
},
"ClinicalDocumentType": {
"type": "string",
"description": "The type of the clinical document.",
"enum": [
"consultation",
"dischargeSummary",
"historyAndPhysical",
"radiologyReport",
"procedure",
"progress",
"laboratory",
"pathologyReport"
],
"x-ms-enum": {
"name": "ClinicalDocumentType",
"modelAsString": true,
"values": [
{
"name": "Consultation",
"value": "consultation"
},
{
"name": "DischargeSummary",
"value": "dischargeSummary"
},
{
"name": "HistoryAndPhysical",
"value": "historyAndPhysical"
},
{
"name": "RadiologyReport",
"value": "radiologyReport"
},
{
"name": "Procedure",
"value": "procedure"
},
{
"name": "Progress",
"value": "progress"
},
{
"name": "Laboratory",
"value": "laboratory"
},
{
"name": "PathologyReport",
"value": "pathologyReport"
}
]
}
},
"CompleteOrderDiscrepancyInference": {
"type": "object",
"description": "A complete order discrepancy is shown when one or more body parts and/or measurements that should be in the document (because there is a complete order) are not present.",
"properties": {
"orderType": {
"$ref": "#/definitions/Fhir.R4.CodeableConcept",
"description": "Order type : CPT ultrasound complete code for abdomen, retroperitoneal, pelvis or breast."
},
"missingBodyParts": {
"type": "array",
"description": "List of missing body parts required by a complete order : SNOMED CT codes.",
"minItems": 1,
"items": {
"$ref": "#/definitions/Fhir.R4.CodeableConcept"
}
},
"missingBodyPartMeasurements": {
"type": "array",
"description": "List of missing body parts that require measurement by a complete order : SNOMED CT codes.",
"minItems": 1,
"items": {
"$ref": "#/definitions/Fhir.R4.CodeableConcept"
}
}
},
"required": [
"orderType"
],
"allOf": [
{
"$ref": "#/definitions/RadiologyInsightsInference"
}
],
"x-ms-discriminator-value": "completeOrderDiscrepancy"
},
"CriticalResult": {
"type": "object",
"description": "Critical Result consists of two properties.",
"properties": {
"description": {
"type": "string",
"description": "Description : medical problem."
},
"finding": {
"$ref": "#/definitions/Fhir.R4.Observation",
"description": "Finding linked to the critical result."
}
},
"required": [
"description"
]
},
"CriticalResultInference": {
"type": "object",
"description": "Critical results refer to findings of utmost importance that may require timely attention due to their potential impact on patient care.",
"properties": {
"result": {
"$ref": "#/definitions/CriticalResult",
"description": "The complete Critical Result, as outlined below, will be reused for the recommendation."
}
},
"required": [
"result"
],
"allOf": [
{
"$ref": "#/definitions/RadiologyInsightsInference"
}
],
"x-ms-discriminator-value": "criticalResult"
},
"DocumentAdministrativeMetadata": {
"type": "object",
"description": "Document administrative metadata",
"properties": {
"orderedProcedures": {
"type": "array",
"description": "List of procedure information associated with the document.",
"minItems": 1,
"items": {
"$ref": "#/definitions/OrderedProcedure"
},
"x-ms-identifiers": []
},
"encounterId": {
"type": "string",
"description": "Reference to the encounter associated with the document."
}
}
},
"DocumentAuthor": {
"type": "object",
"description": "Document author",
"properties": {
"id": {
"type": "string",
"description": "author id"
},
"fullName": {
"type": "string",
"description": "Text representation of the full name"
}
}
},
"DocumentContent": {
"type": "object",
"description": "The content of the patient document.",
"properties": {
"sourceType": {
"$ref": "#/definitions/DocumentContentSourceType",
"description": "The type of the content's source.\nIn case the source type is 'inline', the content is given as a string (for instance, text).\nIn case the source type is 'reference', the content is given as a URI."
},
"value": {
"type": "string",
"description": "The content of the document, given either inline (as a string) or as a reference (URI)."
}
},
"required": [
"sourceType",
"value"
]
},
"DocumentContentSourceType": {
"type": "string",
"description": "The type of the content's source.\nIn case the source type is 'inline', the content is given as a string (for instance, text).\nIn case the source type is 'reference', the content is given as a URI.",
"enum": [
"inline",
"reference"
],
"x-ms-enum": {
"name": "DocumentContentSourceType",
"modelAsString": true,
"values": [
{
"name": "Inline",
"value": "inline",
"description": "The content is given as a string (for instance, text)."
},
{
"name": "Reference",
"value": "reference",
"description": "The content is given as a URI."
}
]
}
},
"DocumentType": {
"type": "string",
"description": "The type of the patient document, such as 'note' (text document) or 'fhirBundle' (FHIR JSON document).",
"enum": [
"note",
"fhirBundle",
"dicom",
"genomicSequencing"
],
"x-ms-enum": {
"name": "DocumentType",
"modelAsString": true,
"values": [
{
"name": "Note",
"value": "note"
},
{
"name": "FhirBundle",
"value": "fhirBundle"
},
{
"name": "Dicom",
"value": "dicom"
},
{
"name": "GenomicSequencing",
"value": "genomicSequencing"
}
]
}
},
"EncounterClass": {
"type": "string",
"description": "Known values codes that can be used to indicate the class of encounter (TODO://Based on FHIR value set--http://....).",
"enum": [
"inpatient",
"ambulatory",
"observation",
"emergency",
"virtual",
"healthHome"
],
"x-ms-enum": {
"name": "EncounterClass",
"modelAsString": true,
"values": [
{
"name": "InPatient",
"value": "inpatient",
"description": "A patient encounter where a patient is admitted by a hospital or equivalent facility, assigned to a location where patients generally stay at least overnight and provided with room, board, and continuous nursing service."
},
{
"name": "Ambulatory",
"value": "ambulatory",
"description": "The term ambulatory usually implies that the patient has come to the location and is not assigned to a bed. Sometimes referred to as an outpatient encounter."
},
{
"name": "Observation",
"value": "observation",
"description": "An encounter where the patient usually will start in different encounter, such as one in the emergency department but then transition to this type of encounter because they require a significant period of treatment and monitoring to determine whether or not their condition warrants an inpatient admission or discharge."
},
{
"name": "Emergency",
"value": "emergency",
"description": "A patient encounter that takes place at a dedicated healthcare service delivery location where the patient receives immediate evaluation and treatment, provided until the patient can be discharged or responsibility for the patient's care is transferred elsewhere (for example, the patient could be admitted as an inpatient or transferred to another facility."
},
{
"name": "Virtual",
"value": "virtual",
"description": "A patient encounter where the patient is not physically present for the encounter, such as in a telehealth encounter, phone call, or electronic communication."
},
{
"name": "HealthHome",
"value": "healthHome",
"description": "Healthcare encounter that takes place in the residence of the patient or a designee"
}
]
}
},
"Fhir.R4.Annotation": {
"type": "object",
"description": "A text note which also contains information about who made the statement and when\nBased on [FHIR Annotation](https://www.hl7.org/fhir/R4/datatypes.html#Annotation)",
"properties": {
"authorString": {
"type": "string",
"description": "Individual responsible for the annotation"
},
"time": {
"$ref": "#/definitions/Fhir.R4.fhirDateTime",
"description": "When the annotation was made"
},
"text": {
"type": "string",
"description": "The annotation - text content (as markdown)"
}
},
"required": [
"text"
],
"allOf": [
{
"$ref": "#/definitions/Fhir.R4.Element"
}
]
},
"Fhir.R4.CodeableConcept": {
"type": "object",
"description": "Concept - reference to a terminology or just text\nBased on [FHIR CodeableConcept](https://www.hl7.org/fhir/R4/datatypes.html#CodeableConcept)",
"properties": {
"coding": {
"type": "array",
"description": "Code defined by a terminology system",
"items": {
"$ref": "#/definitions/Fhir.R4.Coding"
}
},
"text": {
"type": "string",
"description": "Plain text representation of the concept"
}
},
"allOf": [
{
"$ref": "#/definitions/Fhir.R4.Element"
}
]
},
"Fhir.R4.Coding": {
"type": "object",
"description": "A Coding is a representation of a defined concept using a symbol from a defined \"code system\".\nBased on [FHIR Coding](https://www.hl7.org/fhir/R4/datatypes.html#Coding)",
"properties": {
"system": {
"$ref": "#/definitions/Fhir.R4.fhirUri",
"description": "Identity of the terminology system"
},
"version": {
"type": "string",
"description": "Version of the system - if relevant"
},
"code": {
"type": "string",
"description": "Symbol in syntax defined by the system"
},
"display": {
"type": "string",
"description": "Representation defined by the system"
}
},
"allOf": [
{
"$ref": "#/definitions/Fhir.R4.Element"
}
]
},
"Fhir.R4.Condition": {
"type": "object",
"description": "Detailed information about conditions, problems or diagnoses\nBased on [FHIR Condition](https://www.hl7.org/fhir/R4/condition.html)",
"properties": {
"identifier": {
"type": "array",
"description": "External Ids for this condition",
"items": {
"$ref": "#/definitions/Fhir.R4.Identifier"
}
},
"clinicalStatus": {
"$ref": "#/definitions/Fhir.R4.CodeableConcept",
"description": "active | recurrence | relapse | inactive | remission | resolved"
},
"verificationStatus": {
"$ref": "#/definitions/Fhir.R4.CodeableConcept",
"description": "unconfirmed | provisional | differential | confirmed | refuted | entered-in-error"
},
"category": {
"type": "array",
"description": "problem-list-item | encounter-diagnosis",
"items": {
"$ref": "#/definitions/Fhir.R4.CodeableConcept"
}
},
"severity": {
"$ref": "#/definitions/Fhir.R4.CodeableConcept",
"description": "Subjective severity of condition"
},
"code": {
"$ref": "#/definitions/Fhir.R4.CodeableConcept",
"description": "Identification of the condition, problem or diagnosis"
},
"bodySite": {
"type": "array",
"description": "Anatomical location, if relevant",
"items": {
"$ref": "#/definitions/Fhir.R4.CodeableConcept"
}
},
"encounter": {
"$ref": "#/definitions/Fhir.R4.Reference",
"description": "Encounter created as part of"
},
"onsetDateTime": {
"$ref": "#/definitions/Fhir.R4.fhirDateTime",
"description": "Estimated or actual date, date-time, or age"
},
"onsetAge": {
"$ref": "#/definitions/Fhir.R4.Quantity",
"description": "Estimated or actual date, date-time, or age"
},
"onsetPeriod": {
"$ref": "#/definitions/Fhir.R4.Period",
"description": "Estimated or actual date, date-time, or age"
},
"onsetRange": {
"$ref": "#/definitions/Fhir.R4.Range",
"description": "Estimated or actual date, date-time, or age"
},
"onsetString": {
"type": "string",
"description": "Estimated or actual date, date-time, or age"
},
"abatementDateTime": {
"$ref": "#/definitions/Fhir.R4.fhirDateTime",
"description": "When in resolution/remission"
},
"abatementAge": {
"$ref": "#/definitions/Fhir.R4.Quantity",
"description": "When in resolution/remission"
},
"abatementPeriod": {
"$ref": "#/definitions/Fhir.R4.Period",
"description": "When in resolution/remission"
},
"abatementRange": {
"$ref": "#/definitions/Fhir.R4.Range",
"description": "When in resolution/remission"
},
"abatementString": {
"type": "string",
"description": "When in resolution/remission"
},
"recordedDate": {
"$ref": "#/definitions/Fhir.R4.fhirDateTime",
"description": "Date record was first recorded"
},
"stage": {
"type": "array",
"description": "stge/grade, usually assessed formally",
"items": {
"$ref": "#/definitions/Fhir.R4.ConditionStage"
},
"x-ms-identifiers": []
},
"note": {
"type": "array",
"description": "Additional information about the Condition",
"items": {
"$ref": "#/definitions/Fhir.R4.Annotation"
}
}
},
"allOf": [
{
"$ref": "#/definitions/Fhir.R4.DomainResource"
}
],
"x-ms-discriminator-value": "Condition"
},
"Fhir.R4.ConditionStage": {
"type": "object",
"description": "Stage/grade, usually assessed formally\nBased on [FHIR Condition.Stage](https://www.hl7.org/fhir/R4/condition.html)",
"properties": {
"summary": {
"$ref": "#/definitions/Fhir.R4.CodeableConcept",
"description": "Simple summary (disease specific)"
},
"type": {
"$ref": "#/definitions/Fhir.R4.CodeableConcept",
"description": "Kind of staging"
}
}
},
"Fhir.R4.ContactDetail": {
"type": "object",
"description": "Contact details (See: https://www.hl7.org/fhir/R4/metadatatypes.html#ContactDetail)",
"properties": {
"name": {
"type": "string",
"description": "Name of an individual to contact"
},
"telecom": {
"type": "array",
"description": "Contact details for individual or organization",
"items": {
"$ref": "#/definitions/Fhir.R4.ContactPoint"
},
"x-ms-identifiers": []
}
},
"allOf": [
{
"$ref": "#/definitions/Fhir.R4.Element"
}
]
},
"Fhir.R4.ContactPoint": {
"type": "object",
"description": "Details for all kinds of technology mediated contact points for a person or organization, including telephone, email, etc.\nSee https://www.hl7.org/fhir/R4/datatypes.html#ContactPoint",
"properties": {
"system": {
"$ref": "#/definitions/Fhir.R4.ContactPointSystem",
"description": "phone | fax | email | pager | url | sms | other"
},
"value": {
"type": "string",
"description": "The actual contact point details"
},
"use": {
"$ref": "#/definitions/Fhir.R4.ContactPointUse",
"description": "home | work | temp | old | mobile - purpose of this contact point"
},
"rank": {
"type": "integer",
"format": "int32",
"description": "Specify preferred order of use (1 = highest)"
},
"period": {
"$ref": "#/definitions/Fhir.R4.Period",
"description": "Time period when the contact point was/is in use"
}
}
},
"Fhir.R4.ContactPointSystem": {
"type": "string",
"description": "Contact Point System\nsee https://www.hl7.org/fhir/R4/valueset-contact-point-system.html",
"enum": [
"phone",
"fax",
"email",
"pager",
"url",
"sms",
"other"
],
"x-ms-enum": {
"name": "ContactPointSystem",
"modelAsString": true,
"values": [
{
"name": "Phone",
"value": "phone",
"description": "Phone"
},
{
"name": "Fax",
"value": "fax",
"description": "Fax"
},
{
"name": "Email",
"value": "email",
"description": "Email"
},
{
"name": "Pager",
"value": "pager",
"description": "Pager"
},
{
"name": "Url",
"value": "url",
"description": "Url"
},
{
"name": "Sms",
"value": "sms",
"description": "Sms"
},
{
"name": "Other",
"value": "other",
"description": "Other"
}
]
}
},
"Fhir.R4.ContactPointUse": {
"type": "string",
"description": "Contact Point Use\nSee: \thttp://hl7.org/fhir/ValueSet/contact-point-use",
"enum": [
"home",
"work",
"temp",
"old",
"mobile"
],
"x-ms-enum": {
"name": "ContactPointUse",
"modelAsString": true,
"values": [
{
"name": "Home",
"value": "home",
"description": "Home"
},
{
"name": "Work",
"value": "work",
"description": "Work"
},
{
"name": "Temp",
"value": "temp",
"description": "Temp"
},
{
"name": "Old",
"value": "old",
"description": "Old"
},
{
"name": "Mobile",
"value": "mobile",
"description": "Mobile"
}
]
}
},
"Fhir.R4.DomainResource": {
"type": "object",
"description": "A resource with narrative, extensions, and contained resources\nBased on [FHIR DomainResource](https://www.hl7.org/fhir/domainresource.html)",
"properties": {
"resourceType": {
"type": "string",
"description": "Discriminator property for DomainResource."
},
"text": {
"$ref": "#/definitions/Fhir.R4.Narrative",
"description": "Text summary of the resource, for human interpretation"
},
"contained": {
"type": "array",
"description": "Contained, inline Resources",
"items": {
"$ref": "#/definitions/Fhir.R4.Resource"
}
},
"extension": {
"type": "array",
"description": "Additional Content defined by implementations",
"items": {
"$ref": "#/definitions/Fhir.R4.Extension"
}
},
"modifierExtension": {
"type": "array",
"description": "Extensions that cannot be ignored",
"items": {
"$ref": "#/definitions/Fhir.R4.Extension"
}
}
},
"discriminator": "resourceType",
"required": [
"resourceType"
],
"allOf": [
{
"$ref": "#/definitions/Fhir.R4.Resource"
}
]
},
"Fhir.R4.Element": {
"type": "object",
"description": "The base definition for all elements contained inside a resource.\nBased on [FHIR Element](https://www.hl7.org/fhir/R4/element.html)",
"properties": {
"id": {
"type": "string",
"description": "Unique id for inter-element referencing"
},
"extension": {
"type": "array",
"description": "Additional Content defined by implementations",
"items": {
"$ref": "#/definitions/Fhir.R4.Extension"
}
}
}
},
"Fhir.R4.Extension": {
"type": "object",
"description": "Base for all elements\nBased on [FHIR Element](https://www.hl7.org/fhir/R4/element.html)",
"properties": {
"url": {
"$ref": "#/definitions/Fhir.R4.fhirUri",
"description": "Source of the definition for the extension code - a logical name or a URL."
},
"valueQuantity": {
"$ref": "#/definitions/Fhir.R4.Quantity",
"description": "Value as Quantity"
},
"valueCodeableConcept": {
"$ref": "#/definitions/Fhir.R4.CodeableConcept",
"description": "Value as CodeableConcept"
},
"valueString": {
"type": "string",