Finding test patients with comprehensive data (Observations / Encounters / Procedures)

I’m trying to pull down data from https://data.developer.nhs.uk/ccri-fhir/STU3/

Are there any known patient IDs that contain data for all (or most resources).

Looking for a patient with lots of appointments, observations etc.

Related to this is how to get all observations / appointments for a patient

For example this call that @mayfield.g.kev shared https://data.developer.nhs.uk/ccri-fhir/STU3/Patient?_id=1172&_revinclude=Condition%3Apatient&_revinclude=AllergyIntolerance%3Apatient&_revinclude=MedicationStatement%3Apatient&_revinclude=Flag%3Apatient&_count=100

Works

But

https://data.developer.nhs.uk/ccri-fhir/STU3/Patient?_id=1172&_revinclude=Observation%3Apatient&_revinclude=Encounter%3Apatient&_count=100

return nothing other than the patient core data. Not sure if this is due to no matching data or wrong request.

Still not a lot of data but some of the previous hackathons added data aligned with GP Connect. These patients should exist on opentest spine, GP Connect and the CareConnect Reference Implementation.

http://orange.testlab.nhs.uk/opentest.html

This may be of interest (but it’s US and LOINC focused not SNOMED)

It does create a lot of data and the CCRI did accept data from synthea when I last tested it (a few months/year ago)

Thanks @mayfield.g.kev. Looks interesting. Are there any basic web frontends already set up for adding patient data to https://data.developer.nhs.uk/ccri-fhir/STU3/ ?

http://clinfhir.com/ Looks good you can add https://data.developer.nhs.uk/ccri-fhir/STU3/ as an ad-hoc endpoint to test queries which is great. It also has a way to add patient data vie the patient viewer althou seems to require $everything is supported.

Is it worth adding to known servers Server Query ?

I’ve got similar requirements for HL7v2 - need examples.

I did put some examples in GitHub - nhsconnect/careconnect-examples: Example code for the CareConnect API
It’s not that tidy but some of the modules contain xml and json FHIR examples, e.g. careconnect-examples/ccri-interopen-examples/src/main/resources at master · nhsconnect/careconnect-examples · GitHub