|
1 | 1 | (ns aidbox-sdk.models
|
2 | 2 | (:require [malli.core :as m]
|
3 |
| - [malli.registry :as mr] |
| 3 | + [malli.util :as mu] |
4 | 4 | [aidbox-sdk.fixtures.schemas :as fix]))
|
5 | 5 |
|
6 | 6 | (def FHIRElement
|
|
46 | 46 | [:summary {:optional true} :boolean]]}}
|
47 | 47 | ::fhir-element])
|
48 | 48 |
|
49 |
| -(def FHIRSchema |
| 49 | +(def BaseFHIRSchema |
50 | 50 | [:map
|
51 | 51 | [:url :string]
|
52 | 52 | [:type :string]
|
53 | 53 | [:name :string]
|
54 |
| - [:derivation [:enum "specialization" "constraint"]] |
55 |
| - [:base {:optional true} :string] |
56 | 54 |
|
57 | 55 | [:excluded {:optional true} [:vector :string]]
|
58 | 56 | [:required {:optional true} [:vector :string]]
|
59 | 57 |
|
60 |
| - [:elements {:optional false} [:map-of :keyword FHIRElement]] |
| 58 | + [:elements {:optional true} [:map-of :keyword FHIRElement]] |
61 | 59 |
|
62 | 60 | ;; NOTE: shapes of constraints and extensions are not specified here since
|
63 | 61 | ;; they are not used in generation
|
64 | 62 | [:constraints {:optional true} :any]
|
65 | 63 | [:extensions {:optional true} :any]])
|
66 | 64 |
|
| 65 | +(def FHIRSchema |
| 66 | + [:or BaseFHIRSchema |
| 67 | + (-> BaseFHIRSchema |
| 68 | + (mu/assoc :derivation [:enum "specialization" "constraint"]) |
| 69 | + (mu/assoc :base :string))]) |
| 70 | + |
67 | 71 | (def Type string?)
|
68 | 72 |
|
69 | 73 | (def NonPolymorphicElement
|
70 | 74 | [:map
|
| 75 | + [:name string?] |
71 | 76 | [:base string?]
|
72 | 77 | [:array boolean?]
|
73 | 78 | [:required boolean?]
|
74 | 79 | [:value string?]
|
75 |
| - [:name string?] |
| 80 | + [:choice-of string?] |
76 | 81 | [:type Type]])
|
77 | 82 |
|
78 | 83 | (def PolymorphicElement
|
|
82 | 87 | [:array boolean?]
|
83 | 88 | [:required boolean?]
|
84 | 89 | [:value string?]
|
85 |
| - [:name string?] |
86 |
| - [:choices [:vector NonPolymorphicElement]]]) |
| 90 | + [:choices {:optional true} [:sequential NonPolymorphicElement]] |
| 91 | + [:type Type]]) |
87 | 92 |
|
88 | 93 | (def Element
|
89 | 94 | [:or
|
90 |
| - PolymorphicElement |
91 |
| - NonPolymorphicElement]) |
| 95 | + NonPolymorphicElement |
| 96 | + PolymorphicElement]) |
92 | 97 |
|
93 | 98 | (def BackboneElement
|
94 | 99 | [:map
|
95 |
| - [:name string?] |
96 |
| - [:elements [:vector Element]]]) |
| 100 | + [:name :string] |
| 101 | + [:elements [:sequential Element]]]) |
97 | 102 |
|
98 | 103 | (def IRSchema
|
99 | 104 | "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] |
107 | 114 | [:elements
|
108 |
| - [:vector Element]] |
| 115 | + [:sequential Element]] |
109 | 116 | [:backbone-elements
|
110 |
| - [:vector BackboneElement]]]) |
| 117 | + [:sequential BackboneElement]]]) |
111 | 118 |
|
112 | 119 | (def SearchParamIRSchema
|
113 | 120 | [:map {:closed true}
|
|
122 | 129 |
|
123 | 130 | ;
|
124 | 131 | )
|
| 132 | +(def validate-fhir-schema (m/coercer FHIRSchema)) |
| 133 | + |
| 134 | +(def validate-ir-schema (m/coercer IRSchema)) |
0 commit comments