@medplum/definitions 2.0.2 → 2.0.4
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/dist/fhir/r4/fhir.schema.json +37 -0
- package/dist/fhir/r4/profiles-medplum.json +90 -1
- package/dist/fhir/r4/search-parameters.json +20 -1
- package/dist/fhir/r4/valueset-systems.txt +579 -0
- package/dist/types.d.ts +74 -0
- package/dist/types.js +72 -0
- package/dist/types.js.map +1 -0
- package/package.json +1 -1
|
@@ -61303,6 +61303,14 @@
|
|
|
61303
61303
|
"launchUri": {
|
|
61304
61304
|
"description": "Optional launch URI for SMART EHR launch sequence.",
|
|
61305
61305
|
"$ref": "#/definitions/string"
|
|
61306
|
+
},
|
|
61307
|
+
"pkceOptional": {
|
|
61308
|
+
"description": "Flag to make PKCE optional for this client application. PKCE is required by default for compliance with Smart App Launch. It can be disabled for compatibility with legacy client applications.",
|
|
61309
|
+
"$ref": "#/definitions/boolean"
|
|
61310
|
+
},
|
|
61311
|
+
"identityProvider": {
|
|
61312
|
+
"description": "Optional external Identity Provider (IdP) for the client application.",
|
|
61313
|
+
"$ref": "#/definitions/IdentityProvider"
|
|
61306
61314
|
}
|
|
61307
61315
|
},
|
|
61308
61316
|
"required": [
|
|
@@ -61911,6 +61919,35 @@
|
|
|
61911
61919
|
"type": "string"
|
|
61912
61920
|
}
|
|
61913
61921
|
}
|
|
61922
|
+
},
|
|
61923
|
+
"IdentityProvider": {
|
|
61924
|
+
"description": "External Identity Provider (IdP) configuration details.",
|
|
61925
|
+
"properties": {
|
|
61926
|
+
"authorizeUrl": {
|
|
61927
|
+
"description": "Remote URL for the external Identity Provider authorize endpoint.",
|
|
61928
|
+
"$ref": "#/definitions/string"
|
|
61929
|
+
},
|
|
61930
|
+
"tokenUrl": {
|
|
61931
|
+
"description": "Remote URL for the external Identity Provider token endpoint.",
|
|
61932
|
+
"$ref": "#/definitions/string"
|
|
61933
|
+
},
|
|
61934
|
+
"userInfoUrl": {
|
|
61935
|
+
"description": "Remote URL for the external Identity Provider userinfo endpoint.",
|
|
61936
|
+
"$ref": "#/definitions/string"
|
|
61937
|
+
},
|
|
61938
|
+
"clientId": {
|
|
61939
|
+
"description": "External Identity Provider client ID.",
|
|
61940
|
+
"$ref": "#/definitions/string"
|
|
61941
|
+
},
|
|
61942
|
+
"clientSecret": {
|
|
61943
|
+
"description": "External Identity Provider client secret.",
|
|
61944
|
+
"$ref": "#/definitions/string"
|
|
61945
|
+
},
|
|
61946
|
+
"useSubject": {
|
|
61947
|
+
"description": "Optional flag to use the subject field instead of the email field.",
|
|
61948
|
+
"$ref": "#/definitions/boolean"
|
|
61949
|
+
}
|
|
61950
|
+
}
|
|
61914
61951
|
}
|
|
61915
61952
|
}
|
|
61916
61953
|
}
|
|
@@ -429,6 +429,16 @@
|
|
|
429
429
|
"code" : "uri"
|
|
430
430
|
}]
|
|
431
431
|
},
|
|
432
|
+
{
|
|
433
|
+
"id" : "ClientApplication.pkceOptional",
|
|
434
|
+
"path" : "ClientApplication.pkceOptional",
|
|
435
|
+
"definition" : "Flag to make PKCE optional for this client application. PKCE is required by default for compliance with Smart App Launch. It can be disabled for compatibility with legacy client applications.",
|
|
436
|
+
"min" : 0,
|
|
437
|
+
"max" : "1",
|
|
438
|
+
"type" : [{
|
|
439
|
+
"code" : "boolean"
|
|
440
|
+
}]
|
|
441
|
+
},
|
|
432
442
|
{
|
|
433
443
|
"id" : "ClientApplication.identityProvider",
|
|
434
444
|
"path" : "ClientApplication.identityProvider",
|
|
@@ -547,11 +557,21 @@
|
|
|
547
557
|
"code" : "string"
|
|
548
558
|
}]
|
|
549
559
|
},
|
|
560
|
+
{
|
|
561
|
+
"id" : "User.externalId",
|
|
562
|
+
"path" : "User.externalId",
|
|
563
|
+
"definition" : "A String that is an identifier for the resource as defined by the provisioning client. The \"externalId\" may simplify identification of a resource between the provisioning client and the service provider by allowing the client to use a filter to locate the resource with an identifier from the provisioning domain, obviating the need to store a local mapping between the provisioning domain's identifier of the resource and the identifier used by the service provider. Each resource MAY include a non-empty \"externalId\" value. The value of the \"externalId\" attribute is always issued by the provisioning client and MUST NOT be specified by the service provider. The service provider MUST always interpret the externalId as scoped to the provisioning domain.",
|
|
564
|
+
"min" : 0,
|
|
565
|
+
"max" : "1",
|
|
566
|
+
"type" : [{
|
|
567
|
+
"code" : "string"
|
|
568
|
+
}]
|
|
569
|
+
},
|
|
550
570
|
{
|
|
551
571
|
"id" : "User.email",
|
|
552
572
|
"path" : "User.email",
|
|
553
573
|
"definition" : "The email address that uniquely identifies the user.",
|
|
554
|
-
"min" :
|
|
574
|
+
"min" : 0,
|
|
555
575
|
"max" : "1",
|
|
556
576
|
"type" : [{
|
|
557
577
|
"code" : "string"
|
|
@@ -757,6 +777,64 @@
|
|
|
757
777
|
"targetProfile" : ["https://medplum.com/fhir/StructureDefinition/AccessPolicy"]
|
|
758
778
|
}]
|
|
759
779
|
},
|
|
780
|
+
{
|
|
781
|
+
"id" : "ProjectMembership.access",
|
|
782
|
+
"path" : "ProjectMembership.access",
|
|
783
|
+
"definition" : "Extended access configuration using parameterized access policies.",
|
|
784
|
+
"min" : 0,
|
|
785
|
+
"max" : "*",
|
|
786
|
+
"type" : [{
|
|
787
|
+
"code" : "BackboneElement"
|
|
788
|
+
}]
|
|
789
|
+
},
|
|
790
|
+
{
|
|
791
|
+
"id" : "ProjectMembership.access.policy",
|
|
792
|
+
"path" : "ProjectMembership.access.policy",
|
|
793
|
+
"definition" : "The base access policy used as a template. Variables in the template access policy are replaced by the values in the parameter.",
|
|
794
|
+
"min" : 1,
|
|
795
|
+
"max" : "1",
|
|
796
|
+
"type" : [
|
|
797
|
+
{
|
|
798
|
+
"code" : "Reference",
|
|
799
|
+
"targetProfile" : ["https://medplum.com/fhir/StructureDefinition/AccessPolicy"]
|
|
800
|
+
}
|
|
801
|
+
]
|
|
802
|
+
},
|
|
803
|
+
{
|
|
804
|
+
"id" : "ProjectMembership.access.parameter",
|
|
805
|
+
"path" : "ProjectMembership.access.parameter",
|
|
806
|
+
"definition" : "User options that control the display of the application.",
|
|
807
|
+
"min" : 0,
|
|
808
|
+
"max" : "*",
|
|
809
|
+
"type" : [{
|
|
810
|
+
"code" : "BackboneElement"
|
|
811
|
+
}]
|
|
812
|
+
},
|
|
813
|
+
{
|
|
814
|
+
"id" : "ProjectMembership.access.parameter.name",
|
|
815
|
+
"path" : "ProjectMembership.access.parameter.name",
|
|
816
|
+
"definition" : "The unique name of the parameter.",
|
|
817
|
+
"min" : 1,
|
|
818
|
+
"max" : "1",
|
|
819
|
+
"type" : [{
|
|
820
|
+
"code" : "code"
|
|
821
|
+
}]
|
|
822
|
+
},
|
|
823
|
+
{
|
|
824
|
+
"id" : "ProjectMembership.access.parameter.value[x]",
|
|
825
|
+
"path" : "ProjectMembership.access.parameter.value[x]",
|
|
826
|
+
"short" : "Value of the parameter.",
|
|
827
|
+
"definition" : "Value of the parameter - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list).",
|
|
828
|
+
"min" : 1,
|
|
829
|
+
"max" : "1",
|
|
830
|
+
"type" : [
|
|
831
|
+
{
|
|
832
|
+
"code" : "string"
|
|
833
|
+
},
|
|
834
|
+
{
|
|
835
|
+
"code" : "Reference"
|
|
836
|
+
}]
|
|
837
|
+
},
|
|
760
838
|
{
|
|
761
839
|
"id" : "ProjectMembership.userConfiguration",
|
|
762
840
|
"path" : "ProjectMembership.userConfiguration",
|
|
@@ -2625,6 +2703,17 @@
|
|
|
2625
2703
|
"type" : [{
|
|
2626
2704
|
"code" : "string"
|
|
2627
2705
|
}]
|
|
2706
|
+
},
|
|
2707
|
+
{
|
|
2708
|
+
"id" : "IdentityProvider.useSubject",
|
|
2709
|
+
"path" : "IdentityProvider.useSubject",
|
|
2710
|
+
"short" : "Optional flag to use the subject field instead of the email field.",
|
|
2711
|
+
"definition" : "Optional flag to use the subject field instead of the email field.",
|
|
2712
|
+
"min" : 0,
|
|
2713
|
+
"max" : "1",
|
|
2714
|
+
"type" : [{
|
|
2715
|
+
"code" : "boolean"
|
|
2716
|
+
}]
|
|
2628
2717
|
}
|
|
2629
2718
|
]
|
|
2630
2719
|
}
|
|
@@ -65667,12 +65667,31 @@
|
|
|
65667
65667
|
"description" : "The email address of the user",
|
|
65668
65668
|
"code" : "email",
|
|
65669
65669
|
"base" : ["User"],
|
|
65670
|
-
"type" : "
|
|
65670
|
+
"type" : "string",
|
|
65671
65671
|
"expression" : "User.email",
|
|
65672
65672
|
"xpath" : "f:User/f:email",
|
|
65673
65673
|
"xpathUsage" : "normal"
|
|
65674
65674
|
}
|
|
65675
65675
|
},
|
|
65676
|
+
{
|
|
65677
|
+
"fullUrl" : "https://medplum.com/fhir/SearchParameter/User-external-id",
|
|
65678
|
+
"resource" : {
|
|
65679
|
+
"resourceType" : "SearchParameter",
|
|
65680
|
+
"id" : "User-external-id",
|
|
65681
|
+
"url" : "https://medplum.com/fhir/SearchParameter/User-external-id",
|
|
65682
|
+
"version" : "4.0.1",
|
|
65683
|
+
"name" : "external-id",
|
|
65684
|
+
"status" : "draft",
|
|
65685
|
+
"publisher" : "Medplum",
|
|
65686
|
+
"description" : "The externalID of the user",
|
|
65687
|
+
"code" : "external-id",
|
|
65688
|
+
"base" : ["User"],
|
|
65689
|
+
"type" : "string",
|
|
65690
|
+
"expression" : "User.externalId",
|
|
65691
|
+
"xpath" : "f:User/f:externalId",
|
|
65692
|
+
"xpathUsage" : "normal"
|
|
65693
|
+
}
|
|
65694
|
+
},
|
|
65676
65695
|
{
|
|
65677
65696
|
"fullUrl" : "https://medplum.com/fhir/SearchParameter/User-project",
|
|
65678
65697
|
"resource" : {
|
|
@@ -0,0 +1,579 @@
|
|
|
1
|
+
"system" : "#hacked",
|
|
2
|
+
"system" : "email",
|
|
3
|
+
"system" : "http://acme.com/config/fhir/codesystems/internal",
|
|
4
|
+
"system" : "http://acme.com/identifiers/codesystems",
|
|
5
|
+
"system" : "http://acme.com/identifiers/valuesets",
|
|
6
|
+
"system" : "http://cancer.sanger.ac.uk/cancergenome/projects/cosmic"
|
|
7
|
+
"system" : "http://cds-hooks.hl7.org/CodeSystem/indicator"
|
|
8
|
+
"system" : "http://dicom.nema.org/resources/ontology/DCM",
|
|
9
|
+
"system" : "http://example.com",
|
|
10
|
+
"system" : "http://example.org/CodeSystem/contexttype",
|
|
11
|
+
"system" : "http://example.org/fhir/CodeSystem/use-contexts",
|
|
12
|
+
"system" : "http://healthit.gov/nhin/purposeofuse"
|
|
13
|
+
"system" : "http://hl7.org/fhir/abstract-types"
|
|
14
|
+
"system" : "http://hl7.org/fhir/account-status"
|
|
15
|
+
"system" : "http://hl7.org/fhir/action-cardinality-behavior"
|
|
16
|
+
"system" : "http://hl7.org/fhir/action-condition-kind"
|
|
17
|
+
"system" : "http://hl7.org/fhir/action-grouping-behavior"
|
|
18
|
+
"system" : "http://hl7.org/fhir/action-participant-type"
|
|
19
|
+
"system" : "http://hl7.org/fhir/action-precheck-behavior"
|
|
20
|
+
"system" : "http://hl7.org/fhir/action-relationship-type"
|
|
21
|
+
"system" : "http://hl7.org/fhir/action-required-behavior"
|
|
22
|
+
"system" : "http://hl7.org/fhir/action-selection-behavior"
|
|
23
|
+
"system" : "http://hl7.org/fhir/additionalmaterials"
|
|
24
|
+
"system" : "http://hl7.org/fhir/address-type"
|
|
25
|
+
"system" : "http://hl7.org/fhir/address-use"
|
|
26
|
+
"system" : "http://hl7.org/fhir/administrative-gender"
|
|
27
|
+
"system" : "http://hl7.org/fhir/adverse-event-actuality"
|
|
28
|
+
"system" : "http://hl7.org/fhir/allergy-intolerance-category"
|
|
29
|
+
"system" : "http://hl7.org/fhir/allergy-intolerance-criticality"
|
|
30
|
+
"system" : "http://hl7.org/fhir/allergy-intolerance-type"
|
|
31
|
+
"system" : "http://hl7.org/fhir/animal-genderstatus"
|
|
32
|
+
"system" : "http://hl7.org/fhir/appointmentstatus"
|
|
33
|
+
"system" : "http://hl7.org/fhir/assert-direction-codes"
|
|
34
|
+
"system" : "http://hl7.org/fhir/assert-operator-codes"
|
|
35
|
+
"system" : "http://hl7.org/fhir/assert-response-code-types"
|
|
36
|
+
"system" : "http://hl7.org/fhir/asset-availability"
|
|
37
|
+
"system" : "http://hl7.org/fhir/audit-event-action"
|
|
38
|
+
"system" : "http://hl7.org/fhir/audit-event-outcome"
|
|
39
|
+
"system" : "http://hl7.org/fhir/binding-strength"
|
|
40
|
+
"system" : "http://hl7.org/fhir/bundle-type"
|
|
41
|
+
"system" : "http://hl7.org/fhir/capability-statement-kind"
|
|
42
|
+
"system" : "http://hl7.org/fhir/care-plan-activity-status"
|
|
43
|
+
"system" : "http://hl7.org/fhir/care-team-status"
|
|
44
|
+
"system" : "http://hl7.org/fhir/chargeitem-status"
|
|
45
|
+
"system" : "http://hl7.org/fhir/claim-use"
|
|
46
|
+
"system" : "http://hl7.org/fhir/code-search-support"
|
|
47
|
+
"system" : "http://hl7.org/fhir/CodeSystem/example",
|
|
48
|
+
"system" : "http://hl7.org/fhir/CodeSystem/medicationrequest-intent"
|
|
49
|
+
"system" : "http://hl7.org/fhir/CodeSystem/medicationrequest-status"
|
|
50
|
+
"system" : "http://hl7.org/fhir/CodeSystem/medication-statement-status"
|
|
51
|
+
"system" : "http://hl7.org/fhir/CodeSystem/medication-status"
|
|
52
|
+
"system" : "http://hl7.org/fhir/CodeSystem/status"
|
|
53
|
+
"system" : "http://hl7.org/fhir/CodeSystem/task-code",
|
|
54
|
+
"system" : "http://hl7.org/fhir/codesystem-content-mode"
|
|
55
|
+
"system" : "http://hl7.org/fhir/codesystem-hierarchy-meaning"
|
|
56
|
+
"system" : "http://hl7.org/fhir/compartment-type"
|
|
57
|
+
"system" : "http://hl7.org/fhir/composition-attestation-mode"
|
|
58
|
+
"system" : "http://hl7.org/fhir/composition-status"
|
|
59
|
+
"system" : "http://hl7.org/fhir/concept-map-equivalence"
|
|
60
|
+
"system" : "http://hl7.org/fhir/conceptmap-unmapped-mode"
|
|
61
|
+
"system" : "http://hl7.org/fhir/concept-property-type"
|
|
62
|
+
"system" : "http://hl7.org/fhir/concept-subsumption-outcome"
|
|
63
|
+
"system" : "http://hl7.org/fhir/conditional-delete-status"
|
|
64
|
+
"system" : "http://hl7.org/fhir/conditional-read-status"
|
|
65
|
+
"system" : "http://hl7.org/fhir/consent-data-meaning"
|
|
66
|
+
"system" : "http://hl7.org/fhir/consentperformer"
|
|
67
|
+
"system" : "http://hl7.org/fhir/consent-provision-type"
|
|
68
|
+
"system" : "http://hl7.org/fhir/consent-state-codes"
|
|
69
|
+
"system" : "http://hl7.org/fhir/constraint-severity"
|
|
70
|
+
"system" : "http://hl7.org/fhir/contact-point-system"
|
|
71
|
+
"system" : "http://hl7.org/fhir/contact-point-use"
|
|
72
|
+
"system" : "http://hl7.org/fhir/contract-action-status"
|
|
73
|
+
"system" : "http://hl7.org/fhir/contract-asset-context"
|
|
74
|
+
"system" : "http://hl7.org/fhir/contract-asset-scope"
|
|
75
|
+
"system" : "http://hl7.org/fhir/contract-asset-subtype"
|
|
76
|
+
"system" : "http://hl7.org/fhir/contract-asset-type"
|
|
77
|
+
"system" : "http://hl7.org/fhir/contract-decision-mode"
|
|
78
|
+
"system" : "http://hl7.org/fhir/contract-definition-subtype"
|
|
79
|
+
"system" : "http://hl7.org/fhir/contract-definition-type"
|
|
80
|
+
"system" : "http://hl7.org/fhir/contract-expiration-type"
|
|
81
|
+
"system" : "http://hl7.org/fhir/contract-legalstate"
|
|
82
|
+
"system" : "http://hl7.org/fhir/contract-party-role"
|
|
83
|
+
"system" : "http://hl7.org/fhir/contract-publicationstatus"
|
|
84
|
+
"system" : "http://hl7.org/fhir/contract-scope"
|
|
85
|
+
"system" : "http://hl7.org/fhir/contract-security-category"
|
|
86
|
+
"system" : "http://hl7.org/fhir/contract-security-classification"
|
|
87
|
+
"system" : "http://hl7.org/fhir/contract-security-control"
|
|
88
|
+
"system" : "http://hl7.org/fhir/contract-status"
|
|
89
|
+
"system" : "http://hl7.org/fhir/contributor-type"
|
|
90
|
+
"system" : "http://hl7.org/fhir/data-types"
|
|
91
|
+
"system" : "http://hl7.org/fhir/days-of-week"
|
|
92
|
+
"system" : "http://hl7.org/fhir/definition-resource-types"
|
|
93
|
+
"system" : "http://hl7.org/fhir/detectedissue-severity"
|
|
94
|
+
"system" : "http://hl7.org/fhir/device-definition-status"
|
|
95
|
+
"system" : "http://hl7.org/fhir/device-nametype"
|
|
96
|
+
"system" : "http://hl7.org/fhir/device-statement-status"
|
|
97
|
+
"system" : "http://hl7.org/fhir/device-status"
|
|
98
|
+
"system" : "http://hl7.org/fhir/diagnostic-report-status"
|
|
99
|
+
"system" : "http://hl7.org/fhir/discriminator-type"
|
|
100
|
+
"system" : "http://hl7.org/fhir/document-mode"
|
|
101
|
+
"system" : "http://hl7.org/fhir/document-reference-status"
|
|
102
|
+
"system" : "http://hl7.org/fhir/document-relationship-type"
|
|
103
|
+
"system" : "http://hl7.org/fhir/eligibilityrequest-purpose"
|
|
104
|
+
"system" : "http://hl7.org/fhir/eligibilityresponse-purpose"
|
|
105
|
+
"system" : "http://hl7.org/fhir/encounter-location-status"
|
|
106
|
+
"system" : "http://hl7.org/fhir/encounter-status"
|
|
107
|
+
"system" : "http://hl7.org/fhir/endpoint-status"
|
|
108
|
+
"system" : "http://hl7.org/fhir/episode-of-care-status"
|
|
109
|
+
"system" : "http://hl7.org/fhir/event-capability-mode"
|
|
110
|
+
"system" : "http://hl7.org/fhir/event-resource-types"
|
|
111
|
+
"system" : "http://hl7.org/fhir/event-status"
|
|
112
|
+
"system" : "http://hl7.org/fhir/event-status",
|
|
113
|
+
"system" : "http://hl7.org/fhir/event-timing"
|
|
114
|
+
"system" : "http://hl7.org/fhir/examplescenario-actor-type"
|
|
115
|
+
"system" : "http://hl7.org/fhir/ex-claimitemtype"
|
|
116
|
+
"system" : "http://hl7.org/fhir/ex-fdi"
|
|
117
|
+
"system" : "http://hl7.org/fhir/ex-onsettype"
|
|
118
|
+
"system" : "http://hl7.org/fhir/ex-oralprostho"
|
|
119
|
+
"system" : "http://hl7.org/fhir/ex-pharmaservice"
|
|
120
|
+
"system" : "http://hl7.org/fhir/explanationofbenefit-status"
|
|
121
|
+
"system" : "http://hl7.org/fhir/exposure-state"
|
|
122
|
+
"system" : "http://hl7.org/fhir/expression-language"
|
|
123
|
+
"system" : "http://hl7.org/fhir/ex-servicemodifier"
|
|
124
|
+
"system" : "http://hl7.org/fhir/ex-serviceproduct"
|
|
125
|
+
"system" : "http://hl7.org/fhir/extension-context-type"
|
|
126
|
+
"system" : "http://hl7.org/fhir/ex-udi"
|
|
127
|
+
"system" : "http://hl7.org/fhir/feeding-device"
|
|
128
|
+
"system" : "http://hl7.org/fhir/FHIR-version"
|
|
129
|
+
"system" : "http://hl7.org/fhir/filter-operator"
|
|
130
|
+
"system" : "http://hl7.org/fhir/flag-priority-code"
|
|
131
|
+
"system" : "http://hl7.org/fhir/flag-status"
|
|
132
|
+
"system" : "http://hl7.org/fhir/fm-conditions"
|
|
133
|
+
"system" : "http://hl7.org/fhir/fm-status"
|
|
134
|
+
"system" : "http://hl7.org/fhir/gender-identity",
|
|
135
|
+
"system" : "http://hl7.org/fhir/goal-status"
|
|
136
|
+
"system" : "http://hl7.org/fhir/goal-status-reason"
|
|
137
|
+
"system" : "http://hl7.org/fhir/graph-compartment-rule"
|
|
138
|
+
"system" : "http://hl7.org/fhir/graph-compartment-use"
|
|
139
|
+
"system" : "http://hl7.org/fhir/group-measure"
|
|
140
|
+
"system" : "http://hl7.org/fhir/group-type"
|
|
141
|
+
"system" : "http://hl7.org/fhir/guidance-response-status"
|
|
142
|
+
"system" : "http://hl7.org/fhir/guide-page-generation"
|
|
143
|
+
"system" : "http://hl7.org/fhir/guide-parameter-code"
|
|
144
|
+
"system" : "http://hl7.org/fhir/hacked",
|
|
145
|
+
"system" : "http://hl7.org/fhir/history-status"
|
|
146
|
+
"system" : "http://hl7.org/fhir/http-operations"
|
|
147
|
+
"system" : "http://hl7.org/fhir/http-verb"
|
|
148
|
+
"system" : "http://hl7.org/fhir/identifier-use"
|
|
149
|
+
"system" : "http://hl7.org/fhir/identity-assuranceLevel"
|
|
150
|
+
"system" : "http://hl7.org/fhir/imagingstudy-status"
|
|
151
|
+
"system" : "http://hl7.org/fhir/intervention"
|
|
152
|
+
"system" : "http://hl7.org/fhir/invoice-priceComponentType"
|
|
153
|
+
"system" : "http://hl7.org/fhir/invoice-status"
|
|
154
|
+
"system" : "http://hl7.org/fhir/issue-severity"
|
|
155
|
+
"system" : "http://hl7.org/fhir/issue-type"
|
|
156
|
+
"system" : "http://hl7.org/fhir/item-type"
|
|
157
|
+
"system" : "http://hl7.org/fhir/knowledge-resource-types"
|
|
158
|
+
"system" : "http://hl7.org/fhir/language-preference-type",
|
|
159
|
+
"system" : "http://hl7.org/fhir/linkage-type"
|
|
160
|
+
"system" : "http://hl7.org/fhir/link-type"
|
|
161
|
+
"system" : "http://hl7.org/fhir/list-mode"
|
|
162
|
+
"system" : "http://hl7.org/fhir/list-status"
|
|
163
|
+
"system" : "http://hl7.org/fhir/location-mode"
|
|
164
|
+
"system" : "http://hl7.org/fhir/location-status"
|
|
165
|
+
"system" : "http://hl7.org/fhir/map-context-type"
|
|
166
|
+
"system" : "http://hl7.org/fhir/map-group-type-mode"
|
|
167
|
+
"system" : "http://hl7.org/fhir/map-input-mode"
|
|
168
|
+
"system" : "http://hl7.org/fhir/map-model-mode"
|
|
169
|
+
"system" : "http://hl7.org/fhir/map-source-list-mode"
|
|
170
|
+
"system" : "http://hl7.org/fhir/map-target-list-mode"
|
|
171
|
+
"system" : "http://hl7.org/fhir/map-transform"
|
|
172
|
+
"system" : "http://hl7.org/fhir/measure-report-status"
|
|
173
|
+
"system" : "http://hl7.org/fhir/measure-report-type"
|
|
174
|
+
"system" : "http://hl7.org/fhir/message-events"
|
|
175
|
+
"system" : "http://hl7.org/fhir/messageheader-response-request"
|
|
176
|
+
"system" : "http://hl7.org/fhir/message-significance-category"
|
|
177
|
+
"system" : "http://hl7.org/fhir/metric-calibration-state"
|
|
178
|
+
"system" : "http://hl7.org/fhir/metric-calibration-type"
|
|
179
|
+
"system" : "http://hl7.org/fhir/metric-category"
|
|
180
|
+
"system" : "http://hl7.org/fhir/metric-color"
|
|
181
|
+
"system" : "http://hl7.org/fhir/metric-operational-status"
|
|
182
|
+
"system" : "http://hl7.org/fhir/name-use"
|
|
183
|
+
"system" : "http://hl7.org/fhir/namingsystem-identifier-type"
|
|
184
|
+
"system" : "http://hl7.org/fhir/namingsystem-type"
|
|
185
|
+
"system" : "http://hl7.org/fhir/narrative-status"
|
|
186
|
+
"system" : "http://hl7.org/fhir/network-type"
|
|
187
|
+
"system" : "http://hl7.org/fhir/note-type"
|
|
188
|
+
"system" : "http://hl7.org/fhir/observation-range-category"
|
|
189
|
+
"system" : "http://hl7.org/fhir/observation-status"
|
|
190
|
+
"system" : "http://hl7.org/fhir/operation-kind"
|
|
191
|
+
"system" : "http://hl7.org/fhir/operation-parameter-use"
|
|
192
|
+
"system" : "http://hl7.org/fhir/organization-role"
|
|
193
|
+
"system" : "http://hl7.org/fhir/orientation-type"
|
|
194
|
+
"system" : "http://hl7.org/fhir/participantrequired"
|
|
195
|
+
"system" : "http://hl7.org/fhir/participationstatus"
|
|
196
|
+
"system" : "http://hl7.org/fhir/permitted-data-type"
|
|
197
|
+
"system" : "http://hl7.org/fhir/practitioner-specialty"
|
|
198
|
+
"system" : "http://hl7.org/fhir/procedure-progress-status-code"
|
|
199
|
+
"system" : "http://hl7.org/fhir/product-category"
|
|
200
|
+
"system" : "http://hl7.org/fhir/product-status"
|
|
201
|
+
"system" : "http://hl7.org/fhir/product-storage-scale"
|
|
202
|
+
"system" : "http://hl7.org/fhir/property-representation"
|
|
203
|
+
"system" : "http://hl7.org/fhir/provenance-entity-role"
|
|
204
|
+
"system" : "http://hl7.org/fhir/provenance-participant-role"
|
|
205
|
+
"system" : "http://hl7.org/fhir/publication-status"
|
|
206
|
+
"system" : "http://hl7.org/fhir/quality-type"
|
|
207
|
+
"system" : "http://hl7.org/fhir/quantity-comparator"
|
|
208
|
+
"system" : "http://hl7.org/fhir/questionnaire-answers-status"
|
|
209
|
+
"system" : "http://hl7.org/fhir/questionnaire-display-category"
|
|
210
|
+
"system" : "http://hl7.org/fhir/questionnaire-enable-behavior"
|
|
211
|
+
"system" : "http://hl7.org/fhir/questionnaire-enable-operator"
|
|
212
|
+
"system" : "http://hl7.org/fhir/questionnaire-item-control"
|
|
213
|
+
"system" : "http://hl7.org/fhir/reaction-event-severity"
|
|
214
|
+
"system" : "http://hl7.org/fhir/reference-handling-policy"
|
|
215
|
+
"system" : "http://hl7.org/fhir/reference-version-rules"
|
|
216
|
+
"system" : "http://hl7.org/fhir/related-artifact-type"
|
|
217
|
+
"system" : "http://hl7.org/fhir/relationship"
|
|
218
|
+
"system" : "http://hl7.org/fhir/relation-type"
|
|
219
|
+
"system" : "http://hl7.org/fhir/remittance-outcome"
|
|
220
|
+
"system" : "http://hl7.org/fhir/report-action-result-codes"
|
|
221
|
+
"system" : "http://hl7.org/fhir/report-participant-type"
|
|
222
|
+
"system" : "http://hl7.org/fhir/report-result-codes"
|
|
223
|
+
"system" : "http://hl7.org/fhir/report-status-codes"
|
|
224
|
+
"system" : "http://hl7.org/fhir/repository-type"
|
|
225
|
+
"system" : "http://hl7.org/fhir/request-intent"
|
|
226
|
+
"system" : "http://hl7.org/fhir/request-intent",
|
|
227
|
+
"system" : "http://hl7.org/fhir/request-priority"
|
|
228
|
+
"system" : "http://hl7.org/fhir/request-resource-types"
|
|
229
|
+
"system" : "http://hl7.org/fhir/request-status"
|
|
230
|
+
"system" : "http://hl7.org/fhir/research-element-type"
|
|
231
|
+
"system" : "http://hl7.org/fhir/research-study-status"
|
|
232
|
+
"system" : "http://hl7.org/fhir/research-subject-status"
|
|
233
|
+
"system" : "http://hl7.org/fhir/resource-aggregation-mode"
|
|
234
|
+
"system" : "http://hl7.org/fhir/resource-slicing-rules"
|
|
235
|
+
"system" : "http://hl7.org/fhir/resource-status"
|
|
236
|
+
"system" : "http://hl7.org/fhir/resource-types"
|
|
237
|
+
"system" : "http://hl7.org/fhir/resource-types",
|
|
238
|
+
"system" : "http://hl7.org/fhir/resource-validation-mode"
|
|
239
|
+
"system" : "http://hl7.org/fhir/response-code"
|
|
240
|
+
"system" : "http://hl7.org/fhir/restful-capability-mode"
|
|
241
|
+
"system" : "http://hl7.org/fhir/restful-interaction"
|
|
242
|
+
"system" : "http://hl7.org/fhir/restful-interaction",
|
|
243
|
+
"system" : "http://hl7.org/fhir/search-comparator"
|
|
244
|
+
"system" : "http://hl7.org/fhir/search-entry-mode"
|
|
245
|
+
"system" : "http://hl7.org/fhir/search-modifier-code"
|
|
246
|
+
"system" : "http://hl7.org/fhir/search-param-type"
|
|
247
|
+
"system" : "http://hl7.org/fhir/search-xpath-usage"
|
|
248
|
+
"system" : "http://hl7.org/fhir/secondary-finding"
|
|
249
|
+
"system" : "http://hl7.org/fhir/sequence-type"
|
|
250
|
+
"system" : "http://hl7.org/fhir/sid/cvx"
|
|
251
|
+
"system" : "http://hl7.org/fhir/sid/ex-icd-10-procedures"
|
|
252
|
+
"system" : "http://hl7.org/fhir/sid/icd-10",
|
|
253
|
+
"system" : "http://hl7.org/fhir/sid/srt",
|
|
254
|
+
"system" : "http://hl7.org/fhir/slotstatus"
|
|
255
|
+
"system" : "http://hl7.org/fhir/sort-direction"
|
|
256
|
+
"system" : "http://hl7.org/fhir/spdx-license"
|
|
257
|
+
"system" : "http://hl7.org/fhir/specimen-contained-preference"
|
|
258
|
+
"system" : "http://hl7.org/fhir/specimen-status"
|
|
259
|
+
"system" : "http://hl7.org/fhir/strand-type"
|
|
260
|
+
"system" : "http://hl7.org/fhir/structure-definition-kind"
|
|
261
|
+
"system" : "http://hl7.org/fhir/subscription-channel-type"
|
|
262
|
+
"system" : "http://hl7.org/fhir/subscription-status"
|
|
263
|
+
"system" : "http://hl7.org/fhir/substance-status"
|
|
264
|
+
"system" : "http://hl7.org/fhir/supplydelivery-status"
|
|
265
|
+
"system" : "http://hl7.org/fhir/supplyrequest-status"
|
|
266
|
+
"system" : "http://hl7.org/fhir/task-intent"
|
|
267
|
+
"system" : "http://hl7.org/fhir/task-status"
|
|
268
|
+
"system" : "http://hl7.org/fhir/transaction-mode"
|
|
269
|
+
"system" : "http://hl7.org/fhir/trigger-type"
|
|
270
|
+
"system" : "http://hl7.org/fhir/type-derivation-rule"
|
|
271
|
+
"system" : "http://hl7.org/fhir/udi-entry-type"
|
|
272
|
+
"system" : "http://hl7.org/fhir/unknown-content-code"
|
|
273
|
+
"system" : "http://hl7.org/fhir/variable-type"
|
|
274
|
+
"system" : "http://hl7.org/fhir/versioning-policy"
|
|
275
|
+
"system" : "http://hl7.org/fhir/vision-base-codes"
|
|
276
|
+
"system" : "http://hl7.org/fhir/vision-eye-codes"
|
|
277
|
+
"system" : "http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem"
|
|
278
|
+
"system" : "http://loinc.org"
|
|
279
|
+
"system" : "http://loinc.org",
|
|
280
|
+
"system" : "http://nucc.org/provider-taxonomy"
|
|
281
|
+
"system" : "http://snomed.info/sct"
|
|
282
|
+
"system" : "http://snomed.info/sct",
|
|
283
|
+
"system" : "http://terminology.hl7.org/CodeSystem/action-type"
|
|
284
|
+
"system" : "http://terminology.hl7.org/CodeSystem/activity-definition-category"
|
|
285
|
+
"system" : "http://terminology.hl7.org/CodeSystem/adjudication"
|
|
286
|
+
"system" : "http://terminology.hl7.org/CodeSystem/adjudication-error"
|
|
287
|
+
"system" : "http://terminology.hl7.org/CodeSystem/adjudication-reason"
|
|
288
|
+
"system" : "http://terminology.hl7.org/CodeSystem/admit-source"
|
|
289
|
+
"system" : "http://terminology.hl7.org/CodeSystem/adverse-event-category"
|
|
290
|
+
"system" : "http://terminology.hl7.org/CodeSystem/adverse-event-causality-assess"
|
|
291
|
+
"system" : "http://terminology.hl7.org/CodeSystem/adverse-event-causality-method"
|
|
292
|
+
"system" : "http://terminology.hl7.org/CodeSystem/adverse-event-outcome"
|
|
293
|
+
"system" : "http://terminology.hl7.org/CodeSystem/adverse-event-seriousness"
|
|
294
|
+
"system" : "http://terminology.hl7.org/CodeSystem/adverse-event-severity"
|
|
295
|
+
"system" : "http://terminology.hl7.org/CodeSystem/allerg-intol-substance-exp-risk"
|
|
296
|
+
"system" : "http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical"
|
|
297
|
+
"system" : "http://terminology.hl7.org/CodeSystem/allergyintolerance-verification"
|
|
298
|
+
"system" : "http://terminology.hl7.org/CodeSystem/applicability"
|
|
299
|
+
"system" : "http://terminology.hl7.org/CodeSystem/appointment-cancellation-reason"
|
|
300
|
+
"system" : "http://terminology.hl7.org/CodeSystem/audit-entity-type"
|
|
301
|
+
"system" : "http://terminology.hl7.org/CodeSystem/audit-event-type"
|
|
302
|
+
"system" : "http://terminology.hl7.org/CodeSystem/basic-resource-type"
|
|
303
|
+
"system" : "http://terminology.hl7.org/CodeSystem/benefit-network"
|
|
304
|
+
"system" : "http://terminology.hl7.org/CodeSystem/benefit-term"
|
|
305
|
+
"system" : "http://terminology.hl7.org/CodeSystem/benefit-type"
|
|
306
|
+
"system" : "http://terminology.hl7.org/CodeSystem/benefit-unit"
|
|
307
|
+
"system" : "http://terminology.hl7.org/CodeSystem/can-push-updates"
|
|
308
|
+
"system" : "http://terminology.hl7.org/CodeSystem/catalogType"
|
|
309
|
+
"system" : "http://terminology.hl7.org/CodeSystem/certainty-subcomponent-rating"
|
|
310
|
+
"system" : "http://terminology.hl7.org/CodeSystem/certainty-subcomponent-type"
|
|
311
|
+
"system" : "http://terminology.hl7.org/CodeSystem/chargeitem-billingcodes"
|
|
312
|
+
"system" : "http://terminology.hl7.org/CodeSystem/choice-list-orientation"
|
|
313
|
+
"system" : "http://terminology.hl7.org/CodeSystem/chromosome-human"
|
|
314
|
+
"system" : "http://terminology.hl7.org/CodeSystem/claimcareteamrole"
|
|
315
|
+
"system" : "http://terminology.hl7.org/CodeSystem/claim-exception"
|
|
316
|
+
"system" : "http://terminology.hl7.org/CodeSystem/claiminformationcategory"
|
|
317
|
+
"system" : "http://terminology.hl7.org/CodeSystem/claim-type"
|
|
318
|
+
"system" : "http://terminology.hl7.org/CodeSystem/codesystem-altcode-kind"
|
|
319
|
+
"system" : "http://terminology.hl7.org/CodeSystem/common-tags"
|
|
320
|
+
"system" : "http://terminology.hl7.org/CodeSystem/communication-category"
|
|
321
|
+
"system" : "http://terminology.hl7.org/CodeSystem/communication-not-done-reason"
|
|
322
|
+
"system" : "http://terminology.hl7.org/CodeSystem/communication-topic"
|
|
323
|
+
"system" : "http://terminology.hl7.org/CodeSystem/composite-measure-scoring"
|
|
324
|
+
"system" : "http://terminology.hl7.org/CodeSystem/composition-altcode-kind"
|
|
325
|
+
"system" : "http://terminology.hl7.org/CodeSystem/condition-category"
|
|
326
|
+
"system" : "http://terminology.hl7.org/CodeSystem/condition-clinical"
|
|
327
|
+
"system" : "http://terminology.hl7.org/CodeSystem/condition-state"
|
|
328
|
+
"system" : "http://terminology.hl7.org/CodeSystem/condition-ver-status"
|
|
329
|
+
"system" : "http://terminology.hl7.org/CodeSystem/conformance-expectation"
|
|
330
|
+
"system" : "http://terminology.hl7.org/CodeSystem/consentaction"
|
|
331
|
+
"system" : "http://terminology.hl7.org/CodeSystem/consentcategorycodes"
|
|
332
|
+
"system" : "http://terminology.hl7.org/CodeSystem/consentpolicycodes"
|
|
333
|
+
"system" : "http://terminology.hl7.org/CodeSystem/consentscope"
|
|
334
|
+
"system" : "http://terminology.hl7.org/CodeSystem/contactentity-type"
|
|
335
|
+
"system" : "http://terminology.hl7.org/CodeSystem/container-cap"
|
|
336
|
+
"system" : "http://terminology.hl7.org/CodeSystem/contractaction"
|
|
337
|
+
"system" : "http://terminology.hl7.org/CodeSystem/contractactorrole"
|
|
338
|
+
"system" : "http://terminology.hl7.org/CodeSystem/contract-content-derivative"
|
|
339
|
+
"system" : "http://terminology.hl7.org/CodeSystem/contract-data-meaning"
|
|
340
|
+
"system" : "http://terminology.hl7.org/CodeSystem/contractsignertypecodes"
|
|
341
|
+
"system" : "http://terminology.hl7.org/CodeSystem/contractsignertypecodes",
|
|
342
|
+
"system" : "http://terminology.hl7.org/CodeSystem/contractsubtypecodes"
|
|
343
|
+
"system" : "http://terminology.hl7.org/CodeSystem/contracttermsubtypecodes"
|
|
344
|
+
"system" : "http://terminology.hl7.org/CodeSystem/contracttermtypecodes"
|
|
345
|
+
"system" : "http://terminology.hl7.org/CodeSystem/contract-type"
|
|
346
|
+
"system" : "http://terminology.hl7.org/CodeSystem/copy-number-event"
|
|
347
|
+
"system" : "http://terminology.hl7.org/CodeSystem/coverage-class"
|
|
348
|
+
"system" : "http://terminology.hl7.org/CodeSystem/coverage-copay-type"
|
|
349
|
+
"system" : "http://terminology.hl7.org/CodeSystem/coverageeligibilityresponse-ex-auth-support"
|
|
350
|
+
"system" : "http://terminology.hl7.org/CodeSystem/coverage-selfpay"
|
|
351
|
+
"system" : "http://terminology.hl7.org/CodeSystem/data-absent-reason"
|
|
352
|
+
"system" : "http://terminology.hl7.org/CodeSystem/data-absent-reason",
|
|
353
|
+
"system" : "http://terminology.hl7.org/CodeSystem/definition-status"
|
|
354
|
+
"system" : "http://terminology.hl7.org/CodeSystem/definition-topic"
|
|
355
|
+
"system" : "http://terminology.hl7.org/CodeSystem/definition-use"
|
|
356
|
+
"system" : "http://terminology.hl7.org/CodeSystem/designation-usage",
|
|
357
|
+
"system" : "http://terminology.hl7.org/CodeSystem/device-status-reason"
|
|
358
|
+
"system" : "http://terminology.hl7.org/CodeSystem/diagnosis-role"
|
|
359
|
+
"system" : "http://terminology.hl7.org/CodeSystem/dicom-audit-lifecycle"
|
|
360
|
+
"system" : "http://terminology.hl7.org/CodeSystem/diet"
|
|
361
|
+
"system" : "http://terminology.hl7.org/CodeSystem/discharge-disposition"
|
|
362
|
+
"system" : "http://terminology.hl7.org/CodeSystem/dose-rate-type"
|
|
363
|
+
"system" : "http://terminology.hl7.org/CodeSystem/effect-estimate-type"
|
|
364
|
+
"system" : "http://terminology.hl7.org/CodeSystem/encounter-special-arrangements"
|
|
365
|
+
"system" : "http://terminology.hl7.org/CodeSystem/encounter-type"
|
|
366
|
+
"system" : "http://terminology.hl7.org/CodeSystem/endpoint-connection-type"
|
|
367
|
+
"system" : "http://terminology.hl7.org/CodeSystem/endpoint-payload-type"
|
|
368
|
+
"system" : "http://terminology.hl7.org/CodeSystem/entformula-additive"
|
|
369
|
+
"system" : "http://terminology.hl7.org/CodeSystem/episodeofcare-type"
|
|
370
|
+
"system" : "http://terminology.hl7.org/CodeSystem/evidence-quality"
|
|
371
|
+
"system" : "http://terminology.hl7.org/CodeSystem/evidence-variant-state"
|
|
372
|
+
"system" : "http://terminology.hl7.org/CodeSystem/ex-benefitcategory"
|
|
373
|
+
"system" : "http://terminology.hl7.org/CodeSystem/ex-claimsubtype"
|
|
374
|
+
"system" : "http://terminology.hl7.org/CodeSystem/ex-coverage-financial-exception"
|
|
375
|
+
"system" : "http://terminology.hl7.org/CodeSystem/ex-diagnosis-on-admission"
|
|
376
|
+
"system" : "http://terminology.hl7.org/CodeSystem/ex-diagnosisrelatedgroup"
|
|
377
|
+
"system" : "http://terminology.hl7.org/CodeSystem/ex-diagnosistype"
|
|
378
|
+
"system" : "http://terminology.hl7.org/CodeSystem/expansion-parameter-source"
|
|
379
|
+
"system" : "http://terminology.hl7.org/CodeSystem/expansion-processing-rule"
|
|
380
|
+
"system" : "http://terminology.hl7.org/CodeSystem/ex-payee-resource-type"
|
|
381
|
+
"system" : "http://terminology.hl7.org/CodeSystem/ex-paymenttype"
|
|
382
|
+
"system" : "http://terminology.hl7.org/CodeSystem/ex-procedure-type"
|
|
383
|
+
"system" : "http://terminology.hl7.org/CodeSystem/ex-programcode"
|
|
384
|
+
"system" : "http://terminology.hl7.org/CodeSystem/ex-providerqualification"
|
|
385
|
+
"system" : "http://terminology.hl7.org/CodeSystem/ex-relatedclaimrelationship"
|
|
386
|
+
"system" : "http://terminology.hl7.org/CodeSystem/ex-revenue-center"
|
|
387
|
+
"system" : "http://terminology.hl7.org/CodeSystem/ex-serviceplace"
|
|
388
|
+
"system" : "http://terminology.hl7.org/CodeSystem/ex-tooth"
|
|
389
|
+
"system" : "http://terminology.hl7.org/CodeSystem/extra-security-role-type"
|
|
390
|
+
"system" : "http://terminology.hl7.org/CodeSystem/ex-USCLS"
|
|
391
|
+
"system" : "http://terminology.hl7.org/CodeSystem/ex-visionprescriptionproduct"
|
|
392
|
+
"system" : "http://terminology.hl7.org/CodeSystem/failure-action"
|
|
393
|
+
"system" : "http://terminology.hl7.org/CodeSystem/FDI-surface"
|
|
394
|
+
"system" : "http://terminology.hl7.org/CodeSystem/financialtaskcode"
|
|
395
|
+
"system" : "http://terminology.hl7.org/CodeSystem/financialtaskinputtype"
|
|
396
|
+
"system" : "http://terminology.hl7.org/CodeSystem/flag-category"
|
|
397
|
+
"system" : "http://terminology.hl7.org/CodeSystem/forms-codes"
|
|
398
|
+
"system" : "http://terminology.hl7.org/CodeSystem/fundsreserve"
|
|
399
|
+
"system" : "http://terminology.hl7.org/CodeSystem/goal-acceptance-status"
|
|
400
|
+
"system" : "http://terminology.hl7.org/CodeSystem/goal-achievement"
|
|
401
|
+
"system" : "http://terminology.hl7.org/CodeSystem/goal-category"
|
|
402
|
+
"system" : "http://terminology.hl7.org/CodeSystem/goal-priority"
|
|
403
|
+
"system" : "http://terminology.hl7.org/CodeSystem/goal-relationship-type"
|
|
404
|
+
"system" : "http://terminology.hl7.org/CodeSystem/handling-condition"
|
|
405
|
+
"system" : "http://terminology.hl7.org/CodeSystem/history-absent-reason"
|
|
406
|
+
"system" : "http://terminology.hl7.org/CodeSystem/hl7-work-group"
|
|
407
|
+
"system" : "http://terminology.hl7.org/CodeSystem/immunization-evaluation-dose-status"
|
|
408
|
+
"system" : "http://terminology.hl7.org/CodeSystem/immunization-evaluation-dose-status-reason"
|
|
409
|
+
"system" : "http://terminology.hl7.org/CodeSystem/immunization-funding-source"
|
|
410
|
+
"system" : "http://terminology.hl7.org/CodeSystem/immunization-origin",
|
|
411
|
+
"system" : "http://terminology.hl7.org/CodeSystem/immunization-program-eligibility"
|
|
412
|
+
"system" : "http://terminology.hl7.org/CodeSystem/immunization-recommendation-status"
|
|
413
|
+
"system" : "http://terminology.hl7.org/CodeSystem/immunization-subpotent-reason"
|
|
414
|
+
"system" : "http://terminology.hl7.org/CodeSystem/implantStatus"
|
|
415
|
+
"system" : "http://terminology.hl7.org/CodeSystem/insurance-plan-type"
|
|
416
|
+
"system" : "http://terminology.hl7.org/CodeSystem/iso-21089-lifecycle"
|
|
417
|
+
"system" : "http://terminology.hl7.org/CodeSystem/library-type"
|
|
418
|
+
"system" : "http://terminology.hl7.org/CodeSystem/list-empty-reason"
|
|
419
|
+
"system" : "http://terminology.hl7.org/CodeSystem/list-example-use-codes"
|
|
420
|
+
"system" : "http://terminology.hl7.org/CodeSystem/list-order"
|
|
421
|
+
"system" : "http://terminology.hl7.org/CodeSystem/location-physical-type"
|
|
422
|
+
"system" : "http://terminology.hl7.org/CodeSystem/match-grade"
|
|
423
|
+
"system" : "http://terminology.hl7.org/CodeSystem/measure-data-usage"
|
|
424
|
+
"system" : "http://terminology.hl7.org/CodeSystem/measure-improvement-notation"
|
|
425
|
+
"system" : "http://terminology.hl7.org/CodeSystem/measure-population"
|
|
426
|
+
"system" : "http://terminology.hl7.org/CodeSystem/measure-scoring"
|
|
427
|
+
"system" : "http://terminology.hl7.org/CodeSystem/measure-type"
|
|
428
|
+
"system" : "http://terminology.hl7.org/CodeSystem/med-admin-perform-function"
|
|
429
|
+
"system" : "http://terminology.hl7.org/CodeSystem/media-modality"
|
|
430
|
+
"system" : "http://terminology.hl7.org/CodeSystem/media-type"
|
|
431
|
+
"system" : "http://terminology.hl7.org/CodeSystem/medication-admin-category"
|
|
432
|
+
"system" : "http://terminology.hl7.org/CodeSystem/medication-admin-status"
|
|
433
|
+
"system" : "http://terminology.hl7.org/CodeSystem/medication-admin-status",
|
|
434
|
+
"system" : "http://terminology.hl7.org/CodeSystem/medicationdispense-performer-function"
|
|
435
|
+
"system" : "http://terminology.hl7.org/CodeSystem/medicationdispense-status"
|
|
436
|
+
"system" : "http://terminology.hl7.org/CodeSystem/medicationknowledge-characteristic"
|
|
437
|
+
"system" : "http://terminology.hl7.org/CodeSystem/medicationknowledge-package-type"
|
|
438
|
+
"system" : "http://terminology.hl7.org/CodeSystem/medicationknowledge-status"
|
|
439
|
+
"system" : "http://terminology.hl7.org/CodeSystem/medicationrequest-category"
|
|
440
|
+
"system" : "http://terminology.hl7.org/CodeSystem/medicationrequest-course-of-therapy"
|
|
441
|
+
"system" : "http://terminology.hl7.org/CodeSystem/medicationrequest-status-reason"
|
|
442
|
+
"system" : "http://terminology.hl7.org/CodeSystem/medication-statement-category"
|
|
443
|
+
"system" : "http://terminology.hl7.org/CodeSystem/message-reasons-encounter"
|
|
444
|
+
"system" : "http://terminology.hl7.org/CodeSystem/message-transport"
|
|
445
|
+
"system" : "http://terminology.hl7.org/CodeSystem/missingtoothreason"
|
|
446
|
+
"system" : "http://terminology.hl7.org/CodeSystem/modifiers"
|
|
447
|
+
"system" : "http://terminology.hl7.org/CodeSystem/name-assembly-order"
|
|
448
|
+
"system" : "http://terminology.hl7.org/CodeSystem/need"
|
|
449
|
+
"system" : "http://terminology.hl7.org/CodeSystem/object-role"
|
|
450
|
+
"system" : "http://terminology.hl7.org/CodeSystem/observation-category"
|
|
451
|
+
"system" : "http://terminology.hl7.org/CodeSystem/observation-statistics"
|
|
452
|
+
"system" : "http://terminology.hl7.org/CodeSystem/operation-outcome"
|
|
453
|
+
"system" : "http://terminology.hl7.org/CodeSystem/organization-type"
|
|
454
|
+
"system" : "http://terminology.hl7.org/CodeSystem/parameter-group"
|
|
455
|
+
"system" : "http://terminology.hl7.org/CodeSystem/participant-type"
|
|
456
|
+
"system" : "http://terminology.hl7.org/CodeSystem/payeetype"
|
|
457
|
+
"system" : "http://terminology.hl7.org/CodeSystem/payment-adjustment-reason"
|
|
458
|
+
"system" : "http://terminology.hl7.org/CodeSystem/paymentstatus"
|
|
459
|
+
"system" : "http://terminology.hl7.org/CodeSystem/payment-type"
|
|
460
|
+
"system" : "http://terminology.hl7.org/CodeSystem/plan-definition-type"
|
|
461
|
+
"system" : "http://terminology.hl7.org/CodeSystem/practitioner-role"
|
|
462
|
+
"system" : "http://terminology.hl7.org/CodeSystem/precision-estimate-type"
|
|
463
|
+
"system" : "http://terminology.hl7.org/CodeSystem/primary-source-type"
|
|
464
|
+
"system" : "http://terminology.hl7.org/CodeSystem/processpriority"
|
|
465
|
+
"system" : "http://terminology.hl7.org/CodeSystem/program"
|
|
466
|
+
"system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type"
|
|
467
|
+
"system" : "http://terminology.hl7.org/CodeSystem/push-type-available"
|
|
468
|
+
"system" : "http://terminology.hl7.org/CodeSystem/question-max-occurs"
|
|
469
|
+
"system" : "http://terminology.hl7.org/CodeSystem/questionnaire-usage-mode"
|
|
470
|
+
"system" : "http://terminology.hl7.org/CodeSystem/reaction-event-certainty"
|
|
471
|
+
"system" : "http://terminology.hl7.org/CodeSystem/reason-medication-given"
|
|
472
|
+
"system" : "http://terminology.hl7.org/CodeSystem/recommendation-strength"
|
|
473
|
+
"system" : "http://terminology.hl7.org/CodeSystem/referencerange-meaning"
|
|
474
|
+
"system" : "http://terminology.hl7.org/CodeSystem/rejection-criteria"
|
|
475
|
+
"system" : "http://terminology.hl7.org/CodeSystem/research-study-objective-type"
|
|
476
|
+
"system" : "http://terminology.hl7.org/CodeSystem/research-study-phase"
|
|
477
|
+
"system" : "http://terminology.hl7.org/CodeSystem/research-study-prim-purp-type"
|
|
478
|
+
"system" : "http://terminology.hl7.org/CodeSystem/research-study-reason-stopped"
|
|
479
|
+
"system" : "http://terminology.hl7.org/CodeSystem/resource-security-category"
|
|
480
|
+
"system" : "http://terminology.hl7.org/CodeSystem/resource-type-link"
|
|
481
|
+
"system" : "http://terminology.hl7.org/CodeSystem/restful-security-service"
|
|
482
|
+
"system" : "http://terminology.hl7.org/CodeSystem/risk-estimate-type"
|
|
483
|
+
"system" : "http://terminology.hl7.org/CodeSystem/risk-probability"
|
|
484
|
+
"system" : "http://terminology.hl7.org/CodeSystem/security-source-type"
|
|
485
|
+
"system" : "http://terminology.hl7.org/CodeSystem/service-category"
|
|
486
|
+
"system" : "http://terminology.hl7.org/CodeSystem/service-provision-conditions"
|
|
487
|
+
"system" : "http://terminology.hl7.org/CodeSystem/service-referral-method"
|
|
488
|
+
"system" : "http://terminology.hl7.org/CodeSystem/service-type"
|
|
489
|
+
"system" : "http://terminology.hl7.org/CodeSystem/smart-capabilities"
|
|
490
|
+
"system" : "http://terminology.hl7.org/CodeSystem/special-values"
|
|
491
|
+
"system" : "http://terminology.hl7.org/CodeSystem/standards-status"
|
|
492
|
+
"system" : "http://terminology.hl7.org/CodeSystem/study-type"
|
|
493
|
+
"system" : "http://terminology.hl7.org/CodeSystem/subscriber-relationship"
|
|
494
|
+
"system" : "http://terminology.hl7.org/CodeSystem/subscription-tag"
|
|
495
|
+
"system" : "http://terminology.hl7.org/CodeSystem/substance-category"
|
|
496
|
+
"system" : "http://terminology.hl7.org/CodeSystem/supply-item-type"
|
|
497
|
+
"system" : "http://terminology.hl7.org/CodeSystem/supply-kind"
|
|
498
|
+
"system" : "http://terminology.hl7.org/CodeSystem/supplyrequest-reason"
|
|
499
|
+
"system" : "http://terminology.hl7.org/CodeSystem/synthesis-type"
|
|
500
|
+
"system" : "http://terminology.hl7.org/CodeSystem/testscript-operation-codes"
|
|
501
|
+
"system" : "http://terminology.hl7.org/CodeSystem/testscript-profile-destination-types"
|
|
502
|
+
"system" : "http://terminology.hl7.org/CodeSystem/testscript-profile-origin-types"
|
|
503
|
+
"system" : "http://terminology.hl7.org/CodeSystem/usage-context-type"
|
|
504
|
+
"system" : "http://terminology.hl7.org/CodeSystem/usage-context-type",
|
|
505
|
+
"system" : "http://terminology.hl7.org/CodeSystem/v2-0074"
|
|
506
|
+
"system" : "http://terminology.hl7.org/CodeSystem/v2-0131"
|
|
507
|
+
"system" : "http://terminology.hl7.org/CodeSystem/v2-0131",
|
|
508
|
+
"system" : "http://terminology.hl7.org/CodeSystem/v2-0136",
|
|
509
|
+
"system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
|
|
510
|
+
"system" : "http://terminology.hl7.org/CodeSystem/v2-0373"
|
|
511
|
+
"system" : "http://terminology.hl7.org/CodeSystem/v2-0443",
|
|
512
|
+
"system" : "http://terminology.hl7.org/CodeSystem/v2-0444",
|
|
513
|
+
"system" : "http://terminology.hl7.org/CodeSystem/v3-ActCode",
|
|
514
|
+
"system" : "http://terminology.hl7.org/CodeSystem/v3-ActMood",
|
|
515
|
+
"system" : "http://terminology.hl7.org/CodeSystem/v3-ActReason",
|
|
516
|
+
"system" : "http://terminology.hl7.org/CodeSystem/v3-ActSite",
|
|
517
|
+
"system" : "http://terminology.hl7.org/CodeSystem/v3-AddressUse",
|
|
518
|
+
"system" : "http://terminology.hl7.org/CodeSystem/v3-DataOperation",
|
|
519
|
+
"system" : "http://terminology.hl7.org/CodeSystem/v3-DocumentCompletion",
|
|
520
|
+
"system" : "http://terminology.hl7.org/CodeSystem/v3-EncounterSpecialCourtesy",
|
|
521
|
+
"system" : "http://terminology.hl7.org/CodeSystem/v3-EntityNamePartQualifier",
|
|
522
|
+
"system" : "http://terminology.hl7.org/CodeSystem/v3-EntityNamePartQualifierR2",
|
|
523
|
+
"system" : "http://terminology.hl7.org/CodeSystem/v3-EntityNameUse",
|
|
524
|
+
"system" : "http://terminology.hl7.org/CodeSystem/v3-GTSAbbreviation",
|
|
525
|
+
"system" : "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus"
|
|
526
|
+
"system" : "http://terminology.hl7.org/CodeSystem/v3-NullFlavor",
|
|
527
|
+
"system" : "http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation"
|
|
528
|
+
"system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationFunction",
|
|
529
|
+
"system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationMode",
|
|
530
|
+
"system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType"
|
|
531
|
+
"system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
|
|
532
|
+
"system" : "http://terminology.hl7.org/CodeSystem/v3-ProbabilityDistributionType",
|
|
533
|
+
"system" : "http://terminology.hl7.org/CodeSystem/v3-RoleClass",
|
|
534
|
+
"system" : "http://terminology.hl7.org/CodeSystem/v3-RoleCode",
|
|
535
|
+
"system" : "http://terminology.hl7.org/CodeSystem/v3-RouteOfAdministration",
|
|
536
|
+
"system" : "http://terminology.hl7.org/CodeSystem/v3-TimingEvent",
|
|
537
|
+
"system" : "http://terminology.hl7.org/CodeSystem/validation-process"
|
|
538
|
+
"system" : "http://terminology.hl7.org/CodeSystem/validation-status"
|
|
539
|
+
"system" : "http://terminology.hl7.org/CodeSystem/validation-type"
|
|
540
|
+
"system" : "http://terminology.hl7.org/CodeSystem/variant-state"
|
|
541
|
+
"system" : "http://terminology.hl7.org/CodeSystem/verificationresult-communication-method"
|
|
542
|
+
"system" : "http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category"
|
|
543
|
+
"system" : "http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-status-reason"
|
|
544
|
+
"system" : "http://unitsofmeasure.org"
|
|
545
|
+
"system" : "http://unitsofmeasure.org",
|
|
546
|
+
"system" : "http://unstats.un.org/unsd/methods/m49/m49.htm",
|
|
547
|
+
"system" : "http://varnomen.hgvs.org/"
|
|
548
|
+
"system" : "http://www.ama-assn.org/go/cpt"
|
|
549
|
+
"system" : "http://www.ebi.ac.uk/ipd/imgt/hla"
|
|
550
|
+
"system" : "http://www.ensembl.org"
|
|
551
|
+
"system" : "http://www.genenames.org"
|
|
552
|
+
"system" : "http://www.ncbi.nlm.nih.gov/clinvar"
|
|
553
|
+
"system" : "http://www.ncbi.nlm.nih.gov/nuccore"
|
|
554
|
+
"system" : "http://www.ncbi.nlm.nih.gov/projects/SNP"
|
|
555
|
+
"system" : "http://www.nlm.nih.gov/research/umls/rxnorm"
|
|
556
|
+
"system" : "http://www.sequenceontology.org"
|
|
557
|
+
"system" : "https://precision.fda.gov/apps/"
|
|
558
|
+
"system" : "https://precision.fda.gov/files/"
|
|
559
|
+
"system" : "https://precision.fda.gov/jobs/"
|
|
560
|
+
"system" : "https://www.iana.org/time-zones"
|
|
561
|
+
"system" : "other",
|
|
562
|
+
"system" : "url",
|
|
563
|
+
"system" : "urn:ietf:bcp:13"
|
|
564
|
+
"system" : "urn:ietf:bcp:13",
|
|
565
|
+
"system" : "urn:ietf:bcp:47"
|
|
566
|
+
"system" : "urn:ietf:bcp:47",
|
|
567
|
+
"system" : "urn:ietf:rfc:3986",
|
|
568
|
+
"system" : "urn:iso:std:iso:11073:10101"
|
|
569
|
+
"system" : "urn:iso:std:iso:11073:10101",
|
|
570
|
+
"system" : "urn:iso:std:iso:3166"
|
|
571
|
+
"system" : "urn:iso:std:iso:3166",
|
|
572
|
+
"system" : "urn:iso:std:iso:3166:-2"
|
|
573
|
+
"system" : "urn:iso:std:iso:4217"
|
|
574
|
+
"system" : "urn:iso-astm:E1762-95:2013"
|
|
575
|
+
"system" : "urn:oid:1.2.36.1.2001.1001.101.104.16592"
|
|
576
|
+
"system" : "urn:oid:1.2.36.1.2001.1005.17"
|
|
577
|
+
"system" : "urn:oid:1.3.6.1.4.1.19376.1.2.3",
|
|
578
|
+
"system" : "urn:oid:2.16.840.1.113883.3.1937.98.5.8",
|
|
579
|
+
"system" : "urn:oid:2.16.840.1.113883.3.26.1.1",
|
package/dist/types.d.ts
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* List of property types.
|
|
3
|
+
* http://www.hl7.org/fhir/valueset-defined-types.html
|
|
4
|
+
* The list here includes additions found from StructureDefinition resources.
|
|
5
|
+
*/
|
|
6
|
+
export declare enum PropertyType {
|
|
7
|
+
Address = "Address",
|
|
8
|
+
Age = "Age",
|
|
9
|
+
Annotation = "Annotation",
|
|
10
|
+
Attachment = "Attachment",
|
|
11
|
+
BackboneElement = "BackboneElement",
|
|
12
|
+
CodeableConcept = "CodeableConcept",
|
|
13
|
+
Coding = "Coding",
|
|
14
|
+
ContactDetail = "ContactDetail",
|
|
15
|
+
ContactPoint = "ContactPoint",
|
|
16
|
+
Contributor = "Contributor",
|
|
17
|
+
Count = "Count",
|
|
18
|
+
DataRequirement = "DataRequirement",
|
|
19
|
+
Distance = "Distance",
|
|
20
|
+
Dosage = "Dosage",
|
|
21
|
+
Duration = "Duration",
|
|
22
|
+
Expression = "Expression",
|
|
23
|
+
Extension = "Extension",
|
|
24
|
+
HumanName = "HumanName",
|
|
25
|
+
Identifier = "Identifier",
|
|
26
|
+
MarketingStatus = "MarketingStatus",
|
|
27
|
+
Meta = "Meta",
|
|
28
|
+
Money = "Money",
|
|
29
|
+
Narrative = "Narrative",
|
|
30
|
+
ParameterDefinition = "ParameterDefinition",
|
|
31
|
+
Period = "Period",
|
|
32
|
+
Population = "Population",
|
|
33
|
+
ProdCharacteristic = "ProdCharacteristic",
|
|
34
|
+
ProductShelfLife = "ProductShelfLife",
|
|
35
|
+
Quantity = "Quantity",
|
|
36
|
+
Range = "Range",
|
|
37
|
+
Ratio = "Ratio",
|
|
38
|
+
Reference = "Reference",
|
|
39
|
+
RelatedArtifact = "RelatedArtifact",
|
|
40
|
+
Resource = "Resource",
|
|
41
|
+
SampledData = "SampledData",
|
|
42
|
+
Signature = "Signature",
|
|
43
|
+
SubstanceAmount = "SubstanceAmount",
|
|
44
|
+
SystemString = "http://hl7.org/fhirpath/System.String",
|
|
45
|
+
Timing = "Timing",
|
|
46
|
+
TriggerDefinition = "TriggerDefinition",
|
|
47
|
+
UsageContext = "UsageContext",
|
|
48
|
+
base64Binary = "base64Binary",
|
|
49
|
+
boolean = "boolean",
|
|
50
|
+
canonical = "canonical",
|
|
51
|
+
code = "code",
|
|
52
|
+
date = "date",
|
|
53
|
+
dateTime = "dateTime",
|
|
54
|
+
decimal = "decimal",
|
|
55
|
+
id = "id",
|
|
56
|
+
instant = "instant",
|
|
57
|
+
integer = "integer",
|
|
58
|
+
markdown = "markdown",
|
|
59
|
+
oid = "oid",
|
|
60
|
+
positiveInt = "positiveInt",
|
|
61
|
+
string = "string",
|
|
62
|
+
time = "time",
|
|
63
|
+
unsignedInt = "unsignedInt",
|
|
64
|
+
uri = "uri",
|
|
65
|
+
url = "url",
|
|
66
|
+
uuid = "uuid"
|
|
67
|
+
}
|
|
68
|
+
/**
|
|
69
|
+
* A TypedValue includes a value and a type.
|
|
70
|
+
*/
|
|
71
|
+
export interface TypedValue<T> {
|
|
72
|
+
value: T;
|
|
73
|
+
propertyType: PropertyType;
|
|
74
|
+
}
|
package/dist/types.js
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.PropertyType = void 0;
|
|
4
|
+
/**
|
|
5
|
+
* List of property types.
|
|
6
|
+
* http://www.hl7.org/fhir/valueset-defined-types.html
|
|
7
|
+
* The list here includes additions found from StructureDefinition resources.
|
|
8
|
+
*/
|
|
9
|
+
var PropertyType;
|
|
10
|
+
(function (PropertyType) {
|
|
11
|
+
PropertyType["Address"] = "Address";
|
|
12
|
+
PropertyType["Age"] = "Age";
|
|
13
|
+
PropertyType["Annotation"] = "Annotation";
|
|
14
|
+
PropertyType["Attachment"] = "Attachment";
|
|
15
|
+
PropertyType["BackboneElement"] = "BackboneElement";
|
|
16
|
+
PropertyType["CodeableConcept"] = "CodeableConcept";
|
|
17
|
+
PropertyType["Coding"] = "Coding";
|
|
18
|
+
PropertyType["ContactDetail"] = "ContactDetail";
|
|
19
|
+
PropertyType["ContactPoint"] = "ContactPoint";
|
|
20
|
+
PropertyType["Contributor"] = "Contributor";
|
|
21
|
+
PropertyType["Count"] = "Count";
|
|
22
|
+
PropertyType["DataRequirement"] = "DataRequirement";
|
|
23
|
+
PropertyType["Distance"] = "Distance";
|
|
24
|
+
PropertyType["Dosage"] = "Dosage";
|
|
25
|
+
PropertyType["Duration"] = "Duration";
|
|
26
|
+
PropertyType["Expression"] = "Expression";
|
|
27
|
+
PropertyType["Extension"] = "Extension";
|
|
28
|
+
PropertyType["HumanName"] = "HumanName";
|
|
29
|
+
PropertyType["Identifier"] = "Identifier";
|
|
30
|
+
PropertyType["MarketingStatus"] = "MarketingStatus";
|
|
31
|
+
PropertyType["Meta"] = "Meta";
|
|
32
|
+
PropertyType["Money"] = "Money";
|
|
33
|
+
PropertyType["Narrative"] = "Narrative";
|
|
34
|
+
PropertyType["ParameterDefinition"] = "ParameterDefinition";
|
|
35
|
+
PropertyType["Period"] = "Period";
|
|
36
|
+
PropertyType["Population"] = "Population";
|
|
37
|
+
PropertyType["ProdCharacteristic"] = "ProdCharacteristic";
|
|
38
|
+
PropertyType["ProductShelfLife"] = "ProductShelfLife";
|
|
39
|
+
PropertyType["Quantity"] = "Quantity";
|
|
40
|
+
PropertyType["Range"] = "Range";
|
|
41
|
+
PropertyType["Ratio"] = "Ratio";
|
|
42
|
+
PropertyType["Reference"] = "Reference";
|
|
43
|
+
PropertyType["RelatedArtifact"] = "RelatedArtifact";
|
|
44
|
+
PropertyType["Resource"] = "Resource";
|
|
45
|
+
PropertyType["SampledData"] = "SampledData";
|
|
46
|
+
PropertyType["Signature"] = "Signature";
|
|
47
|
+
PropertyType["SubstanceAmount"] = "SubstanceAmount";
|
|
48
|
+
PropertyType["SystemString"] = "http://hl7.org/fhirpath/System.String";
|
|
49
|
+
PropertyType["Timing"] = "Timing";
|
|
50
|
+
PropertyType["TriggerDefinition"] = "TriggerDefinition";
|
|
51
|
+
PropertyType["UsageContext"] = "UsageContext";
|
|
52
|
+
PropertyType["base64Binary"] = "base64Binary";
|
|
53
|
+
PropertyType["boolean"] = "boolean";
|
|
54
|
+
PropertyType["canonical"] = "canonical";
|
|
55
|
+
PropertyType["code"] = "code";
|
|
56
|
+
PropertyType["date"] = "date";
|
|
57
|
+
PropertyType["dateTime"] = "dateTime";
|
|
58
|
+
PropertyType["decimal"] = "decimal";
|
|
59
|
+
PropertyType["id"] = "id";
|
|
60
|
+
PropertyType["instant"] = "instant";
|
|
61
|
+
PropertyType["integer"] = "integer";
|
|
62
|
+
PropertyType["markdown"] = "markdown";
|
|
63
|
+
PropertyType["oid"] = "oid";
|
|
64
|
+
PropertyType["positiveInt"] = "positiveInt";
|
|
65
|
+
PropertyType["string"] = "string";
|
|
66
|
+
PropertyType["time"] = "time";
|
|
67
|
+
PropertyType["unsignedInt"] = "unsignedInt";
|
|
68
|
+
PropertyType["uri"] = "uri";
|
|
69
|
+
PropertyType["url"] = "url";
|
|
70
|
+
PropertyType["uuid"] = "uuid";
|
|
71
|
+
})(PropertyType = exports.PropertyType || (exports.PropertyType = {}));
|
|
72
|
+
//# sourceMappingURL=types.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":";;;AAAA;;;;GAIG;AACH,IAAY,YA6DX;AA7DD,WAAY,YAAY;IACtB,mCAAmB,CAAA;IACnB,2BAAW,CAAA;IACX,yCAAyB,CAAA;IACzB,yCAAyB,CAAA;IACzB,mDAAmC,CAAA;IACnC,mDAAmC,CAAA;IACnC,iCAAiB,CAAA;IACjB,+CAA+B,CAAA;IAC/B,6CAA6B,CAAA;IAC7B,2CAA2B,CAAA;IAC3B,+BAAe,CAAA;IACf,mDAAmC,CAAA;IACnC,qCAAqB,CAAA;IACrB,iCAAiB,CAAA;IACjB,qCAAqB,CAAA;IACrB,yCAAyB,CAAA;IACzB,uCAAuB,CAAA;IACvB,uCAAuB,CAAA;IACvB,yCAAyB,CAAA;IACzB,mDAAmC,CAAA;IACnC,6BAAa,CAAA;IACb,+BAAe,CAAA;IACf,uCAAuB,CAAA;IACvB,2DAA2C,CAAA;IAC3C,iCAAiB,CAAA;IACjB,yCAAyB,CAAA;IACzB,yDAAyC,CAAA;IACzC,qDAAqC,CAAA;IACrC,qCAAqB,CAAA;IACrB,+BAAe,CAAA;IACf,+BAAe,CAAA;IACf,uCAAuB,CAAA;IACvB,mDAAmC,CAAA;IACnC,qCAAqB,CAAA;IACrB,2CAA2B,CAAA;IAC3B,uCAAuB,CAAA;IACvB,mDAAmC,CAAA;IACnC,sEAAsD,CAAA;IACtD,iCAAiB,CAAA;IACjB,uDAAuC,CAAA;IACvC,6CAA6B,CAAA;IAC7B,6CAA6B,CAAA;IAC7B,mCAAmB,CAAA;IACnB,uCAAuB,CAAA;IACvB,6BAAa,CAAA;IACb,6BAAa,CAAA;IACb,qCAAqB,CAAA;IACrB,mCAAmB,CAAA;IACnB,yBAAS,CAAA;IACT,mCAAmB,CAAA;IACnB,mCAAmB,CAAA;IACnB,qCAAqB,CAAA;IACrB,2BAAW,CAAA;IACX,2CAA2B,CAAA;IAC3B,iCAAiB,CAAA;IACjB,6BAAa,CAAA;IACb,2CAA2B,CAAA;IAC3B,2BAAW,CAAA;IACX,2BAAW,CAAA;IACX,6BAAa,CAAA;AACf,CAAC,EA7DW,YAAY,GAAZ,oBAAY,KAAZ,oBAAY,QA6DvB","sourcesContent":["/**\n * List of property types.\n * http://www.hl7.org/fhir/valueset-defined-types.html\n * The list here includes additions found from StructureDefinition resources.\n */\nexport enum PropertyType {\n Address = 'Address',\n Age = 'Age',\n Annotation = 'Annotation',\n Attachment = 'Attachment',\n BackboneElement = 'BackboneElement',\n CodeableConcept = 'CodeableConcept',\n Coding = 'Coding',\n ContactDetail = 'ContactDetail',\n ContactPoint = 'ContactPoint',\n Contributor = 'Contributor',\n Count = 'Count',\n DataRequirement = 'DataRequirement',\n Distance = 'Distance',\n Dosage = 'Dosage',\n Duration = 'Duration',\n Expression = 'Expression',\n Extension = 'Extension',\n HumanName = 'HumanName',\n Identifier = 'Identifier',\n MarketingStatus = 'MarketingStatus',\n Meta = 'Meta',\n Money = 'Money',\n Narrative = 'Narrative',\n ParameterDefinition = 'ParameterDefinition',\n Period = 'Period',\n Population = 'Population',\n ProdCharacteristic = 'ProdCharacteristic',\n ProductShelfLife = 'ProductShelfLife',\n Quantity = 'Quantity',\n Range = 'Range',\n Ratio = 'Ratio',\n Reference = 'Reference',\n RelatedArtifact = 'RelatedArtifact',\n Resource = 'Resource',\n SampledData = 'SampledData',\n Signature = 'Signature',\n SubstanceAmount = 'SubstanceAmount',\n SystemString = 'http://hl7.org/fhirpath/System.String',\n Timing = 'Timing',\n TriggerDefinition = 'TriggerDefinition',\n UsageContext = 'UsageContext',\n base64Binary = 'base64Binary',\n boolean = 'boolean',\n canonical = 'canonical',\n code = 'code',\n date = 'date',\n dateTime = 'dateTime',\n decimal = 'decimal',\n id = 'id',\n instant = 'instant',\n integer = 'integer',\n markdown = 'markdown',\n oid = 'oid',\n positiveInt = 'positiveInt',\n string = 'string',\n time = 'time',\n unsignedInt = 'unsignedInt',\n uri = 'uri',\n url = 'url',\n uuid = 'uuid',\n}\n\n/**\n * A TypedValue includes a value and a type.\n */\nexport interface TypedValue<T> {\n value: T;\n propertyType: PropertyType;\n}\n"]}
|