Stream: implementers
Topic: stu3 -> r4 redirect
Nick George (Jan 08 2019 at 19:14):
hey, FYI, hl7.org/fhir/stu3/[resource] redirects to hl7.org/fhir/[resource].html, which is R4. Probably should redirect to hl7.org/fhir/stu3/[resource].html
Grahame Grieve (Jan 08 2019 at 19:48):
fixed
Nick George (Jan 08 2019 at 21:06):
looks like you're missing a slash :)
right now https://hl7.org/fhir/stu3/patient -> https://hl7.org/fhir/STU3patient.html
Grahame Grieve (Jan 08 2019 at 21:26):
oh crap
Grahame Grieve (Jan 09 2019 at 03:50):
should all be correct now
Morten Ernebjerg (Jan 09 2019 at 07:54):
I still get a missing slash
Grahame Grieve (Jan 10 2019 at 10:12):
where?
Kenneth Myhra (Jan 10 2019 at 12:42):
This https://hl7.org/fhir/stu3/patient redirects to this http://hl7.org/fhir/STU3patient.html for me
Grahame Grieve (Jan 12 2019 at 14:24):
hmm. and I was sure I fixed that
Morten Ernebjerg (Jan 15 2019 at 14:53):
Works now :tada:
Rajdeep Gupta (Jan 16 2019 at 12:49):
Detail and codes related to my issue :
I am creating a new practitioner resource like below :
var practitioner = new Practitioner();
-Adding meta info to practitioner object like below :
var metObj = new Meta();
-I want to save long value (i.e ticks) instead of DateTime value for "Meta.LastUpdated" property like given below :
metObj.LastUpdated = DateTime.Now.Ticks;
-Also, i want to save list of long data type value in "Meta.LastUpdate" property like given below :
List lastUpdatedLst = new List();
lastUpdatedLst.Add(DateTime.Now.Ticks);
metaObj.LastUpdatedList = lastUpdatedLst;
Could you please help me out out to achieve this! implementers
Grahame Grieve (Jan 16 2019 at 13:33):
this looks like... C# code.... so ask on the DotNet channel
Morten Ernebjerg (Jan 29 2019 at 08:59):
I stumbled upon another redirect/reference chain that I do not quite understand, maybe it's related:
1. The page http://hl7.org/fhir/STU3/v2/0335/index.html describes the STU3 version of the HL7 v2 Table 0335 Code System. It states that the canonical URL for the CodeSystem is http://hl7.org/fhir/v2/0335.
2. Going to this canonical URL (http://hl7.org/fhir/v2/0335), however, one is redirected to the R4 version of the general code system page, i.e. http://hl7.org/fhir/v2/0335/. Here, the canonical CodeSystem URL is given as http://terminology.hl7.org/CodeSystem/v2-0335
3. Going to http://terminology.hl7.org/CodeSystem/v2-0335 gives a HTTP 403 response
I also am seeing validation errors when using the canonical URL from the STU3 page, errors that go away when I use the one from the R4 page (despite evaluating as STU3). (Error @ MedicationStatement.dosage.timing.code.coding (line 34, col25) : Error null validating Coding http://hl7.org/fhir/v2/0335#Q10D [null}
)
Morten Ernebjerg (Jan 29 2019 at 09:08):
On second though, the validation error is probably coming from GF #20204.
Grahame Grieve (Jan 29 2019 at 09:19):
on the subject of that task..:
Grahame Grieve (Jan 29 2019 at 09:19):
Try to validate the Medication example (Example-Medication-de-basis-1.xml) against it, setting the FHIR version to 3.0.1
Grahame Grieve (Jan 29 2019 at 09:19):
I just downloaded all the resources as json, and I don't see that file
Morten Ernebjerg (Jan 29 2019 at 09:38):
Sorry, my mistake, it should be Medication-example.xml (I was looking at a larger set of examples) - will correct the GF.
Grahame Grieve (Jan 29 2019 at 09:56):
@Martijn Harthoorn this download from simplifier (https://simplifier.net/basisprofilde/$download?format=json&filter=Resource) contains a duplicate file name (gkv-version-egk-0.json)
Martijn Harthoorn (Jan 29 2019 at 15:08):
Tx. Grahame, will look into it.
Last updated: Apr 12 2022 at 19:14 UTC