GP Connect Profiles and ValueSets

Are these available for download?

Couldn’t find them here http://developer.nhs.uk/downloads-data/fhir-resource-definitions-library/

Ideally I’d like to load them into Forge Profile Designer (and HAPI server). (Looking at using FHIR for Cancer Referrals, Documents and CarePlans, would like to reuse profiles if possible. Also make them available via github)

To the best of my knowledge the underlying StructureDefinitions etc haven’t been released but I think @RKavanagh has it on his list!

The next release of the GPConnect product will include Structure Definitions, ValueSets and OperationDefitions.
It is 2-3 weeks away.

1 Like

Thanks Richard.

I’m only after sketching solutions at the moment so that’s great.

If it’s any use I have some code to convert the vocabularies in ITK Specifications Reference Pack releases
into ValueSets. (Details here: Jorvik/Documentation/UK HAPI FHIR Server Instructions 1v01.docx at master · KevinMayfield/Jorvik · GitHub )

It’s a rough conversion but enough to explore the data. Convention I’ve used is to precede the v2/v3/snomed vocab’s with

nhsitk-v2-
nhsitk-v3-
nhsitk-sct-

I’ve used the OID or http://snomed.info/sct for the system. e.g.

{

“resourceType”: “ValueSet”,
“id”: “nhsitk-v2-hospitalservice”,
“meta”: {
“versionId”: “2”,
“lastUpdated”: “2016-08-26T14:50:28.271+01:00”
},
“extension”: [
{
“url”: “http://hl7.org/fhir/StructureDefinition/valueset-oid”,
“valueUri”: “urn:oid:2.16.840.1.113883.12.69”
},
{
“url”: “http://west.riding.nhs.uk/fhir/StructureDefinition/vocabulary-filename”,
“valueString”: “HospitalService-v1.0.xml”
}
],
“version”: “1.0”,
“name”: “NHSITK-v2-HospitalService”,
“status”: “active”,
“compose”: {
“include”: [
{
“system”: “urn:oid:2.16.840.1.113883.12.69”,
“concept”: [
{
“code”: “317”,
“display”: “ALLERGY”
},
{
“code”: “318”,
“display”: “INTERMEDIATE CARE”
},
{
“code”: “320”,
“display”: “CARDIOLOGY”
},
{
“code”: “322”,
“display”: “CLINICAL MICROBIOLOGY”
},
{
“code”: “316”,
“display”: “CLINICAL IMMUNOLOGY”
},

  etc.