Skip to content

Releases: smart-on-fhir/cumulus-fhir-support

1.2.1

22 Jul 18:10
4f5906d
Compare
Choose a tag to compare

This release just prepares for an upcoming fhirclient release which tweaks how date & time handling works. No functional changes.

1.2.0

02 Jul 13:51
e153b3f
Compare
Choose a tag to compare

This release adds three new methods for reading NDJSON:

  • list_multiline_json_in_dir: scans for files & their resource types
  • read_multiline_json: returns line by line results from a file
  • read_multiline_json_from_dir: returns line by line results from a folder

Headline features:

  • Lets you filter by FHIR resource type (by actually inspecting the contents of a file, rather than playing guessing games with filenames)
    • But these functions are not restricted to FHIR-based JSON, you can read arbitrary multi-line JSON too
  • Transparently handles I/O and decode errors by logging a warning and continuing - these are designed for bulk processing
  • You can read from remote filesystem locations using the optional fsspec support
  • Supports both NDJSON and JSON Lines formats

1.1.0

29 Apr 12:31
51fd987
Compare
Choose a tag to compare

Contained resources (sub-resources found in the "contained": [...] field) now contribute to the schema. (Previously, contained would just hold a bare bones schema for the root Resource type.)

Every contained resource found in the provided rows gets its fields added, as long as that field exists in any of the resources mentioned by contained resourceType schemas.

Example:

  "contained": [
    {"resourceType": "Medication", "code": {...}},
    {"resourceType": "Encounter", "status": "planned"}
  ]

For the above JSON, the final schema would include both contained.code and contained.status.

See https://github.com/smart-on-fhir/cumulus-etl/issues/250 for a discussion of whether this kind of contained handling is the best approach. But it's arguably better than ignoring the contained resources altogether.

1.0.0

22 Nov 15:59
584d930
Compare
Choose a tag to compare

The first release! 🎉

This module holds exactly one public function right now: pyarrow_schema_from_rows