AWS healthlake documentation change
Summary
Clarified the format for specifying non-default FHIR profiles and added an example JSON structure showing versioned profile URL usage
Security assessment
The changes are documentation improvements for FHIR profile validation syntax and examples. No security vulnerabilities, exploits, or weaknesses are mentioned or addressed. This is a routine documentation update for feature usage clarity.
Diff
diff --git a/healthlake/latest/devguide/reference-fhir-profile-validations.md b/healthlake/latest/devguide/reference-fhir-profile-validations.md index 22665c392..cee9af469 100644 --- a//healthlake/latest/devguide/reference-fhir-profile-validations.md +++ b//healthlake/latest/devguide/reference-fhir-profile-validations.md @@ -77 +77,16 @@ The profile URL is added to the `profile` element in the `"meta" : "profile"` ke -To validate against a supported non-default profile (e.g. CarinBB 1.0.0) - add the profile URL with version (separated by '|') and the base profile URL in the `meta.profile` element. This example resource was truncated for clarity. +To validate against a supported non-default profile, add the versioned profile URL to the `meta.profile` element. The versioned URL includes the base profile URL followed by a pipe character (`|`) and the version number. This example resource was truncated for clarity. + + + { + "resourceType": "ExplanationOfBenefit", + "id": "sample-EOB", + "meta": { + "lastUpdated": "2024-02-02T05:56:09.4+00:00", + "profile": [ + "http://hl7.org/fhir/us/carin-bb/StructureDefinition/C4BB-ExplanationOfBenefit-Pharmacy|1.0.0" + ] + } + } + + +You can also include both the versioned URL and the base profile URL. Both formats are valid. @@ -87 +102 @@ To validate against a supported non-default profile (e.g. CarinBB 1.0.0) - add t - "http://hl7.org/fhir/us/carin-bb/StructureDefinition/C4BB-ExplanationOfBenefit-Pharmacy“ + "http://hl7.org/fhir/us/carin-bb/StructureDefinition/C4BB-ExplanationOfBenefit-Pharmacy"