We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug Tags now have a new property not present in the input data: userSelected.
userSelected
To Reproduce
Patient patient1 = new Patient(); patient1.getMeta().addTag().setSystem("http://foo").setCode("bar"); IIdType pid1 = myPatientDao.create(patient1).getId(); // when var patientReadback = myPatientDao.read(pid1); System.out.println(myFhirContext.newJsonParser().setPrettyPrint(true).encodeResourceToString(patientReadback));
On 6_4, and HEAD, this prints
{ "resourceType": "Patient", "id": "1", "meta": { "versionId": "1", "lastUpdated": "2023-05-04T10:37:14.596-04:00", "tag": [ { "system": "http://foo", "code": "bar", "userSelected": false } ] }, }
Note the "userSelected": false bit. This was not passed in.
"userSelected": false
Expected behavior
Print
{ "resourceType": "Patient", "id": "1", "meta": { "versionId": "1", "lastUpdated": "2023-05-04T10:37:14.596-04:00", "tag": [ { "system": "http://foo", "code": "bar" } ] }, }
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Describe the bug
Tags now have a new property not present in the input data:
userSelected
.To Reproduce
On 6_4, and HEAD, this prints
Note the
"userSelected": false
bit. This was not passed in.Expected behavior
Print
The text was updated successfully, but these errors were encountered: