fhirpath-ts 0.0.0-bootstrap.0 → 0.2.0
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.
- package/README.md +50 -18
- package/dist/analyzer/analyze-dto.d.ts +4 -0
- package/dist/analyzer/analyze-dto.d.ts.map +1 -1
- package/dist/analyzer/analyze-dto.js +12 -14
- package/dist/analyzer/analyze-dto.js.map +1 -1
- package/dist/analyzer/analyze.d.ts +22 -6
- package/dist/analyzer/analyze.d.ts.map +1 -1
- package/dist/analyzer/analyze.js +242 -98
- package/dist/analyzer/analyze.js.map +1 -1
- package/dist/analyzer/declarations.d.ts +26 -0
- package/dist/analyzer/declarations.d.ts.map +1 -0
- package/dist/analyzer/declarations.js +68 -0
- package/dist/analyzer/declarations.js.map +1 -0
- package/dist/analyzer/operator-rules.d.ts +127 -0
- package/dist/analyzer/operator-rules.d.ts.map +1 -0
- package/dist/analyzer/operator-rules.js +70 -0
- package/dist/analyzer/operator-rules.js.map +1 -0
- package/dist/analyzer/signatures.d.ts +1097 -10
- package/dist/analyzer/signatures.d.ts.map +1 -1
- package/dist/analyzer/signatures.js +70 -29
- package/dist/analyzer/signatures.js.map +1 -1
- package/dist/api/compile.d.ts +32 -8
- package/dist/api/compile.d.ts.map +1 -1
- package/dist/api/compile.js +2 -0
- package/dist/api/compile.js.map +1 -1
- package/dist/api/engine.d.ts +42 -16
- package/dist/api/engine.d.ts.map +1 -1
- package/dist/api/engine.js +2 -1
- package/dist/api/engine.js.map +1 -1
- package/dist/api/project.d.ts +8 -8
- package/dist/api/project.d.ts.map +1 -1
- package/dist/api/project.js +31 -19
- package/dist/api/project.js.map +1 -1
- package/dist/api/strict.d.ts +6 -0
- package/dist/api/strict.d.ts.map +1 -0
- package/dist/api/strict.js +71 -0
- package/dist/api/strict.js.map +1 -0
- package/dist/api/tagged.d.ts +4 -4
- package/dist/api/tagged.d.ts.map +1 -1
- package/dist/api/tagged.js.map +1 -1
- package/dist/cli/dto-check.js +7 -3
- package/dist/cli/dto-check.js.map +1 -1
- package/dist/engine/context.d.ts +3 -1
- package/dist/engine/context.d.ts.map +1 -1
- package/dist/engine/context.js +5 -1
- package/dist/engine/context.js.map +1 -1
- package/dist/engine/navigation.d.ts.map +1 -1
- package/dist/engine/navigation.js +7 -48
- package/dist/engine/navigation.js.map +1 -1
- package/dist/engine/type-matching.d.ts.map +1 -1
- package/dist/engine/type-matching.js +6 -16
- package/dist/engine/type-matching.js.map +1 -1
- package/dist/index.d.ts +4 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/parser/parser.d.ts.map +1 -1
- package/dist/parser/parser.js +102 -73
- package/dist/parser/parser.js.map +1 -1
- package/dist/parser/precedence.d.ts +368 -4
- package/dist/parser/precedence.d.ts.map +1 -1
- package/dist/parser/precedence.js +146 -32
- package/dist/parser/precedence.js.map +1 -1
- package/dist/r4/generated/type-maps.d.ts +1367 -0
- package/dist/r4/generated/type-maps.d.ts.map +1 -1
- package/dist/r4/index.d.ts +3 -1
- package/dist/r4/index.d.ts.map +1 -1
- package/dist/typed/context-maps.d.ts +23 -0
- package/dist/typed/context-maps.d.ts.map +1 -0
- package/dist/typed/context-maps.js +2 -0
- package/dist/typed/context-maps.js.map +1 -0
- package/dist/typed/infer.d.ts +99 -229
- package/dist/typed/infer.d.ts.map +1 -1
- package/dist/typed/infer.js +1 -84
- package/dist/typed/infer.js.map +1 -1
- package/dist/typed/inference-limits.d.ts +7 -0
- package/dist/typed/inference-limits.d.ts.map +1 -0
- package/dist/typed/inference-limits.js +6 -0
- package/dist/typed/inference-limits.js.map +1 -0
- package/dist/typed/metadata-compact.d.ts +189 -0
- package/dist/typed/metadata-compact.d.ts.map +1 -0
- package/dist/typed/metadata-compact.js +3 -0
- package/dist/typed/metadata-compact.js.map +1 -0
- package/dist/typed/parser.d.ts +515 -0
- package/dist/typed/parser.d.ts.map +1 -0
- package/dist/typed/parser.js +2 -0
- package/dist/typed/parser.js.map +1 -0
- package/dist/values/type-compat.d.ts +8 -0
- package/dist/values/type-compat.d.ts.map +1 -1
- package/dist/values/type-compat.js +44 -1
- package/dist/values/type-compat.js.map +1 -1
- package/package.json +20 -1
- package/src/analyzer/analyze-dto.ts +21 -17
- package/src/analyzer/analyze.ts +335 -109
- package/src/analyzer/declarations.ts +120 -0
- package/src/analyzer/operator-rules.ts +88 -0
- package/src/analyzer/signatures.ts +99 -41
- package/src/api/compile.ts +66 -11
- package/src/api/engine.ts +97 -33
- package/src/api/project.ts +54 -30
- package/src/api/strict.ts +112 -0
- package/src/api/tagged.ts +5 -5
- package/src/cli/dto-check.ts +7 -3
- package/src/engine/context.ts +7 -2
- package/src/engine/navigation.ts +7 -52
- package/src/engine/type-matching.ts +11 -17
- package/src/index.ts +25 -2
- package/src/parser/parser.ts +106 -74
- package/src/parser/precedence.ts +250 -33
- package/src/r4/generated/type-maps.ts +1557 -0
- package/src/typed/context-maps.ts +41 -0
- package/src/typed/infer.ts +157 -425
- package/src/typed/inference-limits.ts +9 -0
- package/src/typed/metadata-compact.ts +307 -0
- package/src/typed/parser.ts +2277 -0
- package/src/values/type-compat.ts +48 -1
- package/dist/typed/perf-fixture.types.d.ts +0 -136
- package/dist/typed/perf-fixture.types.d.ts.map +0 -1
- package/dist/typed/perf-fixture.types.js +0 -2
- package/dist/typed/perf-fixture.types.js.map +0 -1
- package/src/typed/perf-fixture.types.ts +0 -143
|
@@ -12,6 +12,12 @@ export interface FhirResource {
|
|
|
12
12
|
resourceType: string
|
|
13
13
|
}
|
|
14
14
|
|
|
15
|
+
/** Plain JavaScript shape returned for a System.Quantity value. */
|
|
16
|
+
export interface SystemQuantity {
|
|
17
|
+
value: number
|
|
18
|
+
unit: string
|
|
19
|
+
}
|
|
20
|
+
|
|
15
21
|
export interface Address extends Element {
|
|
16
22
|
city?: string
|
|
17
23
|
country?: string
|
|
@@ -20586,6 +20592,1556 @@ export interface R4Elements {
|
|
|
20586
20592
|
}
|
|
20587
20593
|
}
|
|
20588
20594
|
|
|
20595
|
+
/** Sparse Reference target map; `unknown` marks an unconstrained Reference element. */
|
|
20596
|
+
export interface R4ReferenceTargets {
|
|
20597
|
+
Annotation: {
|
|
20598
|
+
author: 'Practitioner' | 'Patient' | 'RelatedPerson' | 'Organization'
|
|
20599
|
+
}
|
|
20600
|
+
DataRequirement: {
|
|
20601
|
+
subject: 'Group'
|
|
20602
|
+
}
|
|
20603
|
+
ElementDefinition: {
|
|
20604
|
+
defaultValue: 'unknown'
|
|
20605
|
+
fixed: 'unknown'
|
|
20606
|
+
pattern: 'unknown'
|
|
20607
|
+
}
|
|
20608
|
+
'ElementDefinition.example': {
|
|
20609
|
+
value: 'unknown'
|
|
20610
|
+
}
|
|
20611
|
+
Extension: {
|
|
20612
|
+
value: 'unknown'
|
|
20613
|
+
}
|
|
20614
|
+
Identifier: {
|
|
20615
|
+
assigner: 'Organization'
|
|
20616
|
+
}
|
|
20617
|
+
Meta: {
|
|
20618
|
+
account: 'unknown'
|
|
20619
|
+
accounts: 'unknown'
|
|
20620
|
+
author: 'unknown'
|
|
20621
|
+
compartment: 'unknown'
|
|
20622
|
+
onBehalfOf: 'unknown'
|
|
20623
|
+
}
|
|
20624
|
+
Signature: {
|
|
20625
|
+
onBehalfOf: 'Practitioner' | 'PractitionerRole' | 'RelatedPerson' | 'Patient' | 'Device' | 'Organization'
|
|
20626
|
+
who: 'Practitioner' | 'PractitionerRole' | 'RelatedPerson' | 'Patient' | 'Device' | 'Organization'
|
|
20627
|
+
}
|
|
20628
|
+
TriggerDefinition: {
|
|
20629
|
+
timing: 'Schedule'
|
|
20630
|
+
}
|
|
20631
|
+
UsageContext: {
|
|
20632
|
+
value:
|
|
20633
|
+
'PlanDefinition' | 'ResearchStudy' | 'InsurancePlan' | 'HealthcareService' | 'Group' | 'Location' | 'Organization'
|
|
20634
|
+
}
|
|
20635
|
+
Account: {
|
|
20636
|
+
owner: 'Organization'
|
|
20637
|
+
partOf: 'Account'
|
|
20638
|
+
subject:
|
|
20639
|
+
'Patient' | 'Device' | 'Practitioner' | 'PractitionerRole' | 'Location' | 'HealthcareService' | 'Organization'
|
|
20640
|
+
}
|
|
20641
|
+
'Account.coverage': {
|
|
20642
|
+
coverage: 'Coverage'
|
|
20643
|
+
}
|
|
20644
|
+
'Account.guarantor': {
|
|
20645
|
+
party: 'Patient' | 'RelatedPerson' | 'Organization'
|
|
20646
|
+
}
|
|
20647
|
+
ActivityDefinition: {
|
|
20648
|
+
location: 'Location'
|
|
20649
|
+
observationRequirement: 'ObservationDefinition'
|
|
20650
|
+
observationResultRequirement: 'ObservationDefinition'
|
|
20651
|
+
product: 'Medication' | 'Substance'
|
|
20652
|
+
specimenRequirement: 'SpecimenDefinition'
|
|
20653
|
+
subject: 'Group'
|
|
20654
|
+
}
|
|
20655
|
+
AdverseEvent: {
|
|
20656
|
+
contributor: 'Practitioner' | 'PractitionerRole' | 'Device'
|
|
20657
|
+
encounter: 'Encounter'
|
|
20658
|
+
location: 'Location'
|
|
20659
|
+
recorder: 'Patient' | 'Practitioner' | 'PractitionerRole' | 'RelatedPerson'
|
|
20660
|
+
referenceDocument: 'DocumentReference'
|
|
20661
|
+
resultingCondition: 'Condition'
|
|
20662
|
+
study: 'ResearchStudy'
|
|
20663
|
+
subject: 'Patient' | 'Group' | 'Practitioner' | 'RelatedPerson'
|
|
20664
|
+
subjectMedicalHistory:
|
|
20665
|
+
| 'Condition'
|
|
20666
|
+
| 'Observation'
|
|
20667
|
+
| 'AllergyIntolerance'
|
|
20668
|
+
| 'FamilyMemberHistory'
|
|
20669
|
+
| 'Immunization'
|
|
20670
|
+
| 'Procedure'
|
|
20671
|
+
| 'Media'
|
|
20672
|
+
| 'DocumentReference'
|
|
20673
|
+
}
|
|
20674
|
+
'AdverseEvent.suspectEntity': {
|
|
20675
|
+
instance:
|
|
20676
|
+
| 'Immunization'
|
|
20677
|
+
| 'Procedure'
|
|
20678
|
+
| 'Substance'
|
|
20679
|
+
| 'Medication'
|
|
20680
|
+
| 'MedicationAdministration'
|
|
20681
|
+
| 'MedicationStatement'
|
|
20682
|
+
| 'Device'
|
|
20683
|
+
}
|
|
20684
|
+
'AdverseEvent.suspectEntity.causality': {
|
|
20685
|
+
author: 'Practitioner' | 'PractitionerRole'
|
|
20686
|
+
}
|
|
20687
|
+
AllergyIntolerance: {
|
|
20688
|
+
asserter: 'Patient' | 'RelatedPerson' | 'Practitioner' | 'PractitionerRole'
|
|
20689
|
+
encounter: 'Encounter'
|
|
20690
|
+
patient: 'Patient'
|
|
20691
|
+
recorder: 'Practitioner' | 'PractitionerRole' | 'Patient' | 'RelatedPerson'
|
|
20692
|
+
}
|
|
20693
|
+
Appointment: {
|
|
20694
|
+
basedOn: 'ServiceRequest'
|
|
20695
|
+
reasonReference: 'Condition' | 'Procedure' | 'Observation' | 'ImmunizationRecommendation'
|
|
20696
|
+
slot: 'Slot'
|
|
20697
|
+
supportingInformation: 'unknown'
|
|
20698
|
+
}
|
|
20699
|
+
'Appointment.participant': {
|
|
20700
|
+
actor:
|
|
20701
|
+
'Patient' | 'Practitioner' | 'PractitionerRole' | 'RelatedPerson' | 'Device' | 'HealthcareService' | 'Location'
|
|
20702
|
+
}
|
|
20703
|
+
AppointmentResponse: {
|
|
20704
|
+
actor:
|
|
20705
|
+
'Patient' | 'Practitioner' | 'PractitionerRole' | 'RelatedPerson' | 'Device' | 'HealthcareService' | 'Location'
|
|
20706
|
+
appointment: 'Appointment'
|
|
20707
|
+
}
|
|
20708
|
+
'AuditEvent.agent': {
|
|
20709
|
+
location: 'Location'
|
|
20710
|
+
who:
|
|
20711
|
+
| 'PractitionerRole'
|
|
20712
|
+
| 'Practitioner'
|
|
20713
|
+
| 'Organization'
|
|
20714
|
+
| 'Device'
|
|
20715
|
+
| 'Patient'
|
|
20716
|
+
| 'RelatedPerson'
|
|
20717
|
+
| 'Resource'
|
|
20718
|
+
| 'Resource'
|
|
20719
|
+
}
|
|
20720
|
+
'AuditEvent.entity': {
|
|
20721
|
+
what: 'unknown'
|
|
20722
|
+
}
|
|
20723
|
+
'AuditEvent.source': {
|
|
20724
|
+
observer:
|
|
20725
|
+
| 'PractitionerRole'
|
|
20726
|
+
| 'Practitioner'
|
|
20727
|
+
| 'Organization'
|
|
20728
|
+
| 'Device'
|
|
20729
|
+
| 'Patient'
|
|
20730
|
+
| 'RelatedPerson'
|
|
20731
|
+
| 'Subscription'
|
|
20732
|
+
| 'Resource'
|
|
20733
|
+
| 'Resource'
|
|
20734
|
+
}
|
|
20735
|
+
Basic: {
|
|
20736
|
+
author: 'Practitioner' | 'PractitionerRole' | 'Patient' | 'RelatedPerson' | 'Organization'
|
|
20737
|
+
subject: 'unknown'
|
|
20738
|
+
}
|
|
20739
|
+
Binary: {
|
|
20740
|
+
securityContext: 'unknown'
|
|
20741
|
+
}
|
|
20742
|
+
BiologicallyDerivedProduct: {
|
|
20743
|
+
parent: 'BiologicallyDerivedProduct'
|
|
20744
|
+
request: 'ServiceRequest'
|
|
20745
|
+
}
|
|
20746
|
+
'BiologicallyDerivedProduct.collection': {
|
|
20747
|
+
collector: 'Practitioner' | 'PractitionerRole'
|
|
20748
|
+
source: 'Patient' | 'Organization'
|
|
20749
|
+
}
|
|
20750
|
+
'BiologicallyDerivedProduct.processing': {
|
|
20751
|
+
additive: 'Substance'
|
|
20752
|
+
}
|
|
20753
|
+
BodyStructure: {
|
|
20754
|
+
patient: 'Patient'
|
|
20755
|
+
}
|
|
20756
|
+
'CapabilityStatement.implementation': {
|
|
20757
|
+
custodian: 'Organization'
|
|
20758
|
+
}
|
|
20759
|
+
CarePlan: {
|
|
20760
|
+
addresses: 'Condition'
|
|
20761
|
+
author: 'Patient' | 'Practitioner' | 'PractitionerRole' | 'Device' | 'RelatedPerson' | 'Organization' | 'CareTeam'
|
|
20762
|
+
basedOn: 'CarePlan'
|
|
20763
|
+
careTeam: 'CareTeam'
|
|
20764
|
+
contributor:
|
|
20765
|
+
'Patient' | 'Practitioner' | 'PractitionerRole' | 'Device' | 'RelatedPerson' | 'Organization' | 'CareTeam'
|
|
20766
|
+
encounter: 'Encounter'
|
|
20767
|
+
goal: 'Goal'
|
|
20768
|
+
partOf: 'CarePlan'
|
|
20769
|
+
replaces: 'CarePlan'
|
|
20770
|
+
subject: 'Patient' | 'Group'
|
|
20771
|
+
supportingInfo: 'unknown'
|
|
20772
|
+
}
|
|
20773
|
+
'CarePlan.activity': {
|
|
20774
|
+
outcomeReference: 'unknown'
|
|
20775
|
+
reference:
|
|
20776
|
+
| 'Appointment'
|
|
20777
|
+
| 'CommunicationRequest'
|
|
20778
|
+
| 'DeviceRequest'
|
|
20779
|
+
| 'MedicationRequest'
|
|
20780
|
+
| 'NutritionOrder'
|
|
20781
|
+
| 'Task'
|
|
20782
|
+
| 'ServiceRequest'
|
|
20783
|
+
| 'VisionPrescription'
|
|
20784
|
+
| 'RequestGroup'
|
|
20785
|
+
}
|
|
20786
|
+
'CarePlan.activity.detail': {
|
|
20787
|
+
goal: 'Goal'
|
|
20788
|
+
location: 'Location'
|
|
20789
|
+
performer:
|
|
20790
|
+
| 'Practitioner'
|
|
20791
|
+
| 'PractitionerRole'
|
|
20792
|
+
| 'Organization'
|
|
20793
|
+
| 'RelatedPerson'
|
|
20794
|
+
| 'Patient'
|
|
20795
|
+
| 'CareTeam'
|
|
20796
|
+
| 'HealthcareService'
|
|
20797
|
+
| 'Device'
|
|
20798
|
+
product: 'Medication' | 'Substance'
|
|
20799
|
+
reasonReference: 'Condition' | 'Observation' | 'DiagnosticReport' | 'DocumentReference'
|
|
20800
|
+
}
|
|
20801
|
+
CareTeam: {
|
|
20802
|
+
encounter: 'Encounter'
|
|
20803
|
+
managingOrganization: 'Organization'
|
|
20804
|
+
reasonReference: 'Condition'
|
|
20805
|
+
subject: 'Patient' | 'Group'
|
|
20806
|
+
}
|
|
20807
|
+
'CareTeam.participant': {
|
|
20808
|
+
member: 'Practitioner' | 'PractitionerRole' | 'RelatedPerson' | 'Patient' | 'Organization' | 'CareTeam'
|
|
20809
|
+
onBehalfOf: 'Organization'
|
|
20810
|
+
}
|
|
20811
|
+
CatalogEntry: {
|
|
20812
|
+
referencedItem:
|
|
20813
|
+
| 'Medication'
|
|
20814
|
+
| 'Device'
|
|
20815
|
+
| 'Organization'
|
|
20816
|
+
| 'Practitioner'
|
|
20817
|
+
| 'PractitionerRole'
|
|
20818
|
+
| 'HealthcareService'
|
|
20819
|
+
| 'ActivityDefinition'
|
|
20820
|
+
| 'PlanDefinition'
|
|
20821
|
+
| 'SpecimenDefinition'
|
|
20822
|
+
| 'ObservationDefinition'
|
|
20823
|
+
| 'Binary'
|
|
20824
|
+
}
|
|
20825
|
+
'CatalogEntry.relatedEntry': {
|
|
20826
|
+
item: 'CatalogEntry'
|
|
20827
|
+
}
|
|
20828
|
+
ChargeItem: {
|
|
20829
|
+
account: 'Account'
|
|
20830
|
+
context: 'Encounter' | 'EpisodeOfCare'
|
|
20831
|
+
costCenter: 'Organization'
|
|
20832
|
+
enterer: 'Practitioner' | 'PractitionerRole' | 'Organization' | 'Patient' | 'Device' | 'RelatedPerson'
|
|
20833
|
+
partOf: 'ChargeItem'
|
|
20834
|
+
performingOrganization: 'Organization'
|
|
20835
|
+
product: 'Device' | 'Medication' | 'Substance'
|
|
20836
|
+
requestingOrganization: 'Organization'
|
|
20837
|
+
service:
|
|
20838
|
+
| 'DiagnosticReport'
|
|
20839
|
+
| 'ImagingStudy'
|
|
20840
|
+
| 'Immunization'
|
|
20841
|
+
| 'MedicationAdministration'
|
|
20842
|
+
| 'MedicationDispense'
|
|
20843
|
+
| 'Observation'
|
|
20844
|
+
| 'Procedure'
|
|
20845
|
+
| 'SupplyDelivery'
|
|
20846
|
+
subject: 'Patient' | 'Group'
|
|
20847
|
+
supportingInformation: 'unknown'
|
|
20848
|
+
}
|
|
20849
|
+
'ChargeItem.performer': {
|
|
20850
|
+
actor: 'Practitioner' | 'PractitionerRole' | 'Organization' | 'CareTeam' | 'Patient' | 'Device' | 'RelatedPerson'
|
|
20851
|
+
}
|
|
20852
|
+
ChargeItemDefinition: {
|
|
20853
|
+
instance: 'Medication' | 'Substance' | 'Device'
|
|
20854
|
+
}
|
|
20855
|
+
Claim: {
|
|
20856
|
+
enterer: 'Practitioner' | 'PractitionerRole'
|
|
20857
|
+
facility: 'Location'
|
|
20858
|
+
insurer: 'Organization'
|
|
20859
|
+
originalPrescription: 'DeviceRequest' | 'MedicationRequest' | 'VisionPrescription'
|
|
20860
|
+
patient: 'Patient'
|
|
20861
|
+
prescription: 'DeviceRequest' | 'MedicationRequest' | 'VisionPrescription'
|
|
20862
|
+
provider: 'Practitioner' | 'PractitionerRole' | 'Organization'
|
|
20863
|
+
referral: 'ServiceRequest'
|
|
20864
|
+
}
|
|
20865
|
+
'Claim.accident': {
|
|
20866
|
+
location: 'Location'
|
|
20867
|
+
}
|
|
20868
|
+
'Claim.careTeam': {
|
|
20869
|
+
provider: 'Practitioner' | 'PractitionerRole' | 'Organization'
|
|
20870
|
+
}
|
|
20871
|
+
'Claim.diagnosis': {
|
|
20872
|
+
diagnosis: 'Condition'
|
|
20873
|
+
}
|
|
20874
|
+
'Claim.insurance': {
|
|
20875
|
+
claimResponse: 'ClaimResponse'
|
|
20876
|
+
coverage: 'Coverage'
|
|
20877
|
+
}
|
|
20878
|
+
'Claim.item': {
|
|
20879
|
+
encounter: 'Encounter'
|
|
20880
|
+
location: 'Location'
|
|
20881
|
+
udi: 'Device'
|
|
20882
|
+
}
|
|
20883
|
+
'Claim.item.detail': {
|
|
20884
|
+
udi: 'Device'
|
|
20885
|
+
}
|
|
20886
|
+
'Claim.item.detail.subDetail': {
|
|
20887
|
+
udi: 'Device'
|
|
20888
|
+
}
|
|
20889
|
+
'Claim.payee': {
|
|
20890
|
+
party: 'Practitioner' | 'PractitionerRole' | 'Organization' | 'Patient' | 'RelatedPerson'
|
|
20891
|
+
}
|
|
20892
|
+
'Claim.procedure': {
|
|
20893
|
+
procedure: 'Procedure'
|
|
20894
|
+
udi: 'Device'
|
|
20895
|
+
}
|
|
20896
|
+
'Claim.related': {
|
|
20897
|
+
claim: 'Claim'
|
|
20898
|
+
}
|
|
20899
|
+
'Claim.supportingInfo': {
|
|
20900
|
+
value: 'unknown'
|
|
20901
|
+
}
|
|
20902
|
+
ClaimResponse: {
|
|
20903
|
+
communicationRequest: 'CommunicationRequest'
|
|
20904
|
+
insurer: 'Organization'
|
|
20905
|
+
patient: 'Patient'
|
|
20906
|
+
request: 'Claim'
|
|
20907
|
+
requestor: 'Practitioner' | 'PractitionerRole' | 'Organization'
|
|
20908
|
+
}
|
|
20909
|
+
'ClaimResponse.addItem': {
|
|
20910
|
+
location: 'Location'
|
|
20911
|
+
provider: 'Practitioner' | 'PractitionerRole' | 'Organization'
|
|
20912
|
+
}
|
|
20913
|
+
'ClaimResponse.insurance': {
|
|
20914
|
+
claimResponse: 'ClaimResponse'
|
|
20915
|
+
coverage: 'Coverage'
|
|
20916
|
+
}
|
|
20917
|
+
ClinicalImpression: {
|
|
20918
|
+
assessor: 'Practitioner' | 'PractitionerRole'
|
|
20919
|
+
encounter: 'Encounter'
|
|
20920
|
+
previous: 'ClinicalImpression'
|
|
20921
|
+
problem: 'Condition' | 'AllergyIntolerance'
|
|
20922
|
+
prognosisReference: 'RiskAssessment'
|
|
20923
|
+
subject: 'Patient' | 'Group'
|
|
20924
|
+
supportingInfo: 'unknown'
|
|
20925
|
+
}
|
|
20926
|
+
'ClinicalImpression.finding': {
|
|
20927
|
+
itemReference: 'Condition' | 'Observation' | 'Media'
|
|
20928
|
+
}
|
|
20929
|
+
'ClinicalImpression.investigation': {
|
|
20930
|
+
item:
|
|
20931
|
+
| 'Observation'
|
|
20932
|
+
| 'QuestionnaireResponse'
|
|
20933
|
+
| 'FamilyMemberHistory'
|
|
20934
|
+
| 'DiagnosticReport'
|
|
20935
|
+
| 'RiskAssessment'
|
|
20936
|
+
| 'ImagingStudy'
|
|
20937
|
+
| 'Media'
|
|
20938
|
+
}
|
|
20939
|
+
Communication: {
|
|
20940
|
+
about: 'unknown'
|
|
20941
|
+
basedOn: 'unknown'
|
|
20942
|
+
encounter: 'Encounter'
|
|
20943
|
+
inResponseTo: 'Communication'
|
|
20944
|
+
partOf: 'unknown'
|
|
20945
|
+
reasonReference: 'Condition' | 'Observation' | 'DiagnosticReport' | 'DocumentReference'
|
|
20946
|
+
recipient:
|
|
20947
|
+
| 'Device'
|
|
20948
|
+
| 'Organization'
|
|
20949
|
+
| 'Patient'
|
|
20950
|
+
| 'Practitioner'
|
|
20951
|
+
| 'PractitionerRole'
|
|
20952
|
+
| 'RelatedPerson'
|
|
20953
|
+
| 'Group'
|
|
20954
|
+
| 'CareTeam'
|
|
20955
|
+
| 'HealthcareService'
|
|
20956
|
+
sender:
|
|
20957
|
+
| 'Device'
|
|
20958
|
+
| 'Organization'
|
|
20959
|
+
| 'Patient'
|
|
20960
|
+
| 'Practitioner'
|
|
20961
|
+
| 'PractitionerRole'
|
|
20962
|
+
| 'RelatedPerson'
|
|
20963
|
+
| 'HealthcareService'
|
|
20964
|
+
subject: 'Patient' | 'Group'
|
|
20965
|
+
}
|
|
20966
|
+
'Communication.payload': {
|
|
20967
|
+
content: 'unknown'
|
|
20968
|
+
}
|
|
20969
|
+
CommunicationRequest: {
|
|
20970
|
+
about: 'unknown'
|
|
20971
|
+
basedOn: 'unknown'
|
|
20972
|
+
encounter: 'Encounter'
|
|
20973
|
+
reasonReference: 'Condition' | 'Observation' | 'DiagnosticReport' | 'DocumentReference'
|
|
20974
|
+
recipient:
|
|
20975
|
+
| 'Device'
|
|
20976
|
+
| 'Organization'
|
|
20977
|
+
| 'Patient'
|
|
20978
|
+
| 'Practitioner'
|
|
20979
|
+
| 'PractitionerRole'
|
|
20980
|
+
| 'RelatedPerson'
|
|
20981
|
+
| 'Group'
|
|
20982
|
+
| 'CareTeam'
|
|
20983
|
+
| 'HealthcareService'
|
|
20984
|
+
replaces: 'CommunicationRequest'
|
|
20985
|
+
requester: 'Practitioner' | 'PractitionerRole' | 'Organization' | 'Patient' | 'RelatedPerson' | 'Device'
|
|
20986
|
+
sender:
|
|
20987
|
+
| 'Device'
|
|
20988
|
+
| 'Organization'
|
|
20989
|
+
| 'Patient'
|
|
20990
|
+
| 'Practitioner'
|
|
20991
|
+
| 'PractitionerRole'
|
|
20992
|
+
| 'RelatedPerson'
|
|
20993
|
+
| 'HealthcareService'
|
|
20994
|
+
subject: 'Patient' | 'Group'
|
|
20995
|
+
}
|
|
20996
|
+
'CommunicationRequest.payload': {
|
|
20997
|
+
content: 'unknown'
|
|
20998
|
+
}
|
|
20999
|
+
Composition: {
|
|
21000
|
+
author: 'Practitioner' | 'PractitionerRole' | 'Device' | 'Patient' | 'RelatedPerson' | 'Organization'
|
|
21001
|
+
custodian: 'Organization'
|
|
21002
|
+
encounter: 'Encounter'
|
|
21003
|
+
subject: 'unknown'
|
|
21004
|
+
}
|
|
21005
|
+
'Composition.attester': {
|
|
21006
|
+
party: 'Patient' | 'RelatedPerson' | 'Practitioner' | 'PractitionerRole' | 'Organization'
|
|
21007
|
+
}
|
|
21008
|
+
'Composition.event': {
|
|
21009
|
+
detail: 'unknown'
|
|
21010
|
+
}
|
|
21011
|
+
'Composition.relatesTo': {
|
|
21012
|
+
target: 'Composition'
|
|
21013
|
+
}
|
|
21014
|
+
'Composition.section': {
|
|
21015
|
+
author: 'Practitioner' | 'PractitionerRole' | 'Device' | 'Patient' | 'RelatedPerson' | 'Organization'
|
|
21016
|
+
entry: 'unknown'
|
|
21017
|
+
focus: 'unknown'
|
|
21018
|
+
}
|
|
21019
|
+
Condition: {
|
|
21020
|
+
asserter: 'Practitioner' | 'PractitionerRole' | 'Patient' | 'RelatedPerson'
|
|
21021
|
+
encounter: 'Encounter'
|
|
21022
|
+
recorder: 'Practitioner' | 'PractitionerRole' | 'Patient' | 'RelatedPerson'
|
|
21023
|
+
subject: 'Patient' | 'Group'
|
|
21024
|
+
}
|
|
21025
|
+
'Condition.evidence': {
|
|
21026
|
+
detail: 'unknown'
|
|
21027
|
+
}
|
|
21028
|
+
'Condition.stage': {
|
|
21029
|
+
assessment: 'ClinicalImpression' | 'DiagnosticReport' | 'Observation'
|
|
21030
|
+
}
|
|
21031
|
+
Consent: {
|
|
21032
|
+
organization: 'Organization'
|
|
21033
|
+
patient: 'Patient'
|
|
21034
|
+
performer: 'Organization' | 'Patient' | 'Practitioner' | 'RelatedPerson' | 'PractitionerRole'
|
|
21035
|
+
source: 'Consent' | 'DocumentReference' | 'Contract' | 'QuestionnaireResponse'
|
|
21036
|
+
}
|
|
21037
|
+
'Consent.provision.actor': {
|
|
21038
|
+
reference:
|
|
21039
|
+
| 'Device'
|
|
21040
|
+
| 'Group'
|
|
21041
|
+
| 'CareTeam'
|
|
21042
|
+
| 'Organization'
|
|
21043
|
+
| 'Patient'
|
|
21044
|
+
| 'Practitioner'
|
|
21045
|
+
| 'RelatedPerson'
|
|
21046
|
+
| 'PractitionerRole'
|
|
21047
|
+
}
|
|
21048
|
+
'Consent.provision.data': {
|
|
21049
|
+
reference: 'unknown'
|
|
21050
|
+
}
|
|
21051
|
+
'Consent.verification': {
|
|
21052
|
+
verifiedWith: 'Patient' | 'RelatedPerson'
|
|
21053
|
+
}
|
|
21054
|
+
Contract: {
|
|
21055
|
+
author: 'Patient' | 'Practitioner' | 'PractitionerRole' | 'Organization'
|
|
21056
|
+
authority: 'Organization'
|
|
21057
|
+
domain: 'Location'
|
|
21058
|
+
instantiatesCanonical: 'Contract'
|
|
21059
|
+
legallyBinding: 'Composition' | 'DocumentReference' | 'QuestionnaireResponse' | 'Contract'
|
|
21060
|
+
relevantHistory: 'Provenance'
|
|
21061
|
+
site: 'Location'
|
|
21062
|
+
subject: 'unknown'
|
|
21063
|
+
supportingInfo: 'unknown'
|
|
21064
|
+
topic: 'unknown'
|
|
21065
|
+
}
|
|
21066
|
+
'Contract.contentDefinition': {
|
|
21067
|
+
publisher: 'Practitioner' | 'PractitionerRole' | 'Organization'
|
|
21068
|
+
}
|
|
21069
|
+
'Contract.friendly': {
|
|
21070
|
+
content: 'Composition' | 'DocumentReference' | 'QuestionnaireResponse'
|
|
21071
|
+
}
|
|
21072
|
+
'Contract.legal': {
|
|
21073
|
+
content: 'Composition' | 'DocumentReference' | 'QuestionnaireResponse'
|
|
21074
|
+
}
|
|
21075
|
+
'Contract.rule': {
|
|
21076
|
+
content: 'DocumentReference'
|
|
21077
|
+
}
|
|
21078
|
+
'Contract.signer': {
|
|
21079
|
+
party: 'Organization' | 'Patient' | 'Practitioner' | 'PractitionerRole' | 'RelatedPerson'
|
|
21080
|
+
}
|
|
21081
|
+
'Contract.term': {
|
|
21082
|
+
topic: 'unknown'
|
|
21083
|
+
}
|
|
21084
|
+
'Contract.term.action': {
|
|
21085
|
+
context: 'Encounter' | 'EpisodeOfCare'
|
|
21086
|
+
performer:
|
|
21087
|
+
| 'RelatedPerson'
|
|
21088
|
+
| 'Patient'
|
|
21089
|
+
| 'Practitioner'
|
|
21090
|
+
| 'PractitionerRole'
|
|
21091
|
+
| 'CareTeam'
|
|
21092
|
+
| 'Device'
|
|
21093
|
+
| 'Substance'
|
|
21094
|
+
| 'Organization'
|
|
21095
|
+
| 'Location'
|
|
21096
|
+
reasonReference:
|
|
21097
|
+
'Condition' | 'Observation' | 'DiagnosticReport' | 'DocumentReference' | 'Questionnaire' | 'QuestionnaireResponse'
|
|
21098
|
+
requester: 'Patient' | 'RelatedPerson' | 'Practitioner' | 'PractitionerRole' | 'Device' | 'Group' | 'Organization'
|
|
21099
|
+
}
|
|
21100
|
+
'Contract.term.action.subject': {
|
|
21101
|
+
reference: 'Patient' | 'RelatedPerson' | 'Practitioner' | 'PractitionerRole' | 'Device' | 'Group' | 'Organization'
|
|
21102
|
+
}
|
|
21103
|
+
'Contract.term.asset': {
|
|
21104
|
+
typeReference: 'unknown'
|
|
21105
|
+
}
|
|
21106
|
+
'Contract.term.asset.context': {
|
|
21107
|
+
reference: 'unknown'
|
|
21108
|
+
}
|
|
21109
|
+
'Contract.term.asset.valuedItem': {
|
|
21110
|
+
entity: 'unknown'
|
|
21111
|
+
recipient: 'Organization' | 'Patient' | 'Practitioner' | 'PractitionerRole' | 'RelatedPerson'
|
|
21112
|
+
responsible: 'Organization' | 'Patient' | 'Practitioner' | 'PractitionerRole' | 'RelatedPerson'
|
|
21113
|
+
}
|
|
21114
|
+
'Contract.term.offer': {
|
|
21115
|
+
topic: 'unknown'
|
|
21116
|
+
}
|
|
21117
|
+
'Contract.term.offer.answer': {
|
|
21118
|
+
value: 'unknown'
|
|
21119
|
+
}
|
|
21120
|
+
'Contract.term.offer.party': {
|
|
21121
|
+
reference: 'Patient' | 'RelatedPerson' | 'Practitioner' | 'PractitionerRole' | 'Device' | 'Group' | 'Organization'
|
|
21122
|
+
}
|
|
21123
|
+
Coverage: {
|
|
21124
|
+
beneficiary: 'Patient'
|
|
21125
|
+
contract: 'Contract'
|
|
21126
|
+
payor: 'Organization' | 'Patient' | 'RelatedPerson'
|
|
21127
|
+
policyHolder: 'Patient' | 'RelatedPerson' | 'Organization'
|
|
21128
|
+
subscriber: 'Patient' | 'RelatedPerson'
|
|
21129
|
+
}
|
|
21130
|
+
CoverageEligibilityRequest: {
|
|
21131
|
+
enterer: 'Practitioner' | 'PractitionerRole'
|
|
21132
|
+
facility: 'Location'
|
|
21133
|
+
insurer: 'Organization'
|
|
21134
|
+
patient: 'Patient'
|
|
21135
|
+
provider: 'Practitioner' | 'PractitionerRole' | 'Organization'
|
|
21136
|
+
}
|
|
21137
|
+
'CoverageEligibilityRequest.insurance': {
|
|
21138
|
+
coverage: 'Coverage'
|
|
21139
|
+
}
|
|
21140
|
+
'CoverageEligibilityRequest.item': {
|
|
21141
|
+
detail: 'unknown'
|
|
21142
|
+
facility: 'Location' | 'Organization'
|
|
21143
|
+
provider: 'Practitioner' | 'PractitionerRole'
|
|
21144
|
+
}
|
|
21145
|
+
'CoverageEligibilityRequest.item.diagnosis': {
|
|
21146
|
+
diagnosis: 'Condition'
|
|
21147
|
+
}
|
|
21148
|
+
'CoverageEligibilityRequest.supportingInfo': {
|
|
21149
|
+
information: 'unknown'
|
|
21150
|
+
}
|
|
21151
|
+
CoverageEligibilityResponse: {
|
|
21152
|
+
insurer: 'Organization'
|
|
21153
|
+
patient: 'Patient'
|
|
21154
|
+
request: 'CoverageEligibilityRequest'
|
|
21155
|
+
requestor: 'Practitioner' | 'PractitionerRole' | 'Organization'
|
|
21156
|
+
}
|
|
21157
|
+
'CoverageEligibilityResponse.insurance': {
|
|
21158
|
+
coverage: 'Coverage'
|
|
21159
|
+
}
|
|
21160
|
+
'CoverageEligibilityResponse.insurance.item': {
|
|
21161
|
+
provider: 'Practitioner' | 'PractitionerRole'
|
|
21162
|
+
}
|
|
21163
|
+
DetectedIssue: {
|
|
21164
|
+
author: 'Practitioner' | 'PractitionerRole' | 'Device'
|
|
21165
|
+
implicated: 'unknown'
|
|
21166
|
+
patient: 'Patient'
|
|
21167
|
+
}
|
|
21168
|
+
'DetectedIssue.evidence': {
|
|
21169
|
+
detail: 'unknown'
|
|
21170
|
+
}
|
|
21171
|
+
'DetectedIssue.mitigation': {
|
|
21172
|
+
author: 'Practitioner' | 'PractitionerRole'
|
|
21173
|
+
}
|
|
21174
|
+
Device: {
|
|
21175
|
+
definition: 'DeviceDefinition'
|
|
21176
|
+
location: 'Location'
|
|
21177
|
+
owner: 'Organization'
|
|
21178
|
+
parent: 'Device'
|
|
21179
|
+
patient: 'Patient'
|
|
21180
|
+
}
|
|
21181
|
+
DeviceDefinition: {
|
|
21182
|
+
manufacturer: 'Organization'
|
|
21183
|
+
owner: 'Organization'
|
|
21184
|
+
parentDevice: 'DeviceDefinition'
|
|
21185
|
+
}
|
|
21186
|
+
DeviceMetric: {
|
|
21187
|
+
parent: 'Device'
|
|
21188
|
+
source: 'Device'
|
|
21189
|
+
}
|
|
21190
|
+
DeviceRequest: {
|
|
21191
|
+
basedOn: 'unknown'
|
|
21192
|
+
code: 'Device'
|
|
21193
|
+
encounter: 'Encounter'
|
|
21194
|
+
insurance: 'Coverage' | 'ClaimResponse'
|
|
21195
|
+
performer:
|
|
21196
|
+
| 'Practitioner'
|
|
21197
|
+
| 'PractitionerRole'
|
|
21198
|
+
| 'Organization'
|
|
21199
|
+
| 'CareTeam'
|
|
21200
|
+
| 'HealthcareService'
|
|
21201
|
+
| 'Patient'
|
|
21202
|
+
| 'Device'
|
|
21203
|
+
| 'RelatedPerson'
|
|
21204
|
+
priorRequest: 'unknown'
|
|
21205
|
+
reasonReference: 'Condition' | 'Observation' | 'DiagnosticReport' | 'DocumentReference'
|
|
21206
|
+
relevantHistory: 'Provenance'
|
|
21207
|
+
requester: 'Device' | 'Practitioner' | 'PractitionerRole' | 'Organization'
|
|
21208
|
+
subject: 'Patient' | 'Group' | 'Location' | 'Device'
|
|
21209
|
+
supportingInfo: 'unknown'
|
|
21210
|
+
}
|
|
21211
|
+
DeviceUseStatement: {
|
|
21212
|
+
basedOn: 'ServiceRequest'
|
|
21213
|
+
derivedFrom:
|
|
21214
|
+
'ServiceRequest' | 'Procedure' | 'Claim' | 'Observation' | 'QuestionnaireResponse' | 'DocumentReference'
|
|
21215
|
+
device: 'Device'
|
|
21216
|
+
reasonReference: 'Condition' | 'Observation' | 'DiagnosticReport' | 'DocumentReference' | 'Media'
|
|
21217
|
+
source: 'Patient' | 'Practitioner' | 'PractitionerRole' | 'RelatedPerson'
|
|
21218
|
+
subject: 'Patient' | 'Group'
|
|
21219
|
+
}
|
|
21220
|
+
DiagnosticReport: {
|
|
21221
|
+
basedOn: 'CarePlan' | 'ImmunizationRecommendation' | 'MedicationRequest' | 'NutritionOrder' | 'ServiceRequest'
|
|
21222
|
+
encounter: 'Encounter'
|
|
21223
|
+
imagingStudy: 'ImagingStudy'
|
|
21224
|
+
performer: 'Practitioner' | 'PractitionerRole' | 'Organization' | 'CareTeam'
|
|
21225
|
+
result: 'Observation'
|
|
21226
|
+
resultsInterpreter: 'Practitioner' | 'PractitionerRole' | 'Organization' | 'CareTeam'
|
|
21227
|
+
specimen: 'Specimen'
|
|
21228
|
+
subject: 'Patient' | 'Group' | 'Device' | 'Location'
|
|
21229
|
+
}
|
|
21230
|
+
'DiagnosticReport.media': {
|
|
21231
|
+
link: 'Media'
|
|
21232
|
+
}
|
|
21233
|
+
DocumentManifest: {
|
|
21234
|
+
author: 'Practitioner' | 'PractitionerRole' | 'Organization' | 'Device' | 'Patient' | 'RelatedPerson'
|
|
21235
|
+
content: 'unknown'
|
|
21236
|
+
recipient: 'Patient' | 'Practitioner' | 'PractitionerRole' | 'RelatedPerson' | 'Organization'
|
|
21237
|
+
subject: 'Patient' | 'Practitioner' | 'Group' | 'Device'
|
|
21238
|
+
}
|
|
21239
|
+
'DocumentManifest.related': {
|
|
21240
|
+
ref: 'unknown'
|
|
21241
|
+
}
|
|
21242
|
+
DocumentReference: {
|
|
21243
|
+
authenticator: 'Practitioner' | 'PractitionerRole' | 'Organization'
|
|
21244
|
+
author: 'Practitioner' | 'PractitionerRole' | 'Organization' | 'Device' | 'Patient' | 'RelatedPerson'
|
|
21245
|
+
custodian: 'Organization'
|
|
21246
|
+
subject: 'Patient' | 'Practitioner' | 'Group' | 'Device'
|
|
21247
|
+
}
|
|
21248
|
+
'DocumentReference.context': {
|
|
21249
|
+
encounter: 'Encounter' | 'EpisodeOfCare'
|
|
21250
|
+
related: 'unknown'
|
|
21251
|
+
sourcePatientInfo: 'Patient'
|
|
21252
|
+
}
|
|
21253
|
+
'DocumentReference.relatesTo': {
|
|
21254
|
+
target: 'DocumentReference'
|
|
21255
|
+
}
|
|
21256
|
+
EffectEvidenceSynthesis: {
|
|
21257
|
+
exposure: 'EvidenceVariable'
|
|
21258
|
+
exposureAlternative: 'EvidenceVariable'
|
|
21259
|
+
outcome: 'EvidenceVariable'
|
|
21260
|
+
population: 'EvidenceVariable'
|
|
21261
|
+
}
|
|
21262
|
+
'EffectEvidenceSynthesis.resultsByExposure': {
|
|
21263
|
+
riskEvidenceSynthesis: 'RiskEvidenceSynthesis'
|
|
21264
|
+
}
|
|
21265
|
+
Encounter: {
|
|
21266
|
+
account: 'Account'
|
|
21267
|
+
appointment: 'Appointment'
|
|
21268
|
+
basedOn: 'ServiceRequest'
|
|
21269
|
+
episodeOfCare: 'EpisodeOfCare'
|
|
21270
|
+
partOf: 'Encounter'
|
|
21271
|
+
reasonReference: 'Condition' | 'Procedure' | 'Observation' | 'ImmunizationRecommendation'
|
|
21272
|
+
serviceProvider: 'Organization'
|
|
21273
|
+
subject: 'Patient' | 'Group'
|
|
21274
|
+
}
|
|
21275
|
+
'Encounter.diagnosis': {
|
|
21276
|
+
condition: 'Condition' | 'Procedure'
|
|
21277
|
+
}
|
|
21278
|
+
'Encounter.hospitalization': {
|
|
21279
|
+
destination: 'Location' | 'Organization'
|
|
21280
|
+
origin: 'Location' | 'Organization'
|
|
21281
|
+
}
|
|
21282
|
+
'Encounter.location': {
|
|
21283
|
+
location: 'Location'
|
|
21284
|
+
}
|
|
21285
|
+
'Encounter.participant': {
|
|
21286
|
+
individual: 'Practitioner' | 'PractitionerRole' | 'RelatedPerson'
|
|
21287
|
+
}
|
|
21288
|
+
Endpoint: {
|
|
21289
|
+
managingOrganization: 'Organization'
|
|
21290
|
+
}
|
|
21291
|
+
EnrollmentRequest: {
|
|
21292
|
+
candidate: 'Patient'
|
|
21293
|
+
coverage: 'Coverage'
|
|
21294
|
+
insurer: 'Organization'
|
|
21295
|
+
provider: 'Practitioner' | 'PractitionerRole' | 'Organization'
|
|
21296
|
+
}
|
|
21297
|
+
EnrollmentResponse: {
|
|
21298
|
+
organization: 'Organization'
|
|
21299
|
+
request: 'EnrollmentRequest'
|
|
21300
|
+
requestProvider: 'Practitioner' | 'PractitionerRole' | 'Organization'
|
|
21301
|
+
}
|
|
21302
|
+
EpisodeOfCare: {
|
|
21303
|
+
account: 'Account'
|
|
21304
|
+
careManager: 'Practitioner' | 'PractitionerRole'
|
|
21305
|
+
managingOrganization: 'Organization'
|
|
21306
|
+
patient: 'Patient'
|
|
21307
|
+
referralRequest: 'ServiceRequest'
|
|
21308
|
+
team: 'CareTeam'
|
|
21309
|
+
}
|
|
21310
|
+
'EpisodeOfCare.diagnosis': {
|
|
21311
|
+
condition: 'Condition'
|
|
21312
|
+
}
|
|
21313
|
+
EventDefinition: {
|
|
21314
|
+
subject: 'Group'
|
|
21315
|
+
}
|
|
21316
|
+
Evidence: {
|
|
21317
|
+
exposureBackground: 'EvidenceVariable'
|
|
21318
|
+
exposureVariant: 'EvidenceVariable'
|
|
21319
|
+
outcome: 'EvidenceVariable'
|
|
21320
|
+
}
|
|
21321
|
+
'EvidenceVariable.characteristic': {
|
|
21322
|
+
definitionReference: 'EvidenceVariable' | 'Group' | 'Evidence'
|
|
21323
|
+
}
|
|
21324
|
+
'EvidenceVariable.characteristic.definitionByTypeAndValue': {
|
|
21325
|
+
device: 'Device' | 'DeviceMetric'
|
|
21326
|
+
value: 'unknown'
|
|
21327
|
+
}
|
|
21328
|
+
'EvidenceVariable.characteristic.timeFromEvent': {
|
|
21329
|
+
event: 'unknown'
|
|
21330
|
+
}
|
|
21331
|
+
ExplanationOfBenefit: {
|
|
21332
|
+
claim: 'Claim'
|
|
21333
|
+
claimResponse: 'ClaimResponse'
|
|
21334
|
+
enterer: 'Practitioner' | 'PractitionerRole'
|
|
21335
|
+
facility: 'Location'
|
|
21336
|
+
insurer: 'Organization'
|
|
21337
|
+
originalPrescription: 'MedicationRequest'
|
|
21338
|
+
patient: 'Patient'
|
|
21339
|
+
prescription: 'MedicationRequest' | 'VisionPrescription'
|
|
21340
|
+
provider: 'Practitioner' | 'PractitionerRole' | 'Organization'
|
|
21341
|
+
referral: 'ServiceRequest'
|
|
21342
|
+
}
|
|
21343
|
+
'ExplanationOfBenefit.accident': {
|
|
21344
|
+
location: 'Location'
|
|
21345
|
+
}
|
|
21346
|
+
'ExplanationOfBenefit.addItem': {
|
|
21347
|
+
location: 'Location'
|
|
21348
|
+
provider: 'Practitioner' | 'PractitionerRole' | 'Organization'
|
|
21349
|
+
}
|
|
21350
|
+
'ExplanationOfBenefit.careTeam': {
|
|
21351
|
+
provider: 'Practitioner' | 'PractitionerRole' | 'Organization'
|
|
21352
|
+
}
|
|
21353
|
+
'ExplanationOfBenefit.diagnosis': {
|
|
21354
|
+
diagnosis: 'Condition'
|
|
21355
|
+
}
|
|
21356
|
+
'ExplanationOfBenefit.insurance': {
|
|
21357
|
+
coverage: 'Coverage'
|
|
21358
|
+
}
|
|
21359
|
+
'ExplanationOfBenefit.item': {
|
|
21360
|
+
encounter: 'Encounter'
|
|
21361
|
+
location: 'Location'
|
|
21362
|
+
udi: 'Device'
|
|
21363
|
+
}
|
|
21364
|
+
'ExplanationOfBenefit.item.detail': {
|
|
21365
|
+
udi: 'Device'
|
|
21366
|
+
}
|
|
21367
|
+
'ExplanationOfBenefit.item.detail.subDetail': {
|
|
21368
|
+
udi: 'Device'
|
|
21369
|
+
}
|
|
21370
|
+
'ExplanationOfBenefit.payee': {
|
|
21371
|
+
party: 'Practitioner' | 'PractitionerRole' | 'Organization' | 'Patient' | 'RelatedPerson'
|
|
21372
|
+
}
|
|
21373
|
+
'ExplanationOfBenefit.procedure': {
|
|
21374
|
+
procedure: 'Procedure'
|
|
21375
|
+
udi: 'Device'
|
|
21376
|
+
}
|
|
21377
|
+
'ExplanationOfBenefit.related': {
|
|
21378
|
+
claim: 'Claim'
|
|
21379
|
+
}
|
|
21380
|
+
'ExplanationOfBenefit.supportingInfo': {
|
|
21381
|
+
value: 'unknown'
|
|
21382
|
+
}
|
|
21383
|
+
FamilyMemberHistory: {
|
|
21384
|
+
patient: 'Patient'
|
|
21385
|
+
reasonReference:
|
|
21386
|
+
| 'Condition'
|
|
21387
|
+
| 'Observation'
|
|
21388
|
+
| 'AllergyIntolerance'
|
|
21389
|
+
| 'QuestionnaireResponse'
|
|
21390
|
+
| 'DiagnosticReport'
|
|
21391
|
+
| 'DocumentReference'
|
|
21392
|
+
}
|
|
21393
|
+
Flag: {
|
|
21394
|
+
author: 'Device' | 'Organization' | 'Patient' | 'Practitioner' | 'PractitionerRole'
|
|
21395
|
+
encounter: 'Encounter'
|
|
21396
|
+
subject:
|
|
21397
|
+
'Patient' | 'Location' | 'Group' | 'Organization' | 'Practitioner' | 'PlanDefinition' | 'Medication' | 'Procedure'
|
|
21398
|
+
}
|
|
21399
|
+
Goal: {
|
|
21400
|
+
addresses:
|
|
21401
|
+
'Condition' | 'Observation' | 'MedicationStatement' | 'NutritionOrder' | 'ServiceRequest' | 'RiskAssessment'
|
|
21402
|
+
expressedBy: 'Patient' | 'Practitioner' | 'PractitionerRole' | 'RelatedPerson'
|
|
21403
|
+
outcomeReference: 'Observation'
|
|
21404
|
+
subject: 'Patient' | 'Group' | 'Organization'
|
|
21405
|
+
}
|
|
21406
|
+
Group: {
|
|
21407
|
+
managingEntity: 'Organization' | 'RelatedPerson' | 'Practitioner' | 'PractitionerRole'
|
|
21408
|
+
}
|
|
21409
|
+
'Group.characteristic': {
|
|
21410
|
+
value: 'unknown'
|
|
21411
|
+
}
|
|
21412
|
+
'Group.member': {
|
|
21413
|
+
entity: 'Patient' | 'Practitioner' | 'PractitionerRole' | 'Device' | 'Medication' | 'Substance' | 'Group'
|
|
21414
|
+
}
|
|
21415
|
+
GuidanceResponse: {
|
|
21416
|
+
encounter: 'Encounter'
|
|
21417
|
+
evaluationMessage: 'OperationOutcome'
|
|
21418
|
+
outputParameters: 'Parameters'
|
|
21419
|
+
performer: 'Device'
|
|
21420
|
+
reasonReference: 'Condition' | 'Observation' | 'DiagnosticReport' | 'DocumentReference'
|
|
21421
|
+
result: 'CarePlan' | 'RequestGroup'
|
|
21422
|
+
subject: 'Patient' | 'Group'
|
|
21423
|
+
}
|
|
21424
|
+
HealthcareService: {
|
|
21425
|
+
coverageArea: 'Location'
|
|
21426
|
+
endpoint: 'Endpoint'
|
|
21427
|
+
location: 'Location'
|
|
21428
|
+
offeredIn: 'HealthcareService'
|
|
21429
|
+
providedBy: 'Organization'
|
|
21430
|
+
}
|
|
21431
|
+
ImagingStudy: {
|
|
21432
|
+
basedOn: 'CarePlan' | 'ServiceRequest' | 'Appointment' | 'AppointmentResponse' | 'Task'
|
|
21433
|
+
encounter: 'Encounter'
|
|
21434
|
+
endpoint: 'Endpoint'
|
|
21435
|
+
interpreter: 'Practitioner' | 'PractitionerRole'
|
|
21436
|
+
location: 'Location'
|
|
21437
|
+
procedureReference: 'Procedure'
|
|
21438
|
+
reasonReference: 'Condition' | 'Observation' | 'Media' | 'DiagnosticReport' | 'DocumentReference'
|
|
21439
|
+
referrer: 'Practitioner' | 'PractitionerRole'
|
|
21440
|
+
subject: 'Patient' | 'Device' | 'Group'
|
|
21441
|
+
}
|
|
21442
|
+
'ImagingStudy.series': {
|
|
21443
|
+
endpoint: 'Endpoint'
|
|
21444
|
+
specimen: 'Specimen'
|
|
21445
|
+
}
|
|
21446
|
+
'ImagingStudy.series.performer': {
|
|
21447
|
+
actor: 'Practitioner' | 'PractitionerRole' | 'Organization' | 'CareTeam' | 'Patient' | 'Device' | 'RelatedPerson'
|
|
21448
|
+
}
|
|
21449
|
+
Immunization: {
|
|
21450
|
+
encounter: 'Encounter'
|
|
21451
|
+
location: 'Location'
|
|
21452
|
+
manufacturer: 'Organization'
|
|
21453
|
+
patient: 'Patient'
|
|
21454
|
+
reasonReference: 'Condition' | 'Observation' | 'DiagnosticReport'
|
|
21455
|
+
}
|
|
21456
|
+
'Immunization.performer': {
|
|
21457
|
+
actor: 'Practitioner' | 'PractitionerRole' | 'Organization'
|
|
21458
|
+
}
|
|
21459
|
+
'Immunization.protocolApplied': {
|
|
21460
|
+
authority: 'Organization'
|
|
21461
|
+
}
|
|
21462
|
+
'Immunization.reaction': {
|
|
21463
|
+
detail: 'Observation'
|
|
21464
|
+
}
|
|
21465
|
+
ImmunizationEvaluation: {
|
|
21466
|
+
authority: 'Organization'
|
|
21467
|
+
immunizationEvent: 'Immunization'
|
|
21468
|
+
patient: 'Patient'
|
|
21469
|
+
}
|
|
21470
|
+
ImmunizationRecommendation: {
|
|
21471
|
+
authority: 'Organization'
|
|
21472
|
+
patient: 'Patient'
|
|
21473
|
+
}
|
|
21474
|
+
'ImmunizationRecommendation.recommendation': {
|
|
21475
|
+
supportingImmunization: 'Immunization' | 'ImmunizationEvaluation'
|
|
21476
|
+
supportingPatientInformation: 'unknown'
|
|
21477
|
+
}
|
|
21478
|
+
'ImplementationGuide.definition.page': {
|
|
21479
|
+
name: 'Binary'
|
|
21480
|
+
}
|
|
21481
|
+
'ImplementationGuide.definition.resource': {
|
|
21482
|
+
reference: 'unknown'
|
|
21483
|
+
}
|
|
21484
|
+
'ImplementationGuide.manifest.resource': {
|
|
21485
|
+
reference: 'unknown'
|
|
21486
|
+
}
|
|
21487
|
+
InsurancePlan: {
|
|
21488
|
+
administeredBy: 'Organization'
|
|
21489
|
+
coverageArea: 'Location'
|
|
21490
|
+
endpoint: 'Endpoint'
|
|
21491
|
+
network: 'Organization'
|
|
21492
|
+
ownedBy: 'Organization'
|
|
21493
|
+
}
|
|
21494
|
+
'InsurancePlan.coverage': {
|
|
21495
|
+
network: 'Organization'
|
|
21496
|
+
}
|
|
21497
|
+
'InsurancePlan.plan': {
|
|
21498
|
+
coverageArea: 'Location'
|
|
21499
|
+
network: 'Organization'
|
|
21500
|
+
}
|
|
21501
|
+
Invoice: {
|
|
21502
|
+
account: 'Account'
|
|
21503
|
+
issuer: 'Organization'
|
|
21504
|
+
recipient: 'Organization' | 'Patient' | 'RelatedPerson'
|
|
21505
|
+
subject: 'Patient' | 'Group'
|
|
21506
|
+
}
|
|
21507
|
+
'Invoice.lineItem': {
|
|
21508
|
+
chargeItem: 'ChargeItem'
|
|
21509
|
+
}
|
|
21510
|
+
'Invoice.participant': {
|
|
21511
|
+
actor: 'Practitioner' | 'Organization' | 'Patient' | 'PractitionerRole' | 'Device' | 'RelatedPerson'
|
|
21512
|
+
}
|
|
21513
|
+
Library: {
|
|
21514
|
+
subject: 'Group'
|
|
21515
|
+
}
|
|
21516
|
+
Linkage: {
|
|
21517
|
+
author: 'Practitioner' | 'PractitionerRole' | 'Organization'
|
|
21518
|
+
}
|
|
21519
|
+
'Linkage.item': {
|
|
21520
|
+
resource: 'unknown'
|
|
21521
|
+
}
|
|
21522
|
+
List: {
|
|
21523
|
+
encounter: 'Encounter'
|
|
21524
|
+
source: 'Practitioner' | 'PractitionerRole' | 'Patient' | 'Device'
|
|
21525
|
+
subject: 'Patient' | 'Group' | 'Device' | 'Location'
|
|
21526
|
+
}
|
|
21527
|
+
'List.entry': {
|
|
21528
|
+
item: 'unknown'
|
|
21529
|
+
}
|
|
21530
|
+
Location: {
|
|
21531
|
+
endpoint: 'Endpoint'
|
|
21532
|
+
managingOrganization: 'Organization'
|
|
21533
|
+
partOf: 'Location'
|
|
21534
|
+
}
|
|
21535
|
+
Measure: {
|
|
21536
|
+
subject: 'Group'
|
|
21537
|
+
}
|
|
21538
|
+
MeasureReport: {
|
|
21539
|
+
evaluatedResource: 'unknown'
|
|
21540
|
+
reporter: 'Practitioner' | 'PractitionerRole' | 'Location' | 'Organization'
|
|
21541
|
+
subject:
|
|
21542
|
+
| 'Patient'
|
|
21543
|
+
| 'Practitioner'
|
|
21544
|
+
| 'PractitionerRole'
|
|
21545
|
+
| 'Location'
|
|
21546
|
+
| 'Device'
|
|
21547
|
+
| 'RelatedPerson'
|
|
21548
|
+
| 'Organization'
|
|
21549
|
+
| 'CareTeam'
|
|
21550
|
+
| 'HealthcareService'
|
|
21551
|
+
| 'Group'
|
|
21552
|
+
}
|
|
21553
|
+
'MeasureReport.group.population': {
|
|
21554
|
+
subjectResults: 'List'
|
|
21555
|
+
}
|
|
21556
|
+
'MeasureReport.group.stratifier.stratum.population': {
|
|
21557
|
+
subjectResults: 'List'
|
|
21558
|
+
}
|
|
21559
|
+
Media: {
|
|
21560
|
+
basedOn: 'ServiceRequest' | 'CarePlan'
|
|
21561
|
+
device: 'Device' | 'DeviceMetric'
|
|
21562
|
+
encounter: 'Encounter'
|
|
21563
|
+
operator: 'Practitioner' | 'PractitionerRole' | 'Organization' | 'CareTeam' | 'Patient' | 'Device' | 'RelatedPerson'
|
|
21564
|
+
partOf: 'unknown'
|
|
21565
|
+
subject: 'Patient' | 'Practitioner' | 'PractitionerRole' | 'Group' | 'Device' | 'Specimen' | 'Location'
|
|
21566
|
+
}
|
|
21567
|
+
Medication: {
|
|
21568
|
+
manufacturer: 'Organization'
|
|
21569
|
+
}
|
|
21570
|
+
'Medication.ingredient': {
|
|
21571
|
+
item: 'Substance' | 'Medication'
|
|
21572
|
+
}
|
|
21573
|
+
MedicationAdministration: {
|
|
21574
|
+
context: 'Encounter' | 'EpisodeOfCare'
|
|
21575
|
+
device: 'Device'
|
|
21576
|
+
eventHistory: 'Provenance'
|
|
21577
|
+
medication: 'Medication'
|
|
21578
|
+
partOf: 'MedicationAdministration' | 'Procedure'
|
|
21579
|
+
reasonReference: 'Condition' | 'Observation' | 'DiagnosticReport'
|
|
21580
|
+
request: 'MedicationRequest'
|
|
21581
|
+
subject: 'Patient' | 'Group'
|
|
21582
|
+
supportingInformation: 'unknown'
|
|
21583
|
+
}
|
|
21584
|
+
'MedicationAdministration.performer': {
|
|
21585
|
+
actor: 'Practitioner' | 'PractitionerRole' | 'Patient' | 'RelatedPerson' | 'Device'
|
|
21586
|
+
}
|
|
21587
|
+
MedicationDispense: {
|
|
21588
|
+
authorizingPrescription: 'MedicationRequest'
|
|
21589
|
+
context: 'Encounter' | 'EpisodeOfCare'
|
|
21590
|
+
destination: 'Location'
|
|
21591
|
+
detectedIssue: 'DetectedIssue'
|
|
21592
|
+
eventHistory: 'Provenance'
|
|
21593
|
+
location: 'Location'
|
|
21594
|
+
medication: 'Medication'
|
|
21595
|
+
partOf: 'Procedure'
|
|
21596
|
+
receiver: 'Patient' | 'Practitioner'
|
|
21597
|
+
statusReason: 'DetectedIssue'
|
|
21598
|
+
subject: 'Patient' | 'Group'
|
|
21599
|
+
supportingInformation: 'unknown'
|
|
21600
|
+
}
|
|
21601
|
+
'MedicationDispense.performer': {
|
|
21602
|
+
actor: 'Practitioner' | 'PractitionerRole' | 'Organization' | 'Patient' | 'Device' | 'RelatedPerson'
|
|
21603
|
+
}
|
|
21604
|
+
'MedicationDispense.substitution': {
|
|
21605
|
+
responsibleParty: 'Practitioner' | 'PractitionerRole'
|
|
21606
|
+
}
|
|
21607
|
+
MedicationKnowledge: {
|
|
21608
|
+
associatedMedication: 'Medication'
|
|
21609
|
+
contraindication: 'DetectedIssue'
|
|
21610
|
+
manufacturer: 'Organization'
|
|
21611
|
+
}
|
|
21612
|
+
'MedicationKnowledge.administrationGuidelines': {
|
|
21613
|
+
indication: 'ObservationDefinition'
|
|
21614
|
+
}
|
|
21615
|
+
'MedicationKnowledge.ingredient': {
|
|
21616
|
+
item: 'Substance'
|
|
21617
|
+
}
|
|
21618
|
+
'MedicationKnowledge.monograph': {
|
|
21619
|
+
source: 'DocumentReference' | 'Media'
|
|
21620
|
+
}
|
|
21621
|
+
'MedicationKnowledge.regulatory': {
|
|
21622
|
+
regulatoryAuthority: 'Organization'
|
|
21623
|
+
}
|
|
21624
|
+
'MedicationKnowledge.relatedMedicationKnowledge': {
|
|
21625
|
+
reference: 'MedicationKnowledge'
|
|
21626
|
+
}
|
|
21627
|
+
MedicationRequest: {
|
|
21628
|
+
basedOn: 'CarePlan' | 'MedicationRequest' | 'ServiceRequest' | 'ImmunizationRecommendation'
|
|
21629
|
+
detectedIssue: 'DetectedIssue'
|
|
21630
|
+
encounter: 'Encounter'
|
|
21631
|
+
eventHistory: 'Provenance'
|
|
21632
|
+
insurance: 'Coverage' | 'ClaimResponse'
|
|
21633
|
+
medication: 'Medication'
|
|
21634
|
+
performer:
|
|
21635
|
+
'Practitioner' | 'PractitionerRole' | 'Organization' | 'Patient' | 'Device' | 'RelatedPerson' | 'CareTeam'
|
|
21636
|
+
priorPrescription: 'MedicationRequest'
|
|
21637
|
+
reasonReference: 'Condition' | 'Observation'
|
|
21638
|
+
recorder: 'Practitioner' | 'PractitionerRole'
|
|
21639
|
+
reported: 'Patient' | 'Practitioner' | 'PractitionerRole' | 'RelatedPerson' | 'Organization'
|
|
21640
|
+
requester: 'Practitioner' | 'PractitionerRole' | 'Organization' | 'Patient' | 'RelatedPerson' | 'Device'
|
|
21641
|
+
subject: 'Patient' | 'Group'
|
|
21642
|
+
supportingInformation: 'unknown'
|
|
21643
|
+
}
|
|
21644
|
+
'MedicationRequest.dispenseRequest': {
|
|
21645
|
+
performer: 'Organization'
|
|
21646
|
+
}
|
|
21647
|
+
MedicationStatement: {
|
|
21648
|
+
basedOn: 'MedicationRequest' | 'CarePlan' | 'ServiceRequest'
|
|
21649
|
+
context: 'Encounter' | 'EpisodeOfCare'
|
|
21650
|
+
derivedFrom: 'unknown'
|
|
21651
|
+
informationSource: 'Patient' | 'Practitioner' | 'PractitionerRole' | 'RelatedPerson' | 'Organization'
|
|
21652
|
+
medication: 'Medication'
|
|
21653
|
+
partOf: 'MedicationAdministration' | 'MedicationDispense' | 'MedicationStatement' | 'Procedure' | 'Observation'
|
|
21654
|
+
reasonReference: 'Condition' | 'Observation' | 'DiagnosticReport'
|
|
21655
|
+
subject: 'Patient' | 'Group'
|
|
21656
|
+
}
|
|
21657
|
+
MedicinalProduct: {
|
|
21658
|
+
attachedDocument: 'DocumentReference'
|
|
21659
|
+
clinicalTrial: 'ResearchStudy'
|
|
21660
|
+
contact: 'Organization' | 'PractitionerRole'
|
|
21661
|
+
masterFile: 'DocumentReference'
|
|
21662
|
+
packagedMedicinalProduct: 'MedicinalProductPackaged'
|
|
21663
|
+
pharmaceuticalProduct: 'MedicinalProductPharmaceutical'
|
|
21664
|
+
}
|
|
21665
|
+
'MedicinalProduct.manufacturingBusinessOperation': {
|
|
21666
|
+
manufacturer: 'Organization'
|
|
21667
|
+
regulator: 'Organization'
|
|
21668
|
+
}
|
|
21669
|
+
'MedicinalProduct.specialDesignation': {
|
|
21670
|
+
indication: 'MedicinalProductIndication'
|
|
21671
|
+
}
|
|
21672
|
+
MedicinalProductAuthorization: {
|
|
21673
|
+
holder: 'Organization'
|
|
21674
|
+
regulator: 'Organization'
|
|
21675
|
+
subject: 'MedicinalProduct' | 'MedicinalProductPackaged'
|
|
21676
|
+
}
|
|
21677
|
+
MedicinalProductContraindication: {
|
|
21678
|
+
subject: 'MedicinalProduct' | 'Medication'
|
|
21679
|
+
therapeuticIndication: 'MedicinalProductIndication'
|
|
21680
|
+
}
|
|
21681
|
+
'MedicinalProductContraindication.otherTherapy': {
|
|
21682
|
+
medication: 'MedicinalProduct' | 'Medication' | 'Substance' | 'SubstanceSpecification'
|
|
21683
|
+
}
|
|
21684
|
+
MedicinalProductIndication: {
|
|
21685
|
+
subject: 'MedicinalProduct' | 'Medication'
|
|
21686
|
+
undesirableEffect: 'MedicinalProductUndesirableEffect'
|
|
21687
|
+
}
|
|
21688
|
+
'MedicinalProductIndication.otherTherapy': {
|
|
21689
|
+
medication: 'MedicinalProduct' | 'Medication' | 'Substance' | 'SubstanceSpecification'
|
|
21690
|
+
}
|
|
21691
|
+
MedicinalProductIngredient: {
|
|
21692
|
+
manufacturer: 'Organization'
|
|
21693
|
+
}
|
|
21694
|
+
MedicinalProductInteraction: {
|
|
21695
|
+
subject: 'MedicinalProduct' | 'Medication' | 'Substance'
|
|
21696
|
+
}
|
|
21697
|
+
'MedicinalProductInteraction.interactant': {
|
|
21698
|
+
item: 'MedicinalProduct' | 'Medication' | 'Substance' | 'ObservationDefinition'
|
|
21699
|
+
}
|
|
21700
|
+
MedicinalProductManufactured: {
|
|
21701
|
+
ingredient: 'MedicinalProductIngredient'
|
|
21702
|
+
manufacturer: 'Organization'
|
|
21703
|
+
}
|
|
21704
|
+
MedicinalProductPackaged: {
|
|
21705
|
+
manufacturer: 'Organization'
|
|
21706
|
+
marketingAuthorization: 'MedicinalProductAuthorization'
|
|
21707
|
+
subject: 'MedicinalProduct'
|
|
21708
|
+
}
|
|
21709
|
+
'MedicinalProductPackaged.packageItem': {
|
|
21710
|
+
device: 'DeviceDefinition'
|
|
21711
|
+
manufacturedItem: 'MedicinalProductManufactured'
|
|
21712
|
+
manufacturer: 'Organization'
|
|
21713
|
+
}
|
|
21714
|
+
MedicinalProductPharmaceutical: {
|
|
21715
|
+
device: 'DeviceDefinition'
|
|
21716
|
+
ingredient: 'MedicinalProductIngredient'
|
|
21717
|
+
}
|
|
21718
|
+
MedicinalProductUndesirableEffect: {
|
|
21719
|
+
subject: 'MedicinalProduct' | 'Medication'
|
|
21720
|
+
}
|
|
21721
|
+
MessageHeader: {
|
|
21722
|
+
author: 'Practitioner' | 'PractitionerRole'
|
|
21723
|
+
enterer: 'Practitioner' | 'PractitionerRole'
|
|
21724
|
+
focus: 'unknown'
|
|
21725
|
+
responsible: 'Practitioner' | 'PractitionerRole' | 'Organization'
|
|
21726
|
+
sender: 'Practitioner' | 'PractitionerRole' | 'Organization'
|
|
21727
|
+
}
|
|
21728
|
+
'MessageHeader.destination': {
|
|
21729
|
+
receiver: 'Practitioner' | 'PractitionerRole' | 'Organization'
|
|
21730
|
+
target: 'Device'
|
|
21731
|
+
}
|
|
21732
|
+
'MessageHeader.response': {
|
|
21733
|
+
details: 'OperationOutcome'
|
|
21734
|
+
}
|
|
21735
|
+
MolecularSequence: {
|
|
21736
|
+
device: 'Device'
|
|
21737
|
+
patient: 'Patient'
|
|
21738
|
+
performer: 'Organization'
|
|
21739
|
+
pointer: 'MolecularSequence'
|
|
21740
|
+
specimen: 'Specimen'
|
|
21741
|
+
}
|
|
21742
|
+
'MolecularSequence.referenceSeq': {
|
|
21743
|
+
referenceSeqPointer: 'MolecularSequence'
|
|
21744
|
+
}
|
|
21745
|
+
'MolecularSequence.variant': {
|
|
21746
|
+
variantPointer: 'Observation'
|
|
21747
|
+
}
|
|
21748
|
+
NutritionOrder: {
|
|
21749
|
+
allergyIntolerance: 'AllergyIntolerance'
|
|
21750
|
+
encounter: 'Encounter'
|
|
21751
|
+
orderer: 'Practitioner' | 'PractitionerRole'
|
|
21752
|
+
patient: 'Patient'
|
|
21753
|
+
}
|
|
21754
|
+
Observation: {
|
|
21755
|
+
basedOn:
|
|
21756
|
+
| 'CarePlan'
|
|
21757
|
+
| 'DeviceRequest'
|
|
21758
|
+
| 'ImmunizationRecommendation'
|
|
21759
|
+
| 'MedicationRequest'
|
|
21760
|
+
| 'NutritionOrder'
|
|
21761
|
+
| 'ServiceRequest'
|
|
21762
|
+
derivedFrom:
|
|
21763
|
+
'DocumentReference' | 'ImagingStudy' | 'Media' | 'QuestionnaireResponse' | 'Observation' | 'MolecularSequence'
|
|
21764
|
+
device: 'Device' | 'DeviceMetric'
|
|
21765
|
+
encounter: 'Encounter'
|
|
21766
|
+
focus: 'unknown'
|
|
21767
|
+
hasMember: 'Observation' | 'QuestionnaireResponse' | 'MolecularSequence'
|
|
21768
|
+
partOf:
|
|
21769
|
+
| 'MedicationAdministration'
|
|
21770
|
+
| 'MedicationDispense'
|
|
21771
|
+
| 'MedicationStatement'
|
|
21772
|
+
| 'Procedure'
|
|
21773
|
+
| 'Immunization'
|
|
21774
|
+
| 'ImagingStudy'
|
|
21775
|
+
performer: 'Practitioner' | 'PractitionerRole' | 'Organization' | 'CareTeam' | 'Patient' | 'RelatedPerson'
|
|
21776
|
+
specimen: 'Specimen'
|
|
21777
|
+
subject: 'Patient' | 'Group' | 'Device' | 'Location'
|
|
21778
|
+
}
|
|
21779
|
+
ObservationDefinition: {
|
|
21780
|
+
abnormalCodedValueSet: 'ValueSet'
|
|
21781
|
+
criticalCodedValueSet: 'ValueSet'
|
|
21782
|
+
normalCodedValueSet: 'ValueSet'
|
|
21783
|
+
publisher: 'Practitioner' | 'PractitionerRole' | 'Organization'
|
|
21784
|
+
validCodedValueSet: 'ValueSet'
|
|
21785
|
+
}
|
|
21786
|
+
Organization: {
|
|
21787
|
+
endpoint: 'Endpoint'
|
|
21788
|
+
partOf: 'Organization'
|
|
21789
|
+
}
|
|
21790
|
+
OrganizationAffiliation: {
|
|
21791
|
+
endpoint: 'Endpoint'
|
|
21792
|
+
healthcareService: 'HealthcareService'
|
|
21793
|
+
location: 'Location'
|
|
21794
|
+
network: 'Organization'
|
|
21795
|
+
organization: 'Organization'
|
|
21796
|
+
participatingOrganization: 'Organization'
|
|
21797
|
+
}
|
|
21798
|
+
'Parameters.parameter': {
|
|
21799
|
+
value: 'unknown'
|
|
21800
|
+
}
|
|
21801
|
+
Patient: {
|
|
21802
|
+
generalPractitioner: 'Organization' | 'Practitioner' | 'PractitionerRole'
|
|
21803
|
+
managingOrganization: 'Organization'
|
|
21804
|
+
}
|
|
21805
|
+
'Patient.contact': {
|
|
21806
|
+
organization: 'Organization'
|
|
21807
|
+
}
|
|
21808
|
+
'Patient.link': {
|
|
21809
|
+
other: 'Patient' | 'RelatedPerson'
|
|
21810
|
+
}
|
|
21811
|
+
PaymentNotice: {
|
|
21812
|
+
payee: 'Practitioner' | 'PractitionerRole' | 'Organization'
|
|
21813
|
+
payment: 'PaymentReconciliation'
|
|
21814
|
+
provider: 'Practitioner' | 'PractitionerRole' | 'Organization'
|
|
21815
|
+
recipient: 'Organization'
|
|
21816
|
+
request: 'unknown'
|
|
21817
|
+
response: 'unknown'
|
|
21818
|
+
}
|
|
21819
|
+
PaymentReconciliation: {
|
|
21820
|
+
paymentIssuer: 'Organization'
|
|
21821
|
+
request: 'Task'
|
|
21822
|
+
requestor: 'Practitioner' | 'PractitionerRole' | 'Organization'
|
|
21823
|
+
}
|
|
21824
|
+
'PaymentReconciliation.detail': {
|
|
21825
|
+
payee: 'Practitioner' | 'PractitionerRole' | 'Organization'
|
|
21826
|
+
request: 'unknown'
|
|
21827
|
+
response: 'unknown'
|
|
21828
|
+
responsible: 'PractitionerRole'
|
|
21829
|
+
submitter: 'Practitioner' | 'PractitionerRole' | 'Organization'
|
|
21830
|
+
}
|
|
21831
|
+
Person: {
|
|
21832
|
+
managingOrganization: 'Organization'
|
|
21833
|
+
}
|
|
21834
|
+
'Person.link': {
|
|
21835
|
+
target: 'Patient' | 'Practitioner' | 'RelatedPerson' | 'Person'
|
|
21836
|
+
}
|
|
21837
|
+
PlanDefinition: {
|
|
21838
|
+
subject: 'Group'
|
|
21839
|
+
}
|
|
21840
|
+
'PlanDefinition.action': {
|
|
21841
|
+
subject: 'Group'
|
|
21842
|
+
}
|
|
21843
|
+
'Practitioner.qualification': {
|
|
21844
|
+
issuer: 'Organization'
|
|
21845
|
+
}
|
|
21846
|
+
PractitionerRole: {
|
|
21847
|
+
endpoint: 'Endpoint'
|
|
21848
|
+
healthcareService: 'HealthcareService'
|
|
21849
|
+
location: 'Location'
|
|
21850
|
+
organization: 'Organization'
|
|
21851
|
+
practitioner: 'Practitioner'
|
|
21852
|
+
}
|
|
21853
|
+
Procedure: {
|
|
21854
|
+
asserter: 'Patient' | 'RelatedPerson' | 'Practitioner' | 'PractitionerRole'
|
|
21855
|
+
basedOn: 'CarePlan' | 'ServiceRequest'
|
|
21856
|
+
complicationDetail: 'Condition'
|
|
21857
|
+
encounter: 'Encounter'
|
|
21858
|
+
location: 'Location'
|
|
21859
|
+
partOf: 'Procedure' | 'Observation' | 'MedicationAdministration'
|
|
21860
|
+
reasonReference: 'Condition' | 'Observation' | 'Procedure' | 'DiagnosticReport' | 'DocumentReference'
|
|
21861
|
+
recorder: 'Patient' | 'RelatedPerson' | 'Practitioner' | 'PractitionerRole'
|
|
21862
|
+
report: 'DiagnosticReport' | 'DocumentReference' | 'Composition'
|
|
21863
|
+
subject: 'Patient' | 'Group'
|
|
21864
|
+
usedReference: 'Device' | 'Medication' | 'Substance'
|
|
21865
|
+
}
|
|
21866
|
+
'Procedure.focalDevice': {
|
|
21867
|
+
manipulated: 'Device'
|
|
21868
|
+
}
|
|
21869
|
+
'Procedure.performer': {
|
|
21870
|
+
actor: 'Practitioner' | 'PractitionerRole' | 'Organization' | 'Patient' | 'RelatedPerson' | 'Device'
|
|
21871
|
+
onBehalfOf: 'Organization'
|
|
21872
|
+
}
|
|
21873
|
+
Provenance: {
|
|
21874
|
+
location: 'Location'
|
|
21875
|
+
target: 'unknown'
|
|
21876
|
+
}
|
|
21877
|
+
'Provenance.agent': {
|
|
21878
|
+
onBehalfOf: 'Practitioner' | 'PractitionerRole' | 'RelatedPerson' | 'Patient' | 'Device' | 'Organization'
|
|
21879
|
+
who: 'Practitioner' | 'PractitionerRole' | 'RelatedPerson' | 'Patient' | 'Device' | 'Organization'
|
|
21880
|
+
}
|
|
21881
|
+
'Provenance.entity': {
|
|
21882
|
+
what: 'unknown'
|
|
21883
|
+
}
|
|
21884
|
+
'Questionnaire.item.answerOption': {
|
|
21885
|
+
value: 'unknown'
|
|
21886
|
+
}
|
|
21887
|
+
'Questionnaire.item.enableWhen': {
|
|
21888
|
+
answer: 'unknown'
|
|
21889
|
+
}
|
|
21890
|
+
'Questionnaire.item.initial': {
|
|
21891
|
+
value: 'unknown'
|
|
21892
|
+
}
|
|
21893
|
+
QuestionnaireResponse: {
|
|
21894
|
+
author: 'Device' | 'Practitioner' | 'PractitionerRole' | 'Patient' | 'RelatedPerson' | 'Organization'
|
|
21895
|
+
basedOn: 'CarePlan' | 'ServiceRequest'
|
|
21896
|
+
encounter: 'Encounter'
|
|
21897
|
+
partOf: 'Observation' | 'Procedure'
|
|
21898
|
+
source: 'Patient' | 'Practitioner' | 'PractitionerRole' | 'RelatedPerson'
|
|
21899
|
+
subject: 'unknown'
|
|
21900
|
+
}
|
|
21901
|
+
'QuestionnaireResponse.item.answer': {
|
|
21902
|
+
value: 'unknown'
|
|
21903
|
+
}
|
|
21904
|
+
RelatedPerson: {
|
|
21905
|
+
patient: 'Patient'
|
|
21906
|
+
}
|
|
21907
|
+
RequestGroup: {
|
|
21908
|
+
author: 'Device' | 'Practitioner' | 'PractitionerRole'
|
|
21909
|
+
basedOn: 'unknown'
|
|
21910
|
+
encounter: 'Encounter'
|
|
21911
|
+
reasonReference: 'Condition' | 'Observation' | 'DiagnosticReport' | 'DocumentReference'
|
|
21912
|
+
replaces: 'unknown'
|
|
21913
|
+
subject: 'Patient' | 'Group'
|
|
21914
|
+
}
|
|
21915
|
+
'RequestGroup.action': {
|
|
21916
|
+
participant: 'Patient' | 'Practitioner' | 'PractitionerRole' | 'RelatedPerson' | 'Device'
|
|
21917
|
+
resource: 'unknown'
|
|
21918
|
+
}
|
|
21919
|
+
ResearchDefinition: {
|
|
21920
|
+
exposure: 'ResearchElementDefinition'
|
|
21921
|
+
exposureAlternative: 'ResearchElementDefinition'
|
|
21922
|
+
outcome: 'ResearchElementDefinition'
|
|
21923
|
+
population: 'ResearchElementDefinition'
|
|
21924
|
+
subject: 'Group'
|
|
21925
|
+
}
|
|
21926
|
+
ResearchElementDefinition: {
|
|
21927
|
+
subject: 'Group'
|
|
21928
|
+
}
|
|
21929
|
+
ResearchStudy: {
|
|
21930
|
+
enrollment: 'Group'
|
|
21931
|
+
partOf: 'ResearchStudy'
|
|
21932
|
+
principalInvestigator: 'Practitioner' | 'PractitionerRole'
|
|
21933
|
+
protocol: 'PlanDefinition'
|
|
21934
|
+
result: 'DiagnosticReport'
|
|
21935
|
+
site: 'Location' | 'ResearchStudy' | 'Organization'
|
|
21936
|
+
sponsor: 'Organization'
|
|
21937
|
+
}
|
|
21938
|
+
'ResearchStudy.associatedParty': {
|
|
21939
|
+
party: 'Practitioner' | 'PractitionerRole' | 'Organization'
|
|
21940
|
+
}
|
|
21941
|
+
'ResearchStudy.comparisonGroup': {
|
|
21942
|
+
intendedExposure: 'EvidenceVariable'
|
|
21943
|
+
observedGroup: 'Group'
|
|
21944
|
+
}
|
|
21945
|
+
'ResearchStudy.outcomeMeasure': {
|
|
21946
|
+
reference: 'EvidenceVariable'
|
|
21947
|
+
}
|
|
21948
|
+
'ResearchStudy.recruitment': {
|
|
21949
|
+
actualGroup: 'Group'
|
|
21950
|
+
eligibility: 'Group' | 'EvidenceVariable'
|
|
21951
|
+
}
|
|
21952
|
+
ResearchSubject: {
|
|
21953
|
+
consent: 'Consent'
|
|
21954
|
+
individual: 'Patient'
|
|
21955
|
+
study: 'ResearchStudy'
|
|
21956
|
+
}
|
|
21957
|
+
RiskAssessment: {
|
|
21958
|
+
basedOn: 'unknown'
|
|
21959
|
+
basis: 'unknown'
|
|
21960
|
+
condition: 'Condition'
|
|
21961
|
+
encounter: 'Encounter'
|
|
21962
|
+
parent: 'unknown'
|
|
21963
|
+
performer: 'Practitioner' | 'PractitionerRole' | 'Device'
|
|
21964
|
+
reasonReference: 'Condition' | 'Observation' | 'DiagnosticReport' | 'DocumentReference'
|
|
21965
|
+
subject: 'Patient' | 'Group'
|
|
21966
|
+
}
|
|
21967
|
+
RiskEvidenceSynthesis: {
|
|
21968
|
+
exposure: 'EvidenceVariable'
|
|
21969
|
+
outcome: 'EvidenceVariable'
|
|
21970
|
+
population: 'EvidenceVariable'
|
|
21971
|
+
}
|
|
21972
|
+
Schedule: {
|
|
21973
|
+
actor:
|
|
21974
|
+
'Patient' | 'Practitioner' | 'PractitionerRole' | 'RelatedPerson' | 'Device' | 'HealthcareService' | 'Location'
|
|
21975
|
+
}
|
|
21976
|
+
ServiceRequest: {
|
|
21977
|
+
basedOn: 'CarePlan' | 'ServiceRequest' | 'MedicationRequest'
|
|
21978
|
+
encounter: 'Encounter'
|
|
21979
|
+
insurance: 'Coverage' | 'ClaimResponse'
|
|
21980
|
+
locationReference: 'Location'
|
|
21981
|
+
performer:
|
|
21982
|
+
| 'Practitioner'
|
|
21983
|
+
| 'PractitionerRole'
|
|
21984
|
+
| 'Organization'
|
|
21985
|
+
| 'CareTeam'
|
|
21986
|
+
| 'HealthcareService'
|
|
21987
|
+
| 'Patient'
|
|
21988
|
+
| 'Device'
|
|
21989
|
+
| 'RelatedPerson'
|
|
21990
|
+
reasonReference: 'Condition' | 'Observation' | 'DiagnosticReport' | 'DocumentReference'
|
|
21991
|
+
relevantHistory: 'Provenance'
|
|
21992
|
+
replaces: 'ServiceRequest'
|
|
21993
|
+
requester: 'Practitioner' | 'PractitionerRole' | 'Organization' | 'Patient' | 'RelatedPerson' | 'Device'
|
|
21994
|
+
specimen: 'Specimen'
|
|
21995
|
+
subject: 'Patient' | 'Group' | 'Location' | 'Device'
|
|
21996
|
+
supportingInfo: 'unknown'
|
|
21997
|
+
}
|
|
21998
|
+
Slot: {
|
|
21999
|
+
schedule: 'Schedule'
|
|
22000
|
+
}
|
|
22001
|
+
Specimen: {
|
|
22002
|
+
parent: 'Specimen'
|
|
22003
|
+
request: 'ServiceRequest'
|
|
22004
|
+
subject: 'Patient' | 'Group' | 'Device' | 'Substance' | 'Location'
|
|
22005
|
+
}
|
|
22006
|
+
'Specimen.collection': {
|
|
22007
|
+
collector: 'Practitioner' | 'PractitionerRole'
|
|
22008
|
+
}
|
|
22009
|
+
'Specimen.container': {
|
|
22010
|
+
additive: 'Substance'
|
|
22011
|
+
}
|
|
22012
|
+
'Specimen.processing': {
|
|
22013
|
+
additive: 'Substance'
|
|
22014
|
+
}
|
|
22015
|
+
'SpecimenDefinition.typeTested.container.additive': {
|
|
22016
|
+
additive: 'Substance'
|
|
22017
|
+
}
|
|
22018
|
+
'StructureMap.group.rule.source': {
|
|
22019
|
+
defaultValue: 'unknown'
|
|
22020
|
+
}
|
|
22021
|
+
SubscriptionStatus: {
|
|
22022
|
+
subscription: 'Subscription'
|
|
22023
|
+
}
|
|
22024
|
+
'SubscriptionStatus.notificationEvent': {
|
|
22025
|
+
additionalContext: 'unknown'
|
|
22026
|
+
focus: 'unknown'
|
|
22027
|
+
}
|
|
22028
|
+
'Substance.ingredient': {
|
|
22029
|
+
substance: 'Substance'
|
|
22030
|
+
}
|
|
22031
|
+
'SubstanceReferenceInformation.classification': {
|
|
22032
|
+
source: 'DocumentReference'
|
|
22033
|
+
}
|
|
22034
|
+
'SubstanceReferenceInformation.gene': {
|
|
22035
|
+
source: 'DocumentReference'
|
|
22036
|
+
}
|
|
22037
|
+
'SubstanceReferenceInformation.geneElement': {
|
|
22038
|
+
source: 'DocumentReference'
|
|
22039
|
+
}
|
|
22040
|
+
'SubstanceReferenceInformation.target': {
|
|
22041
|
+
source: 'DocumentReference'
|
|
22042
|
+
}
|
|
22043
|
+
SubstanceSpecification: {
|
|
22044
|
+
nucleicAcid: 'SubstanceNucleicAcid'
|
|
22045
|
+
polymer: 'SubstancePolymer'
|
|
22046
|
+
protein: 'SubstanceProtein'
|
|
22047
|
+
referenceInformation: 'SubstanceReferenceInformation'
|
|
22048
|
+
source: 'DocumentReference'
|
|
22049
|
+
sourceMaterial: 'SubstanceSourceMaterial'
|
|
22050
|
+
}
|
|
22051
|
+
'SubstanceSpecification.code': {
|
|
22052
|
+
source: 'DocumentReference'
|
|
22053
|
+
}
|
|
22054
|
+
'SubstanceSpecification.name': {
|
|
22055
|
+
source: 'DocumentReference'
|
|
22056
|
+
}
|
|
22057
|
+
'SubstanceSpecification.property': {
|
|
22058
|
+
definingSubstance: 'SubstanceSpecification' | 'Substance'
|
|
22059
|
+
}
|
|
22060
|
+
'SubstanceSpecification.relationship': {
|
|
22061
|
+
source: 'DocumentReference'
|
|
22062
|
+
substance: 'SubstanceSpecification'
|
|
22063
|
+
}
|
|
22064
|
+
'SubstanceSpecification.structure': {
|
|
22065
|
+
source: 'DocumentReference'
|
|
22066
|
+
}
|
|
22067
|
+
SupplyDelivery: {
|
|
22068
|
+
basedOn: 'SupplyRequest'
|
|
22069
|
+
destination: 'Location'
|
|
22070
|
+
partOf: 'SupplyDelivery' | 'Contract'
|
|
22071
|
+
patient: 'Patient'
|
|
22072
|
+
receiver: 'Practitioner' | 'PractitionerRole'
|
|
22073
|
+
supplier: 'Practitioner' | 'PractitionerRole' | 'Organization'
|
|
22074
|
+
}
|
|
22075
|
+
'SupplyDelivery.suppliedItem': {
|
|
22076
|
+
item: 'Medication' | 'Substance' | 'Device'
|
|
22077
|
+
}
|
|
22078
|
+
SupplyRequest: {
|
|
22079
|
+
deliverFrom: 'Organization' | 'Location'
|
|
22080
|
+
deliverTo: 'Organization' | 'Location' | 'Patient'
|
|
22081
|
+
item: 'Medication' | 'Substance' | 'Device'
|
|
22082
|
+
reasonReference: 'Condition' | 'Observation' | 'DiagnosticReport' | 'DocumentReference'
|
|
22083
|
+
requester: 'Practitioner' | 'PractitionerRole' | 'Organization' | 'Patient' | 'RelatedPerson' | 'Device'
|
|
22084
|
+
supplier: 'Organization' | 'HealthcareService'
|
|
22085
|
+
}
|
|
22086
|
+
Task: {
|
|
22087
|
+
basedOn: 'unknown'
|
|
22088
|
+
encounter: 'Encounter'
|
|
22089
|
+
focus: 'unknown'
|
|
22090
|
+
for: 'unknown'
|
|
22091
|
+
insurance: 'Coverage' | 'ClaimResponse'
|
|
22092
|
+
location: 'Location'
|
|
22093
|
+
owner:
|
|
22094
|
+
| 'Practitioner'
|
|
22095
|
+
| 'PractitionerRole'
|
|
22096
|
+
| 'Organization'
|
|
22097
|
+
| 'CareTeam'
|
|
22098
|
+
| 'HealthcareService'
|
|
22099
|
+
| 'Patient'
|
|
22100
|
+
| 'Device'
|
|
22101
|
+
| 'RelatedPerson'
|
|
22102
|
+
partOf: 'Task'
|
|
22103
|
+
reasonReference: 'unknown'
|
|
22104
|
+
relevantHistory: 'Provenance'
|
|
22105
|
+
requester: 'Device' | 'Organization' | 'Patient' | 'Practitioner' | 'PractitionerRole' | 'RelatedPerson'
|
|
22106
|
+
}
|
|
22107
|
+
'Task.input': {
|
|
22108
|
+
value: 'unknown'
|
|
22109
|
+
}
|
|
22110
|
+
'Task.output': {
|
|
22111
|
+
value: 'unknown'
|
|
22112
|
+
}
|
|
22113
|
+
'Task.restriction': {
|
|
22114
|
+
recipient: 'Patient' | 'Practitioner' | 'PractitionerRole' | 'RelatedPerson' | 'Group' | 'Organization'
|
|
22115
|
+
}
|
|
22116
|
+
TestReport: {
|
|
22117
|
+
testScript: 'TestScript'
|
|
22118
|
+
}
|
|
22119
|
+
TestScript: {
|
|
22120
|
+
profile: 'unknown'
|
|
22121
|
+
}
|
|
22122
|
+
'TestScript.fixture': {
|
|
22123
|
+
resource: 'unknown'
|
|
22124
|
+
}
|
|
22125
|
+
VerificationResult: {
|
|
22126
|
+
target: 'unknown'
|
|
22127
|
+
}
|
|
22128
|
+
'VerificationResult.attestation': {
|
|
22129
|
+
onBehalfOf: 'Organization' | 'Practitioner' | 'PractitionerRole'
|
|
22130
|
+
who: 'Practitioner' | 'PractitionerRole' | 'Organization'
|
|
22131
|
+
}
|
|
22132
|
+
'VerificationResult.primarySource': {
|
|
22133
|
+
who: 'Organization' | 'Practitioner' | 'PractitionerRole'
|
|
22134
|
+
}
|
|
22135
|
+
'VerificationResult.validator': {
|
|
22136
|
+
organization: 'Organization'
|
|
22137
|
+
}
|
|
22138
|
+
VisionPrescription: {
|
|
22139
|
+
encounter: 'Encounter'
|
|
22140
|
+
patient: 'Patient'
|
|
22141
|
+
prescriber: 'Practitioner' | 'PractitionerRole'
|
|
22142
|
+
}
|
|
22143
|
+
}
|
|
22144
|
+
|
|
20589
22145
|
/** Type-name to TS-type dispatch, primitives included. */
|
|
20590
22146
|
export interface R4TypeOf {
|
|
20591
22147
|
boolean: boolean
|
|
@@ -20617,6 +22173,7 @@ export interface R4TypeOf {
|
|
|
20617
22173
|
'System.Date': string
|
|
20618
22174
|
'System.DateTime': string
|
|
20619
22175
|
'System.Time': string
|
|
22176
|
+
'System.Quantity': SystemQuantity
|
|
20620
22177
|
Resource: FhirResource
|
|
20621
22178
|
DomainResource: FhirResource
|
|
20622
22179
|
Address: Address
|