Skip to content

Commit ec91b1c

Browse files
committed
update FHIR and IR schema models
1 parent 135db90 commit ec91b1c

File tree

1 file changed

+31
-21
lines changed

1 file changed

+31
-21
lines changed

src/aidbox_sdk/models.clj

+31-21
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
(ns aidbox-sdk.models
22
(:require [malli.core :as m]
3-
[malli.registry :as mr]
3+
[malli.util :as mu]
44
[aidbox-sdk.fixtures.schemas :as fix]))
55

66
(def FHIRElement
@@ -46,33 +46,38 @@
4646
[:summary {:optional true} :boolean]]}}
4747
::fhir-element])
4848

49-
(def FHIRSchema
49+
(def BaseFHIRSchema
5050
[:map
5151
[:url :string]
5252
[:type :string]
5353
[:name :string]
54-
[:derivation [:enum "specialization" "constraint"]]
55-
[:base {:optional true} :string]
5654

5755
[:excluded {:optional true} [:vector :string]]
5856
[:required {:optional true} [:vector :string]]
5957

60-
[:elements {:optional false} [:map-of :keyword FHIRElement]]
58+
[:elements {:optional true} [:map-of :keyword FHIRElement]]
6159

6260
;; NOTE: shapes of constraints and extensions are not specified here since
6361
;; they are not used in generation
6462
[:constraints {:optional true} :any]
6563
[:extensions {:optional true} :any]])
6664

65+
(def FHIRSchema
66+
[:or BaseFHIRSchema
67+
(-> BaseFHIRSchema
68+
(mu/assoc :derivation [:enum "specialization" "constraint"])
69+
(mu/assoc :base :string))])
70+
6771
(def Type string?)
6872

6973
(def NonPolymorphicElement
7074
[:map
75+
[:name string?]
7176
[:base string?]
7277
[:array boolean?]
7378
[:required boolean?]
7479
[:value string?]
75-
[:name string?]
80+
[:choice-of string?]
7681
[:type Type]])
7782

7883
(def PolymorphicElement
@@ -82,32 +87,34 @@
8287
[:array boolean?]
8388
[:required boolean?]
8489
[:value string?]
85-
[:name string?]
86-
[:choices [:vector NonPolymorphicElement]]])
90+
[:choices {:optional true} [:sequential NonPolymorphicElement]]
91+
[:type Type]])
8792

8893
(def Element
8994
[:or
90-
PolymorphicElement
91-
NonPolymorphicElement])
95+
NonPolymorphicElement
96+
PolymorphicElement])
9297

9398
(def BackboneElement
9499
[:map
95-
[:name string?]
96-
[:elements [:vector Element]]])
100+
[:name :string]
101+
[:elements [:sequential Element]]])
97102

98103
(def IRSchema
99104
"Intermediate Representation Schema."
100-
[:map {:closed true}
101-
[:derivation [:enum "specialization" "constraint"]]
102-
[:base string?]
103-
[:url string?]
104-
[:name string?]
105-
[:type string?]
106-
[:package string?]
105+
[:map
106+
[:derivation {:optional true} [:enum "specialization" "constraint"]]
107+
[:resource-name :string]
108+
[:base-resource-name :string]
109+
[:base :string]
110+
[:url :string]
111+
[:name :string]
112+
[:type :string]
113+
[:package :string]
107114
[:elements
108-
[:vector Element]]
115+
[:sequential Element]]
109116
[:backbone-elements
110-
[:vector BackboneElement]]])
117+
[:sequential BackboneElement]]])
111118

112119
(def SearchParamIRSchema
113120
[:map {:closed true}
@@ -122,3 +129,6 @@
122129

123130
;
124131
)
132+
(def validate-fhir-schema (m/coercer FHIRSchema))
133+
134+
(def validate-ir-schema (m/coercer IRSchema))

0 commit comments

Comments
 (0)