Matt Long
Matt Long
e.g. a binding is added to `Patient.address.state` in the [US Core Patient Profile](https://build.fhir.org/ig/HL7/US-Core/StructureDefinition-us-core-patient-definitions.html#diff_Patient.address.state)
As demonstrated in [US Core Condition Problems and Health Concerns Profile](https://hl7.org/fhir/us/core/STU5.0.1/StructureDefinition-us-core-condition-problems-health-concerns.html) in `Condition.category`. Currently, Medplum does not correctly assign/validate array entries when the discriminator path is `$this`: ```javascript "discriminator": [...
`ResourceCrawler` is used for resource validation. `SchemaCrawler` was introduced in #3918 to facilitate working with pattern and fixed values in profiles. The two are quite similar in spirit and would...
As discussed in [this comment](https://github.com/medplum/medplum/pull/3918#discussion_r1486850016), right now we don't have a good location to store StructureDefinitions and other JSON blobs that can be used in testing across all packages. A...
There has been a decent amount of additions and churn to React Input component props (and display components to a lesser degree). Especially after https://github.com/medplum/medplum/pull/4237. e.g., it likely is not...
It was deprecated in https://github.com/medplum/medplum/pull/4257 and can be removed.
### What's not working? I have SDL-only fields defined on graphql types that resolve primarily to Prisma-defined models. The generated types, e.g. `QueryResolvers['posts']` and `QueryResolvers['post']` from the example below, have...
A notable underlying change to facilitate this: In order to get discriminators with a path of `$this` working, `SliceDefinition` now extends `InternalSchemaElement`. Previously they already had an awful lot of...
`ResourceForm` can now consider the user's `AccessPolicy` and hide or show inputs in a disabled state for `AccessPolicy.resource.hiddenFields` and `AccessPolicy.resource.readonlyFields` respectively. For nested elements that have a custom input component,...