-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Open
Description
After running hapi-fhir-cli to import SNOMED, I'm setting CodeSystem.version (not set by the CLI tool) as well as CodeSystem.content = "complete" (instead of "not-present"), like so:
curl -X PATCH "http://localhost:8282/fhir/CodeSystem/$(curl -s "http://localhost:8282/fhir/CodeSystem?url=http://snomed.info/sct" | jq -r '.entry[0].resource.id')" -H "Content-Type: application/json-patch+json" -d '[{"op": "add", "path": "/version", "value": "20250901"}, {"op": "replace", "path": "/content", "value": "complete"}]'When you retrieve the CodeSystem it now reflects the updated fields, as expected, but if you $validate a ValueSet that references the updated CodeSystem, the validator still thinks the referenced CodeSystem.content is "not-present".
For the JPA server, restarting it does not resolve the problem and there doesn't seem to be a workaround.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels