-
Notifications
You must be signed in to change notification settings - Fork 515
New issue
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
OperationOutcome "Patient // OperationOutcome.Location is deprecated, please use OperationOutcome.Expression" #3119
Comments
@LTA-Thinking could this be related to caching? |
@brendankowitz yes, I think this is due to caching. |
@LTA-Thinking
below are the two services that I created one is for R4 and one is for STU 3 and I have been using for STU3 |
@arjun8001 - is this issue resolved, can we close the issue? |
@EXPEkesheth , |
Hi @arjun8001 |
We are also facing the same issue. I am posting messages bundles from the custom created utility and getting the below error when posting. Utility posts around 4 messages at every 30 seconds delay. However when i post using Postman it posts bundle successfully. Error: 28T13:12:03.4069764+00:00"},"issue":[{"severity":"error","code":"invalid","diagnostics":"Resource type in the URL must match resourceType in the resource.","location":["TypeName // OperationOutcome.Location is deprecated, please use OperationOutcome.Expression"],"expression":["TypeName"]}]} |
Thanks for providing information. We have added this in backlog for further investigation. |
We have also noticed the same issue. Based on our logs, this seems to have started to occur on 2023-02-15, and has been happening sporadically since. The error reported in Any update on this issue is appreciated as we have disabled profile validation on some services as a workaround for this problem. FHIR Version? Data provider? {
"resourceType": "OperationOutcome",
"id": "a8831a235e1c1633109b0177c2c8ceb5",
"meta": {
"lastUpdated": "2023-03-01T13:16:44.9637258+00:00"
},
"issue": [
{
"severity": "error",
"code": "incomplete",
"details": {
"coding": [
{
"system": "http://hl7.org/fhir/dotnet-api-operation-outcome",
"code": "4000"
}
],
"text": "Unable to resolve reference to profile 'http://hl7.org/fhir/uv/pocd/StructureDefinition/MdsDevice'"
},
"location": [
"Device // OperationOutcome.Location is deprecated, please use OperationOutcome.Expression"
],
"expression": [
"Device"
]
}
]
} |
I did have this problem too, what fixed it for me was checking if this folder |
We are also experiencing the same issue on the managed service. I tried both with a built-in profile (us-core-patient) and a custom profile, both are present in the service. Both validation outcomes give the "Unable to resolve reference to profile ..." error.
|
Thanks for reporting the issue . Backlog feature [#105394] |
We are experiencing the same issue with the OSS version running as an App Service. We cannot make use of $validate due to this issue. Is there an expected fix date? |
Describe the bug
I stored my custom FHIR profile, and even though it stores the profile properly, it is unable to create and validate new resource properly.
FHIR Version?
Stu3/R4/R5
Stu3
Data provider?
CosmosDB/SQL Server
To Reproduce
Steps to reproduce the behavior:
x-ms-profile-validation is set to TRUE
POST {{fhirurl}}/StructureDefinition
Body
Expected behavior
Once you create, it should give you below
Actual behavior
When I try to create new Patient, I receive this error
POST {{fhirurl}}/Patient
After hitting POST second time, the new patient is created.
Same is happening when I try to validate.
AB#101364
The text was updated successfully, but these errors were encountered: