We have detected that you are using Internet Explorer to visit this website. Internet Explorer is now being phased out by Microsoft. As a result, NHS Digital no longer supports any version of Internet Explorer for our web-based products, as it involves considerable extra effort and expense, which cannot be justified from public funds. Some features on this site will not work. You should use a modern browser such as Edge, Chrome, Firefox, or Safari. If you have difficulty installing or accessing a different browser, contact your IT support team.
Overview
Use this API to access a patient's Summary Care Record (SCR) - an electronic record of important patient information, created from GP medical records. SCRs can be seen and used by authorised staff in other areas of the health and care system involved in the patient's direct care.
Also use this API to access the Access Control Service (ACS) - which manages consent to share information for SCR.
You can:
- create a patient's Summary Care Record
- retrieve a patient's Summary Care Record
- set consent to share information
- send Alert to record TMS Event Service (TES) Alerts centrally
Legal Use
This API can only be used where there is a legal basis to do so. Make sure you have a valid use case before you go too far with your development. You must do this before you can go live (see ‘Onboarding’ below).
Related APIs
To use this API, you will need the patient's NHS number, which can be retrieved by using the following API:
- Personal Demographics Service (FHIR) API - use this API to search for patients and retrieve their details. This API can also be used to update their details in some cases. This is the latest version of the PDS API and is recommended for all new integrators.
API status and roadmap
This API is initially for use by new market entrant GP IT developers with other use cases to follow later.
This API is in beta, meaning:
- the API is available in our sandbox and integration test environments
- the API is not yet available for production use
- we might make breaking changes, but only if we cannot avoid it, and we'll give advance notice
To see our roadmap, or to suggest, comment or vote on features for this API, see our interactive product backlog.
If you have any other queries, please contact us.
Technology
This API is RESTful.
It also conforms to the FHIR (R4) global standard for health care data exchange.
You don’t need to know much about FHIR to use this API - FHIR APIs are just RESTful APIs that follow specific rules. In particular:
- array names are singular, for example line
not lines
for address lines
- data items that are country-specific and thus not included in the FHIR global base resources are usually wrapped in an extension
object
Network Access
This API is available on the internet and, indirectly, on the Health and Social Care Network (HSCN). To use this API with NHS smartcards (see below) you do need an HSCN connection, although internet-facing alternatives are available.
For more details see Network access for APIs.
Authorisation
This API is user-restricted, meaning an end user must be present and authenticated to use it.
The end user must be:
- a healthcare professional
- strongly authenticated, using either an NHS smartcard or a modern alternative available via NHS Identity
The API uses OAuth 2.0 to authorise the calling system. It supports the following security patterns:
- user-restricted RESTful API - using NHS Identity - combined authentication and authorisation
- user-restricted RESTful API - using NHS Identity - separate authentication and authorisation
For more details, see user-restricted APIs.
Environments and testing
Purpose | Base URL |
---|---|
Sandbox | https://sandbox.api.service.nhs.uk/summary-care-record/FHIR/R4 |
Integration test | https://int.api.service.nhs.uk/summary-care-record/FHIR/R4 |
Sandbox testing
Our sandbox environment:
- is for early developer testing
- only covers a limited set of scenarios
- is stateless, so it does not actually persist any updates
- is open access, so does not allow you to test authorisation
For more details on sandbox testing, or to try out the sandbox using our "Try this API" feature, see the documentation for each endpoint.
Integration testing
Our integration test environment:
- is for formal integration testing
- is stateful, so persists updates
- includes authorisation, with smartcard and non-smartcard options
For more details see integration testing with our RESTful APIs.
Onboarding
You need to get your software approved by us before it can go live with this API. We call this onboarding. The onboarding process can sometimes be quite long, so it’s worth planning well ahead.
Endpoints
Update patient's consent to share SCR
Overview
Use this endpoint to update the Permission to share the GP Summaries
Sandbox test scenarios
You can test the following scenarios in our sandbox environment:
Scenario | Request | Response |
---|---|---|
Happy path | NHSD-Session-URID =555254240100 ; nhsNumber =9995000180 |
HTTP Status 201 |
Patient not found | NHSD-Session-URID =555254240100 ; nhsNumber =9693042298 |
HTTP Status 400 |
Request
Headers
Name | Description |
---|---|
Authorization |
String
(^Bearer\ [[:ascii:]]+$)
An OAuth 2.0 bearer token.
Required in all environments except sandbox.
Example:
Bearer g1112R_ccQ1Ebbb4gtHBP1aaaNM
Required
|
X-Correlation-ID |
String
A globally unique identifier (GUID) for the request, which we use to trace the request if you contact our helpdesk.
Mirrored back in a response header. Avoid Example:
11C46F5F-CDEF-4865-94B2-0EE0EDCC26DA |
X-Request-ID |
String
A globally unique identifier (GUID) for the request, which we use to de-duplicate repeated requests.
Must be a universally unique identifier (UUID) (ideally version 4). If you re-send a failed request, use the same value in this header. Mirrored back in a response header. Pattern:
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/ Example:
60E0B220-8136-4CA5-AE46-1D97EF59D068 |
NHSD-Session-URID |
String
The user role ID (URID) for the current session. Also known as a user role profile ID (URPID).
For more details, see determine the user’s role. Pattern:
/^[0-9]+$/ Example:
555021935107
Required
|
Body
{
"resourceType" : "Parameters",
"parameter" : [ {
"name" : "setPermissions",
"part" : [ {
"name" : "nhsNumber",
"valueString" : "999999998"
}, {
"name" : "permissionCode",
"valueCoding" : {
"system" : "https://fhir.nhs.uk/CodeSystem/SCR-ACSPermission",
"code" : "Ask"
}
} ]
} ]
}
Name | Description |
---|---|
object
|
|
resourceType string
required |
Default:
Parameters |
parameter array
required |
Max items:
1 Min items:
1 |
object
|
|
name string
required |
Default:
setPermissions |
part array
required |
Max items:
2 Min items:
2 |
anyOf | |
object
|
|
name string
required |
Default:
nhsNumber |
valueString string
required |
Example:
9995000180 |
object
|
|
name string
required |
Default:
permissionCode |
valueCoding object
required |
|
system string
required |
Default:
https://fhir.nhs.uk/CodeSystem/SCR-ACSPermission |
code string
required |
The following values are allowed: Yes, No, Ask
|
Response
HTTP status: 201
HTTP status: 400
Body
{
"resourceType" : "OperationOutcome",
"issue" : [ {
"severity" : "error",
"code" : "invalid",
"details" : {
"text" : "Invalid value - xyz in field 'valueCoding.code'"
}
} ]
}
Name | Description |
---|---|
object
|
Operation outcome
|
resourceType string
read-only |
FHIR Resource Type.
Default:
OperationOutcome |
issue array
|
List of issues that have occurred.
Min items:
1 |
object
|
|
severity string
required |
Severity of the error.
Allowed values:
fatal , error , warning , information Example:
error |
code string
required |
error code.
Example:
invalid |
details object
|
|
text string
|
detailed information
Example:
NHS number missing |
Send TMS Event Service (TES) message
Overview
Use this endpoint to record TMS Event Service (TES) Alerts centrally.
Sandbox test scenarios
You can test the following scenarios in our sandbox environment:
Scenario | Request | Response |
---|---|---|
Happy path | nhsNumber =9995000180 |
HTTP Status 201 |
Request
Headers
Name | Description |
---|---|
Authorization |
String
(^Bearer\ [[:ascii:]]+$)
An OAuth 2.0 bearer token.
Required in all environments except sandbox.
Example:
Bearer g1112R_ccQ1Ebbb4gtHBP1aaaNM
Required
|
X-Correlation-ID |
String
A globally unique identifier (GUID) for the request, which we use to trace the request if you contact our helpdesk.
Mirrored back in a response header. Avoid Example:
11C46F5F-CDEF-4865-94B2-0EE0EDCC26DA |
X-Request-ID |
String
A globally unique identifier (GUID) for the request, which we use to de-duplicate repeated requests.
Must be a universally unique identifier (UUID) (ideally version 4). If you re-send a failed request, use the same value in this header. Mirrored back in a response header. Pattern:
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/ Example:
60E0B220-8136-4CA5-AE46-1D97EF59D068 |
NHSD-Session-URID |
String
The user role ID (URID) for the current session. Also known as a user role profile ID (URPID).
For more details, see determine the user’s role. Pattern:
/^[0-9]+$/ Example:
555021935107
Required
|
Body
{
"resourceType" : "AuditEvent",
"id" : "example",
"extension" : [ {
"url" : "https://fhir.nhs.uk/StructureDefinition/Extension-SCR-NotificationMessage",
"valueString" : "Alert: Permission to view override 1C03CF4F-D404-4D76-B192-4F81727059F6"
} ],
"type" : {
"system" : "http://terminology.hl7.org/CodeSystem/iso-21089-lifecycle",
"code" : "access",
"display" : "Access/View Record Lifecycle Event"
},
"subtype" : [ {
"system" : "https://fhir.nhs.uk/CodeSystem/SCR-AlertReason",
"code" : "1",
"display" : "Access made in the public interest"
} ],
"recorded" : "2020-11-13T00:00:00+00:00",
"agent" : [ {
"who" : {
"identifier" : {
"system" : "https://fhir.nhs.uk/Id/nhs-number",
"value" : "9999999998"
}
},
"requestor" : false
}, {
"who" : {
"identifier" : {
"system" : "https://fhir.nhs.uk/Id/ods-organization-code",
"value" : "T10101"
}
},
"requestor" : false
}, {
"who" : {
"identifier" : {
"system" : "https://fhir.nhs.uk/Id/sds-user-id",
"value" : "T10101"
}
},
"role" : [ {
"text" : "General Practitioner"
} ],
"requestor" : false
} ],
"source" : {
"observer" : {
"identifier" : {
"system" : "https://fhir.nhs.uk/Id/nhsSpineASID",
"value" : "227319907548"
}
}
},
"entity" : [ {
"what" : {
"identifier" : {
"value" : "1C03CF4F-D404-4D76-B192-4F81727059F6"
}
}
} ]
}
Name | Description |
---|---|
object
|
|
resourceType string
required |
Default:
AuditEvent |
id string
required |
Example:
1C03CF4F-D404-4D76-B192-4F81727059F6 |
extension array
required |
Notification message to be displayed on forwarding the Alert
|
object
|
|
url string
required |
Default:
https://fhir.nhs.uk/StructureDefinition/Extension-SCR-NotificationMessage |
valueString string
required |
Example:
Alert: Permission to view override 1C03CF4F-D404-4D76-B192-4F81727059F6 |
type object
required |
Fixed value
|
system string
required |
Default:
http://terminology.hl7.org/CodeSystem/iso-21089-lifecycle |
code string
required |
Default:
access |
display string
required |
Default:
Access/View Record Lifecycle Event |
subtype array
required |
A valueset to identify the reason a viewing alert has been triggered while viewing a Summary Care Record
Max items:
1 Min items:
1 |
object
|
|
system string
required |
Default:
https://fhir.nhs.uk/CodeSystem/SCR-AlertReason |
code string
required |
Allowed values:
0 , 1 , 2 , 3 , 4 , 5 Example:
1 |
display string
required |
Example:
Access made in the public interest |
recorded string
required |
The time when the event was recorded
Example:
2020-11-13T00:00:00+00:00 |
agent array
required |
Max items:
3 Min items:
3 |
object
|
An actor taking an active role in the event or activity that is logged.
|
who object
required |
|
identifier object
required |
|
system string
required |
Example:
https://fhir.nhs.uk/Id/sds-user-id |
value string
required |
Example:
T10101 |
role array
|
Agent role in the event
|
object
|
|
text string
required |
Example:
General Practitioner |
requestor boolean
required |
Whether user is initiator
Default:
false |
source object
required |
The system that is reporting the event.
|
observer object
required |
The identity of source detecting the event
|
identifier object
required |
|
system string
required |
Default:
https://fhir.nhs.uk/Id/nhsSpineASID |
value string
required |
Example:
227319907548 |
entity array
required |
Specific instances of data or objects that have been accessed
|
object
|
|
what object
required |
Identifies a specific instance of the entity
|
identifier object
required |
|
value string
required |
Example:
1C03CF4F-D404-4D76-B192-4F81727059F6 |
Response
HTTP status: 201
HTTP status: 400
Body
{
"resourceType" : "OperationOutcome",
"issue" : [ {
"severity" : "error",
"code" : "invalid",
"details" : {
"text" : "Invalid or missing value in field 'entity.what.identifier.value'"
}
} ]
}
Name | Description |
---|---|
object
|
Operation outcome
|
resourceType string
read-only |
FHIR Resource Type.
Default:
OperationOutcome |
issue array
|
List of issues that have occurred.
Min items:
1 |
object
|
|
severity string
required |
Severity of the error.
Allowed values:
fatal , error , warning , information Example:
error |
code string
required |
error code.
Example:
invalid |
details object
|
|
text string
|
detailed information
Example:
NHS number missing |
Get patient's Summary Care Record
Overview
Use this endpoint to retrieve the details of patient's Summary Care Record.
To get the information you must provide patient's NHS number and SCR UUID. UUID can be obtained using GET /DocumentReference endpoint.
Sandbox test scenarios
You can test the following scenarios in our sandbox environment:
Scenario | Request | Response |
---|---|---|
Happy path | composition.identifier =FA60BE64-1F34-11EB-A2A8-000C29A364EB Patient.identifier =9995000180 |
HTTP Status 200 - Full Bundle |
No results | composition.identifier =81CC2DA0-8882-11EB-B538-0800200C9A66 Patient.identifier =9693042298 |
HTTP Status 200 - Empty Bundle |
Request
Query parameters
Name | Description |
---|---|
composition.identifier |
String
The patient's NHS number. Must be preceded with FHIR identifier (eg."composition.subject:Patient.identifier=https://fhir.nhs.uk/Id/nhs-number|9995000180")
Example:
FA60BE64-1F34-11EB-A2A8-000C29A364EB$composition.subject:Patient.identifier=https://fhir.nhs.uk/Id/nhs-number|9995000180
Required
|
Headers
Name | Description |
---|---|
Authorization |
String
(^Bearer\ [[:ascii:]]+$)
An OAuth 2.0 bearer token.
Required in all environments except sandbox.
Example:
Bearer g1112R_ccQ1Ebbb4gtHBP1aaaNM
Required
|
X-Correlation-ID |
String
A globally unique identifier (GUID) for the request, which we use to trace the request if you contact our helpdesk.
Mirrored back in a response header. Avoid Example:
11C46F5F-CDEF-4865-94B2-0EE0EDCC26DA |
X-Request-ID |
String
A globally unique identifier (GUID) for the request, which we use to de-duplicate repeated requests.
Must be a universally unique identifier (UUID) (ideally version 4). If you re-send a failed request, use the same value in this header. Mirrored back in a response header. Pattern:
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/ Example:
60E0B220-8136-4CA5-AE46-1D97EF59D068 |
Response
HTTP status: 200
Body
{
"resourceType" : "Bundle",
"id" : "D5537E37-FFC6-4E7B-9BC4-336E871C0F29",
"identifier" : {
"system" : "https://tools.ietf.org/html/rfc4122",
"value" : "821533D3-3E0F-11EB-8111-F40343488B16"
},
"type" : "searchset",
"timestamp" : "2020-12-14T13:23:10+00:00",
"total" : 48,
"entry" : [ {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Composition/BF4180FD-C403-4EF7-A4AB-E07303AF5477",
"resource" : {
"resourceType" : "Composition",
"id" : "BF4180FD-C403-4EF7-A4AB-E07303AF5477",
"meta" : {
"lastUpdated" : "2020-11-17T01:00:00+00:00"
},
"identifier" : {
"system" : "https://tools.ietf.org/html/rfc4122",
"value" : "BF4180FD-C403-4EF7-A4AB-E07303AF5477"
},
"status" : "final",
"type" : {
"coding" : [ {
"system" : "http://snomed.info/sct",
"code" : "196981000000101",
"display" : "General Practice Summary"
} ]
},
"category" : [ {
"coding" : [ {
"system" : "http://snomed.info/sct",
"code" : "163171000000105",
"display" : "Care Professional Documentation"
} ]
} ],
"subject" : {
"reference" : "Patient/01F9B243-02DC-42F4-8F51-2AF2A99DA377"
},
"date" : "2020-11-17T01:00:00+00:00",
"author" : [ {
"reference" : "PractitionerRole/D29F2286-A962-4034-B7D4-32CCB3610204"
} ],
"relatesTo" : [ {
"code" : "replaces",
"targetIdentifier" : {
"value" : "D18B57ED-992E-45A2-A6AF-55200D20F48E"
}
} ],
"section" : [ {
"title" : "General Practice Summary",
"code" : {
"coding" : [ {
"code" : "Title"
} ]
},
"text" : {
"status" : "generated",
"div" : "Sourced from the patient's General Practice record. This summary may not include all the information pertinent to this patient.
Summary Created: 14-May-2020 14:31
At the time this record was created, this patient had recently registered with the GP Practice. GP Summary information may not be complete.
Created by: SMITH, Sean (Mr)
EMISWebCR1 50004, Fulford Grange, Rawdon, Leeds, West Yorkshire, LS19 7BY.
"
}
}, {
"title" : "Allergies and Adverse Reactions",
"code" : {
"coding" : [ {
"code" : "AllergiesHeader"
} ]
},
"text" : {
"status" : "generated",
"div" : "Date Description Certainty Severity Supporting Information 12-May-2020 Toxic reaction to wasp sting Problem; First
"
}
}, {
"title" : "Acute Medications (For the 12 month period 14-May-2019 to 14-May-2020)",
"code" : {
"coding" : [ {
"code" : "AcuteMedsHeader"
} ]
},
"text" : {
"status" : "generated",
"div" : "Type Date Medication Item Dosage Instructions Quantity Acute Medication Prescribed: 12-May-2020 Co-codamol 8mg/500mg effervescent tablets One To Be Taken Four Times A Day 112 tablet
"
}
}, {
"title" : "Current Repeat Medications",
"code" : {
"coding" : [ {
"code" : "RepeatMedsHeader"
} ]
},
"text" : {
"status" : "generated",
"div" : "Type Date Medication Item Dosage Instructions Quantity Repeat Medication Last Issued: 12-May-2020 Paracetamol 250mg/5ml oral suspension One 5ml Spoonful Every 4 To 6 Hours When Necessary. No More Than 4 doses in 24 Hours 40 ml
"
}
}, {
"title" : "Discontinued Repeat Medications (For the 6 month period 14-Nov-2019 to 14-May-2020)",
"code" : {
"coding" : [ {
"code" : "DiscRepeatMedsHeader"
} ]
},
"text" : {
"status" : "generated",
"div" : "Type Date Medication Item Dosage Instructions Quantity No relevant information available for this category.
"
}
}, {
"title" : "Risks to Patient",
"code" : {
"coding" : [ {
"code" : "RisksToPatientHeader"
} ]
},
"text" : {
"status" : "generated",
"div" : "Date Description Additional information 14-May-2020 Low risk category for developing complication from COVID-19 infection Problem; Review
"
}
}, {
"title" : "Diagnoses",
"code" : {
"coding" : [ {
"code" : "DiagnosesHeader"
} ]
},
"text" : {
"status" : "generated",
"div" : "Date Description Additional information 13-May-2020 COVID-19 confirmed by laboratory test Problem; First, test
"
},
"entry" : [ {
"reference" : "Condition/FCB84E15-02E5-495C-B334-D0685DCB0687"
}, {
"reference" : "Condition/0F582D97-8F89-11EA-8B2D-B741F13EFC47"
}, {
"reference" : "Condition/958E584C-25B8-4BD7-A71D-7625FDC1ACD6"
}, {
"reference" : "Condition/8CEB2867-551B-43D0-88B5-3278DA20A6B0"
}, {
"reference" : "Condition/6ECDAE6D-32AB-421C-AA8F-0B1ABA454C70"
} ]
}, {
"title" : "Problems and Issues",
"code" : {
"coding" : [ {
"code" : "ProblemsHeader"
} ]
},
"text" : {
"status" : "generated",
"div" : "Date Description Additional information 14-May-2020 2019-nCoV (novel coronavirus) detected Significant Active
"
}
}, {
"title" : "Clinical Observations and Findings",
"code" : {
"coding" : [ {
"code" : "ObservationsHeader"
} ]
},
"text" : {
"status" : "generated",
"div" : "Date Description Additional information 14-May-2020 2019-nCoV (novel coronavirus) detected Problem; New
"
}
}, {
"title" : "Treatments",
"code" : {
"coding" : [ {
"code" : "TreatmentsHeader"
} ]
},
"text" : {
"status" : "generated",
"div" : "Date Description Additional information 13-May-2020 2019-nCoV (novel coronavirus) vaccination Problem; First, Manufacturer: jh, Expiry Date: 29-May-2020, Batch Number: 2, GMS: GMS, Injection site: Left arm, test
"
}
}, {
"title" : "Investigation Results",
"code" : {
"coding" : [ {
"code" : "ResultsHeader"
} ]
},
"text" : {
"status" : "generated",
"div" : "Date Description Additional information 13-May-2020 Assessment using COVID-19 severity scale Problem; First, test
"
},
"entry" : [ {
"reference" : "Observation/F17999D2-FFE7-4CA4-8CE8-52CB45FF6F49"
}, {
"reference" : "Observation/EE608FAA-2433-4BAD-A0D5-4A10E45AB2B0"
}, {
"reference" : "Observation/0F582D97-8F89-11CA-8B2D-B741F13EFC47"
} ]
}, {
"title" : "Care Events",
"code" : {
"coding" : [ {
"code" : "EventsHeader"
} ]
},
"text" : {
"status" : "generated",
"div" : "Date Description Additional information 13-May-2020 Did not attend 2019-nCoV (novel coronavirus) vaccination Problem; First, test
"
}
}, {
"title" : "Administrative Procedures",
"code" : {
"coding" : [ {
"code" : "ProceduresHeader"
} ]
},
"text" : {
"status" : "generated",
"div" : "Date Description Additional information 14-May-2020 Household isolation note issued to patient Test
"
}
}, {
"title" : "Provision of Advice and Information to Patients and Carers",
"code" : {
"coding" : [ {
"code" : "AdviceHeader"
} ]
},
"text" : {
"status" : "generated",
"div" : "Date Description Additional information 13-May-2020 Advice given about SARS-CoV-2 (severe acute respiratory syndrome coronavirus 2) by telephone Problem; First, test
"
}
}, {
"title" : "Personal Preferences",
"code" : {
"coding" : [ {
"code" : "PreferencesHeader"
} ]
},
"text" : {
"status" : "generated",
"div" : "Date Description Additional information 13-May-2020 2019-nCoV (novel coronavirus) vaccination declined Problem; First, test
Summary Sent: 14-May-2020 14:31
"
}
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/PractitionerRole/D29F2286-A962-4034-B7D4-32CCB3610204",
"resource" : {
"resourceType" : "PractitionerRole",
"id" : "D29F2286-A962-4034-B7D4-32CCB3610204",
"identifier" : [ {
"system" : "http://fhir.nhs.net/Id/sds-role-profile-id",
"value" : "673836492727"
} ],
"practitioner" : {
"reference" : "Practitioner/EC705629-5B5D-4A5A-8692-2096C0B29D46"
}
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Practitioner/EC705629-5B5D-4A5A-8692-2096C0B29D46",
"resource" : {
"resourceType" : "Practitioner",
"id" : "EC705629-5B5D-4A5A-8692-2096C0B29D46",
"identifier" : [ {
"system" : "https://fhir.nhs.uk/Id/sds-user-id",
"value" : "676789689789"
} ],
"name" : [ {
"text" : "Dr Steve Jones"
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Condition/FCB84E15-02E5-495C-B334-D0685DCB0687",
"resource" : {
"resourceType" : "Condition",
"id" : "FCB84E15-02E5-495C-B334-D0685DCB0687",
"identifier" : [ {
"value" : "FCB84E15-02E5-495C-B334-D0685DCB0687"
} ],
"clinicalStatus" : {
"coding" : [ {
"system" : "http://hl7.org/fhir/ValueSet/condition-clinical",
"code" : "active"
} ]
},
"category" : [ {
"coding" : [ {
"system" : "http://snomed.info/sct",
"code" : "163001000000103",
"display" : "Diagnoses"
} ]
} ],
"code" : {
"coding" : [ {
"system" : "http://snomed.info/sct",
"code" : "1240751000000100",
"display" : "COVID-19"
} ]
},
"encounter" : {
"reference" : "Encounter/C8219745-04B8-4181-9654-364BB3E64247"
},
"onsetDateTime" : "2020-05-06T12:48:19+00:00"
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/PractitionerRole/B98F04AA-B24C-4736-A753-81641EDE2D05",
"resource" : {
"resourceType" : "PractitionerRole",
"id" : "B98F04AA-B24C-4736-A753-81641EDE2D05",
"identifier" : [ {
"system" : "http://fhir.nhs.net/Id/sds-role-profile-id",
"value" : "673836492727"
} ],
"practitioner" : {
"reference" : "Practitioner/443399A2-2C90-4B78-BD17-53424E3A52AB"
}
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Practitioner/443399A2-2C90-4B78-BD17-53424E3A52AB",
"resource" : {
"resourceType" : "Practitioner",
"id" : "443399A2-2C90-4B78-BD17-53424E3A52AB",
"identifier" : [ {
"system" : "https://fhir.nhs.uk/Id/sds-user-id",
"value" : "676789689789"
} ],
"name" : [ {
"text" : "Dr Steve Jones"
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Encounter/C8219745-04B8-4181-9654-364BB3E64247",
"resource" : {
"resourceType" : "Encounter",
"id" : "C8219745-04B8-4181-9654-364BB3E64247",
"status" : "finished",
"class" : {
"system" : "http://terminology.hl7.org/CodeSystem/v3-NullFlavor",
"code" : "UNK",
"display" : "Unknown"
},
"participant" : [ {
"type" : [ {
"coding" : [ {
"system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
"code" : "AUT",
"display" : "author"
} ]
} ],
"period" : {
"start" : "2020-11-17T01:00:00+00:00"
},
"individual" : {
"reference" : "PractitionerRole/B98F04AA-B24C-4736-A753-81641EDE2D05"
}
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Condition/0F582D97-8F89-11EA-8B2D-B741F13EFC47",
"resource" : {
"resourceType" : "Condition",
"id" : "0F582D97-8F89-11EA-8B2D-B741F13EFC47",
"identifier" : [ {
"value" : "0F582D97-8F89-11EA-8B2D-B741F13EFC47"
} ],
"clinicalStatus" : {
"coding" : [ {
"system" : "http://hl7.org/fhir/ValueSet/condition-clinical",
"code" : "active"
} ]
},
"category" : [ {
"coding" : [ {
"system" : "http://snomed.info/sct",
"code" : "163001000000103",
"display" : "Diagnoses"
} ]
} ],
"code" : {
"coding" : [ {
"system" : "http://snomed.info/sct",
"code" : "1300721000000109",
"display" : "COVID-19 confirmed by laboratory test"
} ]
},
"encounter" : {
"reference" : "Encounter/EAA6B250-8998-4E60-BE82-6F9BA9929569"
},
"onsetDateTime" : "2020-05-06T12:48:19+00:00",
"evidence" : [ {
"detail" : [ {
"reference" : "Observation/F17999D2-FFE7-4CA4-8CE8-52CB45FF6F49"
} ]
} ],
"note" : [ {
"text" : "Problem; First, test"
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Practitioner/80BC96D3-4C5D-47A8-98D7-CD2D763C14E9",
"resource" : {
"resourceType" : "Practitioner",
"id" : "80BC96D3-4C5D-47A8-98D7-CD2D763C14E9",
"name" : [ {
"text" : "BLOGGS Fred"
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/PractitionerRole/E8450CE2-2C49-4A09-9C74-01B23D71AEC1",
"resource" : {
"resourceType" : "PractitionerRole",
"id" : "E8450CE2-2C49-4A09-9C74-01B23D71AEC1",
"practitioner" : {
"reference" : "Practitioner/80BC96D3-4C5D-47A8-98D7-CD2D763C14E9"
},
"organization" : {
"reference" : "Organization/EC3EF53E-9272-495D-9FB3-BEF0CC92238A"
},
"code" : [ {
"coding" : [ {
"system" : "https://fhir.nhs.uk/CodeSystem/HL7v3-SDSJobRoleName",
"code" : "R0050",
"display" : "Consultant"
} ]
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Organization/EC3EF53E-9272-495D-9FB3-BEF0CC92238A",
"resource" : {
"resourceType" : "Organization",
"id" : "EC3EF53E-9272-495D-9FB3-BEF0CC92238A",
"telecom" : [ {
"system" : "phone",
"value" : "0177865579"
}, {
"system" : "phone",
"value" : "0189834144"
} ],
"address" : [ {
"text" : "ORG ADDRESS"
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Encounter/EAA6B250-8998-4E60-BE82-6F9BA9929569",
"resource" : {
"resourceType" : "Encounter",
"id" : "EAA6B250-8998-4E60-BE82-6F9BA9929569",
"status" : "finished",
"class" : {
"system" : "http://terminology.hl7.org/CodeSystem/v3-NullFlavor",
"code" : "UNK",
"display" : "Unknown"
},
"participant" : [ {
"type" : [ {
"coding" : [ {
"system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
"code" : "AUT",
"display" : "author"
} ]
} ],
"period" : {
"start" : "2020-11-18T01:00:00+00:00"
},
"individual" : {
"reference" : "PractitionerRole/E8450CE2-2C49-4A09-9C74-01B23D71AEC1"
}
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Condition/958E584C-25B8-4BD7-A71D-7625FDC1ACD6",
"resource" : {
"resourceType" : "Condition",
"id" : "958E584C-25B8-4BD7-A71D-7625FDC1ACD6",
"identifier" : [ {
"value" : "958E584C-25B8-4BD7-A71D-7625FDC1ACD6"
} ],
"clinicalStatus" : {
"coding" : [ {
"system" : "http://hl7.org/fhir/ValueSet/condition-clinical",
"code" : "active"
} ]
},
"category" : [ {
"coding" : [ {
"system" : "http://snomed.info/sct",
"code" : "163001000000103",
"display" : "Diagnoses"
} ]
} ],
"code" : {
"coding" : [ {
"system" : "http://snomed.info/sct",
"code" : "1300731000000106",
"display" : "COVID-19 confirmed using clinical diagnostic criteria"
} ]
},
"encounter" : {
"reference" : "Encounter/92BFA50F-9304-4002-997F-29512E7449C9"
},
"onsetDateTime" : "2020-05-06T12:48:19+00:00"
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Practitioner/CA85E8B0-FE6A-4FB5-AA01-7D2615BC4C99",
"resource" : {
"resourceType" : "Practitioner",
"id" : "CA85E8B0-FE6A-4FB5-AA01-7D2615BC4C99",
"name" : [ {
"text" : "William Jones"
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/PractitionerRole/2ECCB5AA-B14A-4B38-BD95-2B5FA08BCF11",
"resource" : {
"resourceType" : "PractitionerRole",
"id" : "2ECCB5AA-B14A-4B38-BD95-2B5FA08BCF11",
"practitioner" : {
"reference" : "Practitioner/CA85E8B0-FE6A-4FB5-AA01-7D2615BC4C99"
},
"organization" : {
"reference" : "Organization/FE4C3618-BBEC-421E-899B-D7175671DAA4"
},
"code" : [ {
"coding" : [ {
"system" : "https://fhir.nhs.uk/CodeSystem/HL7v3-SDSJobRoleName",
"code" : "R0010",
"display" : "Medical Director"
} ]
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Organization/FE4C3618-BBEC-421E-899B-D7175671DAA4",
"resource" : {
"resourceType" : "Organization",
"id" : "FE4C3618-BBEC-421E-899B-D7175671DAA4",
"type" : [ {
"coding" : [ {
"code" : "021"
} ]
} ],
"name" : "Good Health Hospital",
"telecom" : [ {
"system" : "phone",
"value" : "0122865579"
}, {
"system" : "pager",
"value" : "0189664144"
} ],
"address" : [ {
"text" : "ORG ADDRESS_2"
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/PractitionerRole/1A4D4C00-6F32-49C6-A743-8C49454205D7",
"resource" : {
"resourceType" : "PractitionerRole",
"id" : "1A4D4C00-6F32-49C6-A743-8C49454205D7",
"identifier" : [ {
"system" : "http://fhir.nhs.net/Id/sds-role-profile-id",
"value" : "578934433"
} ],
"practitioner" : {
"reference" : "Practitioner/85C61120-C263-403F-8400-9A287EDE3391"
}
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Practitioner/85C61120-C263-403F-8400-9A287EDE3391",
"resource" : {
"resourceType" : "Practitioner",
"id" : "85C61120-C263-403F-8400-9A287EDE3391",
"identifier" : [ {
"system" : "https://fhir.nhs.uk/Id/sds-user-id",
"value" : "9054354543"
} ],
"name" : [ {
"text" : "Anna Maria"
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Encounter/92BFA50F-9304-4002-997F-29512E7449C9",
"resource" : {
"resourceType" : "Encounter",
"id" : "92BFA50F-9304-4002-997F-29512E7449C9",
"status" : "finished",
"class" : {
"system" : "http://terminology.hl7.org/CodeSystem/v3-NullFlavor",
"code" : "UNK",
"display" : "Unknown"
},
"participant" : [ {
"type" : [ {
"coding" : [ {
"system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
"code" : "AUT",
"display" : "author"
} ]
} ],
"period" : {
"start" : "2020-12-18T01:00:00+00:00"
},
"individual" : {
"reference" : "PractitionerRole/2ECCB5AA-B14A-4B38-BD95-2B5FA08BCF11"
}
}, {
"type" : [ {
"coding" : [ {
"system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
"code" : "INF",
"display" : "informant"
} ]
} ],
"period" : {
"start" : "2016-06-30T10:33:58+00:00"
},
"individual" : {
"reference" : "PractitionerRole/1A4D4C00-6F32-49C6-A743-8C49454205D7"
}
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Condition/8CEB2867-551B-43D0-88B5-3278DA20A6B0",
"resource" : {
"resourceType" : "Condition",
"id" : "8CEB2867-551B-43D0-88B5-3278DA20A6B0",
"identifier" : [ {
"value" : "8CEB2867-551B-43D0-88B5-3278DA20A6B0"
} ],
"clinicalStatus" : {
"coding" : [ {
"system" : "http://hl7.org/fhir/ValueSet/condition-clinical",
"code" : "active"
} ]
},
"category" : [ {
"coding" : [ {
"system" : "http://snomed.info/sct",
"code" : "163001000000103",
"display" : "Diagnoses"
} ]
} ],
"code" : {
"coding" : [ {
"system" : "http://snomed.info/sct",
"code" : "1240761000000102",
"display" : "Suspected COVID-19"
} ]
},
"encounter" : {
"reference" : "Encounter/B002BD59-3091-421C-A21E-02D96936466E"
},
"onsetDateTime" : "2020-05-06T12:48:19+00:00"
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Practitioner/B9092541-D7A4-46E2-8AB8-03A5321A6B4B",
"resource" : {
"resourceType" : "Practitioner",
"id" : "B9092541-D7A4-46E2-8AB8-03A5321A6B4B",
"name" : [ {
"text" : "Stephan Spence"
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/PractitionerRole/1A2AB8C9-D422-4755-8184-F19299EB413C",
"resource" : {
"resourceType" : "PractitionerRole",
"id" : "1A2AB8C9-D422-4755-8184-F19299EB413C",
"practitioner" : {
"reference" : "Practitioner/B9092541-D7A4-46E2-8AB8-03A5321A6B4B"
},
"organization" : {
"reference" : "Organization/00BFAB52-B403-424F-8504-DC5A1BF73D5D"
},
"code" : [ {
"coding" : [ {
"system" : "https://fhir.nhs.uk/CodeSystem/HL7v3-SDSJobRoleName",
"code" : "R0020",
"display" : "Clinical Director - Medical"
} ]
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Organization/00BFAB52-B403-424F-8504-DC5A1BF73D5D",
"resource" : {
"resourceType" : "Organization",
"id" : "00BFAB52-B403-424F-8504-DC5A1BF73D5D",
"identifier" : [ {
"system" : "https://fhir.nhs.uk/Id/ods-organization-code",
"value" : "57435939053"
} ],
"name" : "Good Health Hospital 2",
"telecom" : [ {
"system" : "phone",
"value" : "0122865579"
}, {
"system" : "pager",
"value" : "0189664144"
} ],
"address" : [ {
"text" : "ORG ADDRESS_2"
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/RelatedPerson/9DDB3E34-7BDB-437C-85D2-0C275DAA5068",
"resource" : {
"resourceType" : "RelatedPerson",
"id" : "9DDB3E34-7BDB-437C-85D2-0C275DAA5068",
"patient" : {
"reference" : "Patient/01F9B243-02DC-42F4-8F51-2AF2A99DA377"
},
"relationship" : [ {
"coding" : [ {
"system" : "https://fhir.nhs.uk/STU3/ValueSet/PersonRelationshipType-1",
"code" : "01",
"display" : "Brother"
} ]
} ],
"name" : [ {
"text" : "JONES Bob"
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Encounter/B002BD59-3091-421C-A21E-02D96936466E",
"resource" : {
"resourceType" : "Encounter",
"id" : "B002BD59-3091-421C-A21E-02D96936466E",
"status" : "finished",
"class" : {
"system" : "http://terminology.hl7.org/CodeSystem/v3-NullFlavor",
"code" : "UNK",
"display" : "Unknown"
},
"participant" : [ {
"type" : [ {
"coding" : [ {
"system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
"code" : "AUT",
"display" : "author"
} ]
} ],
"period" : {
"start" : "2020-12-18T01:00:00+00:00"
},
"individual" : {
"reference" : "PractitionerRole/1A2AB8C9-D422-4755-8184-F19299EB413C"
}
}, {
"type" : [ {
"coding" : [ {
"system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
"code" : "INF",
"display" : "informant"
} ]
} ],
"period" : {
"start" : "2016-06-30T10:33:58+00:00"
},
"individual" : {
"reference" : "RelatedPerson/9DDB3E34-7BDB-437C-85D2-0C275DAA5068"
}
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Condition/6ECDAE6D-32AB-421C-AA8F-0B1ABA454C70",
"resource" : {
"resourceType" : "Condition",
"id" : "6ECDAE6D-32AB-421C-AA8F-0B1ABA454C70",
"identifier" : [ {
"value" : "6ECDAE6D-32AB-421C-AA8F-0B1ABA454C70"
} ],
"clinicalStatus" : {
"coding" : [ {
"system" : "http://hl7.org/fhir/ValueSet/condition-clinical",
"code" : "active"
} ]
},
"category" : [ {
"coding" : [ {
"system" : "http://snomed.info/sct",
"code" : "163001000000103",
"display" : "Diagnoses"
} ]
} ],
"code" : {
"coding" : [ {
"system" : "http://snomed.info/sct",
"code" : "1240761000000102",
"display" : "Suspected COVID-19"
} ]
},
"encounter" : {
"reference" : "Encounter/69593A02-6072-4E1D-AF21-B0455703ED74"
},
"onsetDateTime" : "2020-05-06T12:48:19+00:00"
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Practitioner/AF1FE510-7F26-4EB0-B387-9CCA1FEA5CA1",
"resource" : {
"resourceType" : "Practitioner",
"id" : "AF1FE510-7F26-4EB0-B387-9CCA1FEA5CA1",
"identifier" : [ {
"system" : "https://fhir.nhs.uk/Id/sds-user-id",
"value" : "8563857943834"
} ],
"name" : [ {
"text" : "Gregory House"
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/PractitionerRole/8CE425DE-D2C1-4D15-BF64-8D6E0F23BC2F",
"resource" : {
"resourceType" : "PractitionerRole",
"id" : "8CE425DE-D2C1-4D15-BF64-8D6E0F23BC2F",
"practitioner" : {
"reference" : "Practitioner/AF1FE510-7F26-4EB0-B387-9CCA1FEA5CA1"
},
"organization" : {
"reference" : "Organization/68A1EDD1-7A46-4428-AF7A-1B41D4FDE695"
},
"code" : [ {
"coding" : [ {
"system" : "https://fhir.nhs.uk/CodeSystem/HL7v3-SDSJobRoleName",
"code" : "R0080",
"display" : "Staff Grade"
} ]
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Organization/68A1EDD1-7A46-4428-AF7A-1B41D4FDE695",
"resource" : {
"resourceType" : "Organization",
"id" : "68A1EDD1-7A46-4428-AF7A-1B41D4FDE695",
"telecom" : [ {
"system" : "phone",
"value" : "0332865579"
} ],
"address" : [ {
"text" : "ORG ADDRESS_4"
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Practitioner/BD5016AA-674D-42FC-ABA2-346BFA928B1C",
"resource" : {
"resourceType" : "Practitioner",
"id" : "BD5016AA-674D-42FC-ABA2-346BFA928B1C",
"identifier" : [ {
"system" : "https://fhir.nhs.uk/Id/sds-user-id",
"value" : "564735334"
} ],
"name" : [ {
"text" : "Thomas Moore"
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/PractitionerRole/9F426548-5AE6-4290-9DD2-CBD516283F18",
"resource" : {
"resourceType" : "PractitionerRole",
"id" : "9F426548-5AE6-4290-9DD2-CBD516283F18",
"practitioner" : {
"reference" : "Practitioner/BD5016AA-674D-42FC-ABA2-346BFA928B1C"
},
"organization" : {
"reference" : "Organization/EBECEBA8-6371-417B-8EC0-2478DCEA3886"
},
"code" : [ {
"coding" : [ {
"system" : "https://fhir.nhs.uk/CodeSystem/HL7v3-SDSJobRoleName",
"code" : "R0100",
"display" : "Clinical Assistant"
} ]
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Organization/EBECEBA8-6371-417B-8EC0-2478DCEA3886",
"resource" : {
"resourceType" : "Organization",
"id" : "EBECEBA8-6371-417B-8EC0-2478DCEA3886",
"telecom" : [ {
"system" : "phone",
"value" : "573459834"
} ],
"address" : [ {
"text" : "ORG ADDRESS_4"
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Encounter/69593A02-6072-4E1D-AF21-B0455703ED74",
"resource" : {
"resourceType" : "Encounter",
"id" : "69593A02-6072-4E1D-AF21-B0455703ED74",
"status" : "finished",
"class" : {
"system" : "http://terminology.hl7.org/CodeSystem/v3-NullFlavor",
"code" : "UNK",
"display" : "Unknown"
},
"participant" : [ {
"type" : [ {
"coding" : [ {
"system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
"code" : "AUT",
"display" : "author"
} ]
} ],
"period" : {
"start" : "2020-12-18T01:00:00+00:00"
},
"individual" : {
"reference" : "PractitionerRole/8CE425DE-D2C1-4D15-BF64-8D6E0F23BC2F"
}
}, {
"type" : [ {
"coding" : [ {
"system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
"code" : "INF",
"display" : "informant"
} ]
} ],
"period" : {
"start" : "2016-06-30T10:33:58+00:00"
},
"individual" : {
"reference" : "PractitionerRole/9F426548-5AE6-4290-9DD2-CBD516283F18"
}
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/PractitionerRole/DF33E1D2-D4AB-4435-9E79-0AEAC3017F22",
"resource" : {
"resourceType" : "PractitionerRole",
"id" : "DF33E1D2-D4AB-4435-9E79-0AEAC3017F22",
"identifier" : [ {
"system" : "http://fhir.nhs.net/Id/sds-role-profile-id",
"value" : "89823498234"
} ],
"practitioner" : {
"reference" : "Practitioner/5B037394-2555-4B9B-87B3-117955219590"
}
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Practitioner/5B037394-2555-4B9B-87B3-117955219590",
"resource" : {
"resourceType" : "Practitioner",
"id" : "5B037394-2555-4B9B-87B3-117955219590",
"identifier" : [ {
"system" : "https://fhir.nhs.uk/Id/sds-user-id",
"value" : "9699575667"
} ],
"name" : [ {
"text" : "Maria Smith"
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Encounter/A171C6F3-45AB-4F8A-A458-5F0DF780D1B3",
"resource" : {
"resourceType" : "Encounter",
"id" : "A171C6F3-45AB-4F8A-A458-5F0DF780D1B3",
"status" : "finished",
"class" : {
"system" : "http://terminology.hl7.org/CodeSystem/v3-NullFlavor",
"code" : "UNK",
"display" : "Unknown"
},
"participant" : [ {
"extension" : [ {
"url" : "https://fhir.nhs.uk/StructureDefinition/Extension-SCR-ModeCode",
"valueCodeableConcept" : {
"coding" : [ {
"system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationMode",
"code" : "PHYSICAL",
"display" : "physical presence"
} ]
}
} ],
"type" : [ {
"coding" : [ {
"system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
"code" : "PRF",
"display" : "performer"
} ]
} ],
"period" : {
"start" : "2016-06-30T10:33:58+00:00"
},
"individual" : {
"reference" : "PractitionerRole/DF33E1D2-D4AB-4435-9E79-0AEAC3017F22"
}
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Observation/F17999D2-FFE7-4CA4-8CE8-52CB45FF6F49",
"resource" : {
"resourceType" : "Observation",
"id" : "F17999D2-FFE7-4CA4-8CE8-52CB45FF6F49",
"meta" : {
"profile" : [ "https://fhir.hl7.org.uk/StructureDefinition/UKCore-Observation" ]
},
"identifier" : [ {
"value" : "F17999D2-FFE7-4CA4-8CE8-52CB45FF6F49"
} ],
"status" : "final",
"category" : [ {
"coding" : [ {
"system" : "http://snomed.info/sct",
"code" : "163141000000104",
"display" : "Investigation Results"
} ]
} ],
"code" : {
"coding" : [ {
"system" : "http://snomed.info/sct",
"code" : "1240581000000104",
"display" : "SARS-CoV-2 (severe acute respiratory syndrome coronavirus 2) RNA (ribonucleic acid) detection result positive"
} ]
},
"encounter" : {
"reference" : "Encounter/A171C6F3-45AB-4F8A-A458-5F0DF780D1B3"
},
"effectivePeriod" : {
"start" : "2020-05-06T12:48:19+00:00"
}
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Device/03D1E382-8F3A-4792-BAC7-5F859B096EAD",
"resource" : {
"resourceType" : "Device",
"id" : "03D1E382-8F3A-4792-BAC7-5F859B096EAD",
"identifier" : [ {
"system" : "https://fhir.nhs.uk/Id/SDSDevice",
"value" : "930484003023"
}, {
"value" : "AAA5F1E0-6DF2-11EA-AE26-C5CB3G0B33D1"
} ],
"owner" : {
"reference" : "Organization/4E9F538F-0412-402C-BD06-50FE140845C0"
}
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Organization/4E9F538F-0412-402C-BD06-50FE140845C0",
"resource" : {
"resourceType" : "Organization",
"id" : "4E9F538F-0412-402C-BD06-50FE140845C0",
"identifier" : [ {
"system" : "https://fhir.nhs.uk/Id/ods-organization-code",
"value" : "7635043534"
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/PractitionerRole/28DBE1E2-102B-47AC-AA1D-6EAF5FBEB546",
"resource" : {
"resourceType" : "PractitionerRole",
"id" : "28DBE1E2-102B-47AC-AA1D-6EAF5FBEB546",
"organization" : {
"reference" : "Organization/4E9F538F-0412-402C-BD06-50FE140845C0"
}
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Encounter/CFBE18EF-CEBA-4735-AB4A-42456B1A1F2C",
"resource" : {
"resourceType" : "Encounter",
"id" : "CFBE18EF-CEBA-4735-AB4A-42456B1A1F2C",
"status" : "finished",
"class" : {
"system" : "http://terminology.hl7.org/CodeSystem/v3-NullFlavor",
"code" : "UNK",
"display" : "Unknown"
},
"participant" : [ {
"type" : [ {
"coding" : [ {
"system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
"code" : "AUT",
"display" : "author"
} ]
} ],
"period" : {
"start" : "2016-06-30T10:33:58+00:00"
},
"individual" : {
"reference" : "PractitionerRole/28DBE1E2-102B-47AC-AA1D-6EAF5FBEB546"
}
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Observation/EE608FAA-2433-4BAD-A0D5-4A10E45AB2B0",
"resource" : {
"resourceType" : "Observation",
"id" : "EE608FAA-2433-4BAD-A0D5-4A10E45AB2B0",
"meta" : {
"profile" : [ "https://fhir.hl7.org.uk/StructureDefinition/UKCore-Observation" ]
},
"identifier" : [ {
"value" : "EE608FAA-2433-4BAD-A0D5-4A10E45AB2B0"
} ],
"status" : "final",
"category" : [ {
"coding" : [ {
"system" : "http://snomed.info/sct",
"code" : "163141000000104",
"display" : "Investigation Results"
} ]
} ],
"code" : {
"coding" : [ {
"system" : "http://snomed.info/sct",
"code" : "1240581000000104",
"display" : "SARS-CoV-2 (severe acute respiratory syndrome coronavirus 2) RNA (ribonucleic acid) detection result positive"
} ]
},
"encounter" : {
"reference" : "Encounter/CFBE18EF-CEBA-4735-AB4A-42456B1A1F2C"
},
"effectivePeriod" : {
"start" : "2020-05-06T12:48:19+00:00"
}
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Device/C63078DF-7F40-445F-908D-8864C442AC91",
"resource" : {
"resourceType" : "Device",
"id" : "C63078DF-7F40-445F-908D-8864C442AC91",
"identifier" : [ {
"value" : "7867868687687"
}, {
"value" : "AAA5F1E0-6DF2-11EA-AE26-C5CB3F0B33D1"
} ],
"deviceName" : [ {
"name" : "Some device name",
"type" : "other"
}, {
"name" : "Mfc model name",
"type" : "manufacturer-name"
} ],
"type" : {
"coding" : [ {
"code" : "01",
"display" : "Some device"
} ]
},
"version" : [ {
"value" : "v.1.10.245-beta"
} ],
"owner" : {
"reference" : "Organization/3E39F48F-D122-4946-B7E1-B2C36D89A027"
},
"note" : [ {
"text" : "Device description"
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Organization/3E39F48F-D122-4946-B7E1-B2C36D89A027",
"resource" : {
"resourceType" : "Organization",
"id" : "3E39F48F-D122-4946-B7E1-B2C36D89A027",
"type" : [ {
"coding" : [ {
"code" : "214"
} ]
} ],
"name" : "Device owner org",
"telecom" : [ {
"system" : "phone",
"value" : "fax:01392251689"
} ],
"address" : [ {
"text" : "ADDRESS LINE 1"
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/PractitionerRole/DC41C785-56D6-45C6-94A0-3C5824E22EBE",
"resource" : {
"resourceType" : "PractitionerRole",
"id" : "DC41C785-56D6-45C6-94A0-3C5824E22EBE",
"organization" : {
"reference" : "Organization/3E39F48F-D122-4946-B7E1-B2C36D89A027"
}
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Encounter/18D17C94-3BBE-4DD5-ADDB-C67BADD37A1D",
"resource" : {
"resourceType" : "Encounter",
"id" : "18D17C94-3BBE-4DD5-ADDB-C67BADD37A1D",
"status" : "finished",
"class" : {
"system" : "http://terminology.hl7.org/CodeSystem/v3-NullFlavor",
"code" : "UNK",
"display" : "Unknown"
},
"participant" : [ {
"type" : [ {
"coding" : [ {
"system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
"code" : "AUT",
"display" : "author"
} ]
} ],
"period" : {
"start" : "2016-06-30T10:33:58+00:00"
},
"individual" : {
"reference" : "PractitionerRole/DC41C785-56D6-45C6-94A0-3C5824E22EBE"
}
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Observation/0F582D97-8F89-11CA-8B2D-B741F13EFC47",
"resource" : {
"resourceType" : "Observation",
"id" : "0F582D97-8F89-11CA-8B2D-B741F13EFC47",
"meta" : {
"profile" : [ "https://fhir.hl7.org.uk/StructureDefinition/UKCore-Observation" ]
},
"identifier" : [ {
"value" : "0F582D97-8F89-11CA-8B2D-B741F13EFC47"
} ],
"status" : "final",
"category" : [ {
"coding" : [ {
"system" : "http://snomed.info/sct",
"code" : "163141000000104",
"display" : "Investigation Results"
} ]
} ],
"code" : {
"coding" : [ {
"system" : "http://snomed.info/sct",
"code" : "1240581000000104",
"display" : "SARS-CoV-2 (severe acute respiratory syndrome coronavirus 2) RNA (ribonucleic acid) detection result positive"
} ]
},
"encounter" : {
"reference" : "Encounter/18D17C94-3BBE-4DD5-ADDB-C67BADD37A1D"
},
"effectivePeriod" : {
"start" : "2020-05-06T12:48:19+00:00"
}
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Patient/01F9B243-02DC-42F4-8F51-2AF2A99DA377",
"resource" : {
"resourceType" : "Patient",
"id" : "01F9B243-02DC-42F4-8F51-2AF2A99DA377",
"identifier" : [ {
"system" : "https://fhir.nhs.uk/Id/nhs-number",
"value" : "9995000180"
} ]
}
} ]
}
Name | Description |
---|---|
object
|
|
resourceType string
required |
Default:
Bundle |
id string
|
Example:
CE6B1A4F-51A4-4E03-AAB3-BA6113888E9F |
identifier object
required |
|
system string
|
Default:
https://tools.ietf.org/html/rfc4122 |
value string
|
Example:
10C71ECE-08F8-41D8-8A39-45D42DFC61D4 |
type string
|
type of the Bundle
Default:
searchset |
timestamp string
required |
Example:
2007-03-15T01:00:00+00:00 |
total integer
|
Total number of entries in the Bundle
Example:
58 |
entry array
required |
|
anyOf | |
object
|
|
fullUrl string
|
Example:
https://api.service.nhs.uk/summary-care-record/FHIR/R4/Composition/25FCE159-C82D-482B-8EA9-86DEF2C3929B |
resource object
|
|
resourceType string
required |
Default:
Composition |
id string
|
Example:
25FCE159-C82D-482B-8EA9-86DEF2C3929B |
meta object
required |
|
lastUpdated string
required |
Example:
2020-11-17T01:00:00+00:00 |
identifier object
required |
|
system string
required |
Default:
https://tools.ietf.org/html/rfc4122 |
value string
required |
Example:
C058D90F-E526-4A27-A46E-E86229096AAC |
status string
required |
Default:
final |
type object
required |
Kind of composition
|
coding array
required |
Max items:
1 Min items:
1 |
object
|
|
system string
required |
Default:
http://snomed.info/sct |
code string
required |
Default:
196981000000101 |
display string
required |
Default:
General Practice Summary |
category array
required |
|
object
|
|
coding array
required |
|
object
|
|
system string
required |
Default:
http://snomed.info/sct |
code string
required |
Default:
163171000000105 |
display string
required |
Default:
Care Professional Documentation |
subject object
required |
Who and/or what the composition is about
|
reference string
required |
Example:
Patient/B61AF2BD-0FFD-49CC-8374-C70DAFF8878F |
date string
required |
Example:
2007-03-15T01:00:00+00:00 |
author array
|
Min items:
1 |
object
|
Who and/or what authored the composition
|
reference string
required |
Example:
PractitionerRole/33661E10-AA36-491A-AFFE-5C10C0BF9304 |
display string
|
Example:
Dr Steve Jones |
title string
required |
Human Readable name/title
Example:
General Practice Summary |
relatesTo array
|
|
object
|
|
code string
|
Example:
replaces |
targetIdentifier object
|
|
value string
|
Example:
D18B57ED-992E-45A2-A6AF-55200D20F48E |
section array
|
|
object
|
|
title string
|
Example:
Allergies and Adverse Reactions |
text object
|
|
status string
|
Example:
generated |
div string
|
Example:
<div xmlns="http://www.w3.org/1999/xhtml">
<table summary="This table includes information about this patient's allergies and adverse reactions." id="Allergies">
<thead>
<tr>
<th>Date</th>
<th>Description</th>
<th>Certainty</th>
<th>Severity</th>
<th>Supporting Information</th>
</tr>
</thead>
<tbody>
<tr class="oddRow">
<td>12-May-2020</td>
<td>Toxic reaction to wasp sting</td>
<td/>
<td/>
<td>Problem; First</td>
</tr>
</tbody>
</table>
</div> |
object
|
|
fullUrl string
|
UUID identifying resource within a bundle
Example:
https://api.service.nhs.uk/summary-care-record/FHIR/R4/Patient/453863C3-C679-4D84-9E01-1B1D0239AC5F |
resource object
|
|
resourceType string
required |
Default:
Patient |
id string
|
Example:
453863C3-C679-4D84-9E01-1B1D0239AC5F |
identifier array
required |
|
object
|
|
extension array
required |
Max items:
1 Min items:
1 |
object
|
|
url string
required |
Example:
https://fhir.hl7.org.uk/STU3/StructureDefinition/Extension-CareConnect-NHSNumberVerificationStatus-1 |
valueCodeableConcept object
required |
|
coding array
required |
Max items:
1 Min items:
1 |
object
|
|
system string
required |
Example:
https://fhir.hl7.org.uk/STU3/CodeSystem/CareConnect-NHSNumberVerificationStatus-1 |
code string
required |
Example:
01 |
display string
required |
Example:
Number present and verified |
system string
required |
Default:
https://fhir.nhs.uk/Id/nhs-number |
value string
required |
Example:
9900004948 |
object
|
|
fullUrl string
|
Example:
https://api.service.nhs.uk/summary-care-record/FHIR/R4/Practitioner/F4D5093D-351E-4C6E-819E-DCCBC4B9A7FD |
resource object
|
|
resourceType string
required |
Default:
Practitioner |
id string
|
Example:
F4D5093D-351E-4C6E-819E-DCCBC4B9A7FD |
identifier array
|
There should be one identifier if user is a SDS USer
|
object
|
|
system string
required |
Should be fixed to https://fhir.nhs.uk/Id/sds-user-id when user is a SDS user
Default:
https://fhir.nhs.uk/Id/sds-user-id |
value string
required |
Filed mandatory when user is a SDS User
Example:
676789689789 |
name array
|
|
object
|
|
text string
|
Example:
Mr. John Smith |
object
|
|
fullUrl string
|
Example:
https://api.service.nhs.uk/summary-care-record/FHIR/R4/PractitionerRole/FE7B9F77-3BC9-4D99-84DC-292D0762183C |
resource object
|
|
resourceType string
required |
Note: Either identifier with http://fhir.nhs.net/Id/sds-role-profile-id system is required or code with https://fhir.nhs.uk/CodeSystem/HL7v3-SDSJobRoleName
Default:
PractitionerRole |
id string
|
Example:
FE7B9F77-3BC9-4D99-84DC-292D0762183C |
identifier array
required |
|
object
|
|
system string
required |
Default:
http://fhir.nhs.net/Id/sds-role-profile-id |
value string
required |
Example:
673836492727 |
practitioner object
|
|
reference string
|
Example:
Practitioner/F4D5093D-351E-4C6E-819E-DCCBC4B9A7FD |
code array
|
|
object
|
|
coding array
|
|
object
|
|
system string
|
Example:
https://fhir.nhs.uk/CodeSystem/HL7v3-SDSJobRoleName |
code string
|
Example:
R0070 |
display string
|
Example:
Associate Specialist |
object
|
|
fullUrl string
|
Example:
https://api.service.nhs.uk/summary-care-record/FHIR/R4/Condition/ADB4683E-BE01-4B08-AE36-079837BFF19E |
resource object
|
|
resourceType string
required |
Default:
Condition |
id string
|
Example:
ADB4683E-BE01-4B08-AE36-079837BFF19E |
meta array
|
|
object
|
|
profile string
|
Default:
https://fhir.hl7.org.uk/StructureDefinition/UKCore-Condition |
identifier array
required |
Max items:
1 Min items:
1 |
object
|
|
value string
required |
Example:
0F582D97-8F89-11EA-8B2D-B741F13EFC47 |
clinicalStatus array
|
Max items:
1 |
object
|
|
coding array
|
Max items:
1 Min items:
1 |
object
|
|
system string
required |
Default:
http://terminology.hl7.org/CodeSystem/condition-clinical |
code string
required |
Example:
active |
display string
|
Example:
Active |
verificationStatus array
|
Max items:
1 |
object
|
|
coding array
|
Max items:
1 Min items:
1 |
object
|
|
system string
required |
Default:
http://hl7.org/fhir/ValueSet/condition-ver-status |
code string
required |
Example:
confirmed |
display string
|
Example:
Confirmed |
category array
required |
Max items:
1 Min items:
1 |
object
|
|
coding object
required |
|
system string
required |
Default:
http://snomed.info/sct |
code string
required |
Example:
163001000000103 |
display string
required |
Example:
Diagnoses |
code object
required |
|
coding array
required |
Max items:
1 Min items:
1 |
object
|
|
system string
required |
Example:
http://snomed.info/sct |
code string
required |
Example:
1240631000000102 |
display string
required |
Example:
Did not attend SARS-CoV-2 (severe acute respiratory syndrome coronavirus 2) vaccination |
onsetDateTime string
|
Example:
2020-05-06T10:48:19+00:00 |
evidence array
|
Supporting evidence - should link Observation resource
Min items:
1 |
object
|
|
detail array
required |
|
object
|
|
reference string
required |
Reference to related Observation resource
Example:
Observation/F17999D2-FFE7-4CA4-8CE8-52CB45FF6F49 |
note array
|
Additional information about the Condition
Max items:
1 Min items:
1 |
object
|
|
text string
required |
|
object
|
|
fullUrl string
|
Example:
https://api.service.nhs.uk/summary-care-record/FHIR/R4/Encounter/6E1B91CC-C25A-4466-94A6-DFDE260C12AB |
resource object
|
|
resourceType string
|
Default:
Encounter |
id string
|
Example:
6E1B91CC-C25A-4466-94A6-DFDE260C12AB |
status string
|
Default:
finished |
class object
|
|
system string
|
Default:
http://terminology.hl7.org/CodeSystem/v3-NullFlavor |
code string
|
Default:
UNK |
display string
|
Default:
Unknown |
participant array
|
|
object
|
|
type array
required |
Max items:
1 Min items:
1 |
object
|
|
coding array
|
Max items:
1 Min items:
1 |
object
|
|
system string
required |
Default:
http://terminology.hl7.org/CodeSystem/v3-ParticipationType |
code string
required |
Allowed values:
AUT , PRF , INF Example:
AUT |
display string
|
Example:
author |
period object
required |
|
start string
required |
Example:
2020-11-17T01:00:00+00:00 |
individual object
required |
|
reference string
required |
Example:
PractitionerRole/1CB6874C-67C4-4A3B-BE24-3D574382D464 |
object
|
|
fullUrl string
|
Example:
https://api.service.nhs.uk/summary-care-record/FHIR/R4/Organization/FD3F2E98-511F-4A3E-AD84-127DAEC1645E |
resource object
|
|
resourceType string
required |
Default:
Organization |
id string
|
Example:
FD3F2E98-511F-4A3E-AD84-127DAEC1645E |
identifier array
|
Organization identifier. Mandatory for SDS organizations.
|
object
|
|
use string
|
Example:
official |
system string
|
Default:
https://fhir.nhs.uk/Id/ods-organization-code |
value string
|
Example:
RR8 |
type array
|
|
object
|
|
coding array
|
|
object
|
|
code string
|
Example:
021 |
name string
|
Example:
LEEDS TEACHING HOSPITAL TRUST |
telecom array
|
|
object
|
|
system string
|
Example:
phone |
value string
|
Example:
0113 243 3144 |
address array
|
|
object
|
|
text string
|
|
object
|
|
fullUrl string
|
Example:
https://api.service.nhs.uk/summary-care-record/FHIR/R4/RelatedPerson/086DE219-FEDF-41D4-BA5D-55EE3B1CAE9F |
resource object
|
|
resourceType string
required |
Default:
RelatedPerson |
id string
|
Example:
086DE219-FEDF-41D4-BA5D-55EE3B1CAE9F |
relationship array
required |
Max items:
1 Min items:
1 |
object
|
|
coding array
required |
Max items:
1 Min items:
1 |
object
|
|
system string
required |
Default:
https://fhir.nhs.uk/STU3/ValueSet/PersonRelationshipType-1 |
code string
required |
Example:
01 |
display string
required |
Example:
Brother |
name array
required |
|
object
|
|
text string
|
Example:
Mr. John Smith |
object
|
|
fullUrl string
|
Example:
https://api.service.nhs.uk/summary-care-record/FHIR/R4/Observation/02778CD7-E78E-4BF5-9B05-1C634275DB91 |
resource object
|
|
resourceType string
required |
Default:
Observation |
id string
|
Example:
02778CD7-E78E-4BF5-9B05-1C634275DB91 |
meta array
|
Max items:
1 Min items:
1 |
object
|
|
profile string
|
Default:
https://fhir.hl7.org.uk/StructureDefinition/UKCore-Observation |
identifier array
required |
Max items:
1 Min items:
1 |
object
|
|
value string
required |
Example:
0F582D97-8F89-11EA-8B2D-B741F13EFC47 |
status string
required |
Allowed values:
final , entered-in-error Example:
final |
category array
required |
Max items:
1 Min items:
1 |
object
|
|
coding object
required |
|
system string
required |
Default:
http://snomed.info/sct |
code string
required |
Example:
163001000000104 |
display string
|
Example:
Investigation Results |
code object
required |
|
coding array
required |
|
object
|
|
system string
required |
Example:
http://snomed.info/sct |
code string
required |
Example:
1240631000000102 |
display string
required |
Example:
Did not attend SARS-CoV-2 (severe acute respiratory syndrome coronavirus 2) vaccination |
effectivePeriod object
|
|
start string
|
Example:
2020-05-06T10:48:19+00:00 |
end string
|
Example:
2020-05-26T11:56:18+00:00 |
object
|
|
fullUrl string
|
Example:
https://api.service.nhs.uk/summary-care-record/FHIR/R4/Device/C5F6616C-AA6F-4A8C-85FF-0183C3D15D37 |
resource object
|
|
resourceType string
required |
Default:
Device |
id string
|
Example:
C5F6616C-AA6F-4A8C-85FF-0183C3D15D37 |
identifier array
|
Min items:
1 |
object
|
|
system string
|
Example:
https://fhir.nhs.uk/Id/SDSDevice |
value string
required |
Example:
7867868687687 |
deviceName array
|
The name of the device as given by the manufacturer
|
object
|
|
name string
|
Example:
other |
type string
|
Example:
manufacturer-name |
type object
|
The kind or type of device. Field is mandatory when device is NOT a SDS Device.
|
coding array
required |
|
object
|
|
code string
required |
Example:
707728009 |
display string
required |
Example:
Device system |
version object
|
The actual design of the device or software version running on the device
|
value string
|
Example:
1.0.0 |
owner object
|
Organization responsible for device
|
reference string
|
Example:
Organization/2FF8C5EC-E517-421A-B4A4-D7EAAA1EFE12 |
note array
|
|
object
|
|
text string
|
Example:
Additional information |
HTTP status: 400
Body
{
"resourceType" : "OperationOutcome",
"issue" : [ {
"severity" : "error",
"code" : "invalid",
"details" : {
"text" : "NHS number missing"
}
} ]
}
Name | Description |
---|---|
object
|
Operation outcome
|
resourceType string
read-only |
FHIR Resource Type.
Default:
OperationOutcome |
issue array
|
List of issues that have occurred.
Min items:
1 |
object
|
|
severity string
required |
Severity of the error.
Allowed values:
fatal , error , warning , information Example:
error |
code string
required |
error code.
Example:
invalid |
details object
|
|
text string
|
detailed information
Example:
NHS number missing |
Get patient's latest Summary Care Record identifier
Overview
Use this endpoint to retrieve UUID of patient's latest record. This UUID can be then used to retrieve the Summary Care Record details.
To get the information you must provide patient's NHS number.
Sandbox test scenarios
You can test the following scenarios in our sandbox environment:
Scenario | Request | Response |
---|---|---|
Happy path | nhs-number=9995000180 |
HTTP Status 200 - Full Bundle |
Empty result | nhs-number=9693042298 |
HTTP Status 200 - Empty Bundle |
Request
Query parameters
Name | Description |
---|---|
patient |
String
The patient's NHS number. Must be preceded with FHIR identifier (eg."patient=https://fhir.nhs.uk/Id/nhs-number|9995000180")
Example:
https://fhir.nhs.uk/Id/nhs-number|9995000180
Required
|
type |
String
General Practice Summary snomed code. Must be equal "type=http://snomed.info/sct|196981000000101"
Example:
http://snomed.info/sct|196981000000101 |
_sort |
String
Defines how Patient's SCR list should be sorted in order to retrieve the latest one. The only supported value is _sort=date. If a different value is provided HTTP 400 Bad Request will be returned.
Example:
date |
_count |
Integer
Defines the number of latest patient SCR IDs that sgould be retrieved. Currently the only supported value is _count=1. If a different value is provided HTTP 400 Bad Request will be returned.
Example:
1 |
Headers
Name | Description |
---|---|
Authorization |
String
(^Bearer\ [[:ascii:]]+$)
An OAuth 2.0 bearer token.
Required in all environments except sandbox.
Example:
Bearer g1112R_ccQ1Ebbb4gtHBP1aaaNM
Required
|
X-Correlation-ID |
String
A globally unique identifier (GUID) for the request, which we use to trace the request if you contact our helpdesk.
Mirrored back in a response header. Avoid Example:
11C46F5F-CDEF-4865-94B2-0EE0EDCC26DA |
X-Request-ID |
String
A globally unique identifier (GUID) for the request, which we use to de-duplicate repeated requests.
Must be a universally unique identifier (UUID) (ideally version 4). If you re-send a failed request, use the same value in this header. Mirrored back in a response header. Pattern:
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/ Example:
60E0B220-8136-4CA5-AE46-1D97EF59D068 |
NHSD-Session-URID |
String
The user role ID (URID) for the current session. Also known as a user role profile ID (URPID).
For more details, see determine the user’s role. Pattern:
/^[0-9]+$/ Example:
555021935107
Required
|
Response
HTTP status: 200
Body
{
"resourceType" : "Bundle",
"id" : "55f8ba57-761a-406e-b61d-423027830fef",
"type" : "searchset",
"total" : 1,
"entry" : [ {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/DocumentReference/6d334ca8-a6e1-4bae-93b1-19a14a36ea7a",
"resource" : {
"resourceType" : "DocumentReference",
"id" : "6d334ca8-a6e1-4bae-93b1-19a14a36ea7a",
"masterIdentifier" : {
"system" : "https://fhir.nhs.uk/Id/nhsSCRUUID",
"value" : "FA60BE64-1F34-11EB-A2A8-000C29A364EB"
},
"status" : "current",
"type" : {
"coding" : [ {
"system" : "http://snomed.info/sct",
"code" : "196981000000101",
"display" : "General Practice Summary"
} ]
},
"subject" : {
"reference" : "Patient/9b9a16ed-3cd0-45b2-ab1f-e625dd0251c1"
},
"securityLabel" : [ {
"coding" : [ {
"system" : "https://fhir.nhs.uk/CodeSystem/SCR-ACSPermission",
"code" : true
} ]
} ],
"content" : [ {
"attachment" : {
"url" : "https://api.service.nhs.uk/summary-care-record/Bundle?composition.identifier=FA60BE64-1F34-11EB-A2A8-000C29A364EB$composition.subject:Patient.identifier=https://fhir.nhs.uk/Id/nhs-number|9995000180"
}
} ],
"context" : {
"event" : [ {
"coding" : [ {
"system" : "http://snomed.info/sct",
"code" : "196981000000101",
"display" : "General Practice Summary"
} ]
} ]
}
},
"search" : {
"mode" : "match"
}
}, {
"fullUrl" : "9b9a16ed-3cd0-45b2-ab1f-e625dd0251c1",
"resource" : {
"resourceType" : "Patient",
"id" : "9b9a16ed-3cd0-45b2-ab1f-e625dd0251c1",
"identifier" : [ {
"system" : "https://fhir.nhs.uk/Id/nhs-number",
"value" : "9995000180"
} ]
}
} ]
}
Name | Description |
---|---|
object
|
|
resourceType string
required |
Default:
Bundle |
id string
required |
UUID identifying the Bundle
Example:
92A00AC6-4C89-46A1-867D-2C448AC3809E |
type string
required |
Type of the bundle
Default:
searchset |
total integer
required |
Number of results found
Example:
1 |
entry array
|
|
anyOf | |
object
|
|
fullUrl string
required |
Absolute resource URL address
Example:
https://api.service.nhs.uk/summary-care-record/FHIR/R4/DocumentReference/D0AD7E01-5FAF-443C-B0D4-D4F6E37B65C3 |
resource object
required |
A resource in the bundle. A reference to a document
|
resourceType string
required |
Default:
DocumentReference |
id string
required |
Example:
D0AD7E01-5FAF-443C-B0D4-D4F6E37B65C3 |
masterIdentifier object
required |
Master Version Specific Identifier
|
system string
required |
Default:
https://fhir.nhs.uk/Id/nhsSCRUUID |
value string
required |
Summary Care Record UUID
Example:
C058D90F-E526-4A27-A46E-E86229096AAC |
status string
required |
Default:
current |
type object
required |
Fixed value describing kind of document
|
coding array
|
Max items:
1 Min items:
1 |
object
|
|
system string
required |
Default:
http://snomed.info/sct |
code string
required |
Default:
196981000000101 |
display string
required |
Default:
General Practice Summary |
subject object
required |
Subject of the document
|
reference string
required |
Example:
Patient/9b9a16ed-3cd0-45b2-ab1f-e625dd0251c1 |
securityLabel array
required |
Information about patient's consent to View SCR
Max items:
1 Min items:
1 |
object
|
|
coding object
|
|
system string
required |
Default:
https://fhir.nhs.uk/CodeSystem/SCR-ACSPermission |
code string
required |
The following values are allowed: Yes, No, Ask
Example:
Ask |
content array
required |
Document referenced
Max items:
1 Min items:
1 |
object
|
|
attachment object
required |
|
url string
required |
Example:
https://api.service.nhs.uk/summary-care-record/FHIR/R4/Bundle?composition.identifier=C058D90F-E526-4A27-A46E-E86229096AAC$composition.subject:Patient.identifier=https://fhir.nhs.uk/Id/nhs-number|9990001234 |
context object
required |
Context of the document content
|
event array
|
Max items:
1 Min items:
1 |
object
|
|
coding array
|
Max items:
1 Min items:
1 |
object
|
|
system string
required |
Default:
http://snomed.info/sct |
code string
required |
Default:
196981000000101 |
display string
required |
Default:
General Practice Summary |
search object
required |
|
mode string
required |
Default:
match |
object
|
|
fullUrl string
|
UUID identifying resource within a bundle
Example:
https://api.service.nhs.uk/summary-care-record/FHIR/R4/Patient/3346650E-BECA-4C00-BF07-18E27CE69114 |
resource object
|
|
resourceType string
required |
Default:
Patient |
id string
|
Example:
3346650E-BECA-4C00-BF07-18E27CE69114 |
identifier array
required |
Max items:
1 Min items:
1 |
object
|
|
system string
required |
Default:
https://fhir.nhs.uk/Id/nhs-number |
value string
required |
NHS number
Example:
9990001234 |
Upload patient's Summary Care Record
Overview
Use this endpoint to upload the details of patient's Summary Care Record.
Sandbox test scenarios
You can test the following scenarios in our sandbox environment:
Scenario | Request | Response |
---|---|---|
Happy path | Patient.identifier.value =9995000180 |
HTTP Status 201 |
No patient's consent to store SCR | Patient.identifier.value =9693042298 |
HTTP Status 403 |
Request
Headers
Name | Description |
---|---|
Authorization |
String
(^Bearer\ [[:ascii:]]+$)
An OAuth 2.0 bearer token.
Required in all environments except sandbox.
Example:
Bearer g1112R_ccQ1Ebbb4gtHBP1aaaNM
Required
|
X-Correlation-ID |
String
A globally unique identifier (GUID) for the request, which we use to trace the request if you contact our helpdesk.
Mirrored back in a response header. Avoid Example:
11C46F5F-CDEF-4865-94B2-0EE0EDCC26DA |
X-Request-ID |
String
A globally unique identifier (GUID) for the request, which we use to de-duplicate repeated requests.
Must be a universally unique identifier (UUID) (ideally version 4). If you re-send a failed request, use the same value in this header. Mirrored back in a response header. Pattern:
/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/ Example:
60E0B220-8136-4CA5-AE46-1D97EF59D068 |
NHSD-Session-URID |
String
The user role ID (URID) for the current session. Also known as a user role profile ID (URPID).
For more details, see determine the user’s role. Pattern:
/^[0-9]+$/ Example:
555021935107
Required
|
Body
{
"resourceType" : "Bundle",
"id" : "28E24A01-5D33-4173-B5CE-82C004948815",
"identifier" : {
"system" : "https://tools.ietf.org/html/rfc4122",
"value" : "821533D3-3E0F-11EB-8111-F40343488B16"
},
"type" : "document",
"timestamp" : "2020-12-14T13:23:10+00:00",
"entry" : [ {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Composition/BF4180FD-C403-4EF7-A4AB-E07303AF5477",
"resource" : {
"resourceType" : "Composition",
"id" : "BF4180FD-C403-4EF7-A4AB-E07303AF5477",
"meta" : {
"lastUpdated" : "2020-11-17T01:00:00+00:00"
},
"identifier" : {
"system" : "https://tools.ietf.org/html/rfc4122",
"value" : "BF4180FD-C403-4EF7-A4AB-E07303AF5477"
},
"status" : "final",
"type" : {
"coding" : [ {
"system" : "http://snomed.info/sct",
"code" : "196981000000101",
"display" : "General Practice Summary"
} ]
},
"category" : [ {
"coding" : [ {
"system" : "http://snomed.info/sct",
"code" : "163171000000105",
"display" : "Care Professional Documentation"
} ]
} ],
"subject" : {
"reference" : "Patient/565B3BEF-9A19-4763-8887-9F7CB75995E3"
},
"date" : "2020-11-17T01:00:00+00:00",
"author" : [ {
"reference" : "PractitionerRole/C89A53D3-E063-4023-B89C-1A105ABAABB7"
} ],
"relatesTo" : [ {
"code" : "replaces",
"targetIdentifier" : {
"value" : "D18B57ED-992E-45A2-A6AF-55200D20F48E"
}
} ],
"section" : [ {
"title" : "General Practice Summary",
"code" : {
"coding" : [ {
"code" : "Title"
} ]
},
"text" : {
"status" : "generated",
"div" : "\n Sourced from the patient's General Practice record. This summary may not include all the information pertinent to this patient.
\n Summary Created: 14-May-2020 14:31
\n At the time this record was created, this patient had recently registered with the GP Practice. GP Summary information may not be complete.
\n Created by: SMITH, Sean (Mr)
\n EMISWebCR1 50004, Fulford Grange, Rawdon, Leeds, West Yorkshire, LS19 7BY.
\n"
}
}, {
"title" : "Allergies and Adverse Reactions",
"code" : {
"coding" : [ {
"code" : "AllergiesHeader"
} ]
},
"text" : {
"status" : "generated",
"div" : "\n \n \n \n Date \n Description \n Certainty \n Severity \n Supporting Information \n \n \n \n \n 12-May-2020 \n Toxic reaction to wasp sting \n \n \n Problem; First \n \n \n
\n"
}
}, {
"title" : "Acute Medications (For the 12 month period 14-May-2019 to 14-May-2020)",
"code" : {
"coding" : [ {
"code" : "AcuteMedsHeader"
} ]
},
"text" : {
"status" : "generated",
"div" : "\n \n \n \n Type \n Date \n Medication Item \n Dosage Instructions \n Quantity \n \n \n \n \n Acute Medication \n Prescribed: 12-May-2020 \n Co-codamol 8mg/500mg effervescent tablets \n One To Be Taken Four Times A Day \n 112 tablet \n \n \n
\n"
}
}, {
"title" : "Current Repeat Medications",
"code" : {
"coding" : [ {
"code" : "RepeatMedsHeader"
} ]
},
"text" : {
"status" : "generated",
"div" : "\n \n \n \n Type \n Date \n Medication Item \n Dosage Instructions \n Quantity \n \n \n \n \n Repeat Medication \n Last Issued: 12-May-2020 \n Paracetamol 250mg/5ml oral suspension \n One 5ml Spoonful Every 4 To 6 Hours When Necessary. No More Than 4 doses in 24 Hours \n 40 ml \n \n \n
\n"
}
}, {
"title" : "Discontinued Repeat Medications (For the 6 month period 14-Nov-2019 to 14-May-2020)",
"code" : {
"coding" : [ {
"code" : "DiscRepeatMedsHeader"
} ]
},
"text" : {
"status" : "generated",
"div" : "\n \n \n \n Type \n Date \n Medication Item \n Dosage Instructions \n Quantity \n \n \n \n \n No relevant information available for this category. \n \n \n
\n"
}
}, {
"title" : "Risks to Patient",
"code" : {
"coding" : [ {
"code" : "RisksToPatientHeader"
} ]
},
"text" : {
"status" : "generated",
"div" : "\n \n \n \n Date \n Description \n Additional information \n \n \n \n \n 14-May-2020 \n Low risk category for developing complication from COVID-19 infection \n Problem; Review \n \n \n
\n"
}
}, {
"title" : "Diagnoses",
"code" : {
"coding" : [ {
"code" : "DiagnosesHeader"
} ]
},
"text" : {
"status" : "generated",
"div" : "\n \n \n \n Date \n Description \n Additional information \n \n \n \n \n 13-May-2020 \n COVID-19 confirmed by laboratory test \n Problem; First, test \n \n \n
\n"
},
"entry" : [ {
"reference" : "Condition/FCB84E15-02E5-495C-B334-D0685DCB0687"
}, {
"reference" : "Condition/0F582D97-8F89-11EA-8B2D-B741F13EFC47"
}, {
"reference" : "Condition/958E584C-25B8-4BD7-A71D-7625FDC1ACD6"
}, {
"reference" : "Condition/8CEB2867-551B-43D0-88B5-3278DA20A6B0"
}, {
"reference" : "Condition/6ECDAE6D-32AB-421C-AA8F-0B1ABA454C70"
} ]
}, {
"title" : "Problems and Issues",
"code" : {
"coding" : [ {
"code" : "ProblemsHeader"
} ]
},
"text" : {
"status" : "generated",
"div" : "\n \n \n \n Date \n Description \n Additional information \n \n \n \n \n 14-May-2020 \n 2019-nCoV (novel coronavirus) detected \n Significant Active \n \n \n
\n"
}
}, {
"title" : "Clinical Observations and Findings",
"code" : {
"coding" : [ {
"code" : "ObservationsHeader"
} ]
},
"text" : {
"status" : "generated",
"div" : "\n \n \n \n Date \n Description \n Additional information \n \n \n \n \n 14-May-2020 \n 2019-nCoV (novel coronavirus) detected \n Problem; New \n \n \n
\n"
}
}, {
"title" : "Treatments",
"code" : {
"coding" : [ {
"code" : "TreatmentsHeader"
} ]
},
"text" : {
"status" : "generated",
"div" : "\n \n \n \n Date \n Description \n Additional information \n \n \n \n \n 13-May-2020 \n 2019-nCoV (novel coronavirus) vaccination \n Problem; First, Manufacturer: jh, Expiry Date: 29-May-2020, Batch Number: 2, GMS: GMS, Injection site: Left arm, test \n \n \n
\n"
}
}, {
"title" : "Investigation Results",
"code" : {
"coding" : [ {
"code" : "ResultsHeader"
} ]
},
"text" : {
"status" : "generated",
"div" : "\n \n \n \n Date \n Description \n Additional information \n \n \n \n \n 13-May-2020 \n Assessment using COVID-19 severity scale \n Problem; First, test \n \n \n
\n"
},
"entry" : [ {
"reference" : "Observation/F17999D2-FFE7-4CA4-8CE8-52CB45FF6F49"
}, {
"reference" : "Observation/EE608FAA-2433-4BAD-A0D5-4A10E45AB2B0"
}, {
"reference" : "Observation/0F582D97-8F89-11CA-8B2D-B741F13EFC47"
} ]
}, {
"title" : "Care Events",
"code" : {
"coding" : [ {
"code" : "EventsHeader"
} ]
},
"text" : {
"status" : "generated",
"div" : "\n \n \n \n Date \n Description \n Additional information \n \n \n \n \n 13-May-2020 \n Did not attend 2019-nCoV (novel coronavirus) vaccination \n Problem; First, test \n \n \n
\n"
}
}, {
"title" : "Administrative Procedures",
"code" : {
"coding" : [ {
"code" : "ProceduresHeader"
} ]
},
"text" : {
"status" : "generated",
"div" : "\n \n \n \n Date \n Description \n Additional information \n \n \n \n \n 14-May-2020 \n Household isolation note issued to patient \n Test \n \n \n
\n"
}
}, {
"title" : "Provision of Advice and Information to Patients and Carers",
"code" : {
"coding" : [ {
"code" : "AdviceHeader"
} ]
},
"text" : {
"status" : "generated",
"div" : "\n \n \n \n Date \n Description \n Additional information \n \n \n \n \n 13-May-2020 \n Advice given about SARS-CoV-2 (severe acute respiratory syndrome coronavirus 2) by telephone \n Problem; First, test \n \n \n
\n"
}
}, {
"title" : "Personal Preferences",
"code" : {
"coding" : [ {
"code" : "PreferencesHeader"
} ]
},
"text" : {
"status" : "generated",
"div" : "\n \n \n \n Date \n Description \n Additional information \n \n \n \n \n 13-May-2020 \n 2019-nCoV (novel coronavirus) vaccination declined \n Problem; First, test \n \n \n
\n Summary Sent: 14-May-2020 14:31
\n"
}
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/PractitionerRole/C89A53D3-E063-4023-B89C-1A105ABAABB7",
"resource" : {
"resourceType" : "PractitionerRole",
"id" : "C89A53D3-E063-4023-B89C-1A105ABAABB7",
"identifier" : [ {
"system" : "http://fhir.nhs.net/Id/sds-role-profile-id",
"value" : "673836492727"
} ],
"practitioner" : {
"reference" : "Practitioner/7EB18277-C51A-4AEA-9D93-0B12BB0E140D"
}
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Practitioner/7EB18277-C51A-4AEA-9D93-0B12BB0E140D",
"resource" : {
"resourceType" : "Practitioner",
"id" : "7EB18277-C51A-4AEA-9D93-0B12BB0E140D",
"identifier" : [ {
"system" : "https://fhir.nhs.uk/Id/sds-user-id",
"value" : "676789689789"
} ],
"name" : [ {
"text" : "Dr Steve Jones"
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Condition/FCB84E15-02E5-495C-B334-D0685DCB0687",
"resource" : {
"resourceType" : "Condition",
"id" : "FCB84E15-02E5-495C-B334-D0685DCB0687",
"identifier" : [ {
"value" : "FCB84E15-02E5-495C-B334-D0685DCB0687"
} ],
"clinicalStatus" : {
"coding" : [ {
"system" : "http://hl7.org/fhir/ValueSet/condition-clinical",
"code" : "active"
} ]
},
"category" : [ {
"coding" : [ {
"system" : "http://snomed.info/sct",
"code" : "163001000000103",
"display" : "Diagnoses"
} ]
} ],
"code" : {
"coding" : [ {
"system" : "http://snomed.info/sct",
"code" : "1240751000000100",
"display" : "COVID-19"
} ]
},
"encounter" : {
"reference" : "Encounter/DE2F2DAB-5BB1-480C-AA67-A2A68D06620D"
},
"onsetDateTime" : "2020-05-06T12:48:19+00:00"
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/PractitionerRole/29325FBB-AA13-4645-BAE4-314AD6D21083",
"resource" : {
"resourceType" : "PractitionerRole",
"id" : "29325FBB-AA13-4645-BAE4-314AD6D21083",
"identifier" : [ {
"system" : "http://fhir.nhs.net/Id/sds-role-profile-id",
"value" : "673836492727"
} ],
"practitioner" : {
"reference" : "Practitioner/20CE162F-C21A-4B87-8ABC-2FA927AAB65F"
}
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Practitioner/20CE162F-C21A-4B87-8ABC-2FA927AAB65F",
"resource" : {
"resourceType" : "Practitioner",
"id" : "20CE162F-C21A-4B87-8ABC-2FA927AAB65F",
"identifier" : [ {
"system" : "https://fhir.nhs.uk/Id/sds-user-id",
"value" : "676789689789"
} ],
"name" : [ {
"text" : "Dr Steve Jones"
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Encounter/DE2F2DAB-5BB1-480C-AA67-A2A68D06620D",
"resource" : {
"resourceType" : "Encounter",
"id" : "DE2F2DAB-5BB1-480C-AA67-A2A68D06620D",
"status" : "finished",
"class" : {
"system" : "http://terminology.hl7.org/CodeSystem/v3-NullFlavor",
"code" : "UNK",
"display" : "Unknown"
},
"participant" : [ {
"type" : [ {
"coding" : [ {
"system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
"code" : "AUT",
"display" : "author"
} ]
} ],
"period" : {
"start" : "2020-11-17T01:00:00+00:00"
},
"individual" : {
"reference" : "PractitionerRole/29325FBB-AA13-4645-BAE4-314AD6D21083"
}
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Condition/0F582D97-8F89-11EA-8B2D-B741F13EFC47",
"resource" : {
"resourceType" : "Condition",
"id" : "0F582D97-8F89-11EA-8B2D-B741F13EFC47",
"identifier" : [ {
"value" : "0F582D97-8F89-11EA-8B2D-B741F13EFC47"
} ],
"clinicalStatus" : {
"coding" : [ {
"system" : "http://hl7.org/fhir/ValueSet/condition-clinical",
"code" : "active"
} ]
},
"category" : [ {
"coding" : [ {
"system" : "http://snomed.info/sct",
"code" : "163001000000103",
"display" : "Diagnoses"
} ]
} ],
"code" : {
"coding" : [ {
"system" : "http://snomed.info/sct",
"code" : "1300721000000109",
"display" : "COVID-19 confirmed by laboratory test"
} ]
},
"encounter" : {
"reference" : "Encounter/920DCE4E-3E44-4966-B7C4-B61DAB9E4FDE"
},
"onsetDateTime" : "2020-05-06T12:48:19+00:00",
"evidence" : [ {
"detail" : [ {
"reference" : "Observation/F17999D2-FFE7-4CA4-8CE8-52CB45FF6F49"
} ]
} ],
"note" : [ {
"text" : "Problem; First, test"
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Practitioner/4E7AFF7E-FD68-4C52-A8C5-89268F1FDE5D",
"resource" : {
"resourceType" : "Practitioner",
"id" : "4E7AFF7E-FD68-4C52-A8C5-89268F1FDE5D",
"name" : [ {
"text" : "BLOGGS Fred"
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/PractitionerRole/4EAE23ED-8F8D-455B-A15E-96B077F02411",
"resource" : {
"resourceType" : "PractitionerRole",
"id" : "4EAE23ED-8F8D-455B-A15E-96B077F02411",
"practitioner" : {
"reference" : "Practitioner/4E7AFF7E-FD68-4C52-A8C5-89268F1FDE5D"
},
"organization" : {
"reference" : "Organization/CD7FAF21-0126-456E-B681-703571153CA3"
},
"code" : [ {
"coding" : [ {
"system" : "https://fhir.nhs.uk/CodeSystem/HL7v3-SDSJobRoleName",
"code" : "R0050",
"display" : "Consultant"
} ]
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Organization/CD7FAF21-0126-456E-B681-703571153CA3",
"resource" : {
"resourceType" : "Organization",
"id" : "CD7FAF21-0126-456E-B681-703571153CA3",
"telecom" : [ {
"system" : "phone",
"value" : "0177865579"
}, {
"system" : "phone",
"value" : "0189834144"
} ],
"address" : [ {
"text" : "ORG ADDRESS"
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Encounter/920DCE4E-3E44-4966-B7C4-B61DAB9E4FDE",
"resource" : {
"resourceType" : "Encounter",
"id" : "920DCE4E-3E44-4966-B7C4-B61DAB9E4FDE",
"status" : "finished",
"class" : {
"system" : "http://terminology.hl7.org/CodeSystem/v3-NullFlavor",
"code" : "UNK",
"display" : "Unknown"
},
"participant" : [ {
"type" : [ {
"coding" : [ {
"system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
"code" : "AUT",
"display" : "author"
} ]
} ],
"period" : {
"start" : "2020-11-18T01:00:00+00:00"
},
"individual" : {
"reference" : "PractitionerRole/4EAE23ED-8F8D-455B-A15E-96B077F02411"
}
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Condition/958E584C-25B8-4BD7-A71D-7625FDC1ACD6",
"resource" : {
"resourceType" : "Condition",
"id" : "958E584C-25B8-4BD7-A71D-7625FDC1ACD6",
"identifier" : [ {
"value" : "958E584C-25B8-4BD7-A71D-7625FDC1ACD6"
} ],
"clinicalStatus" : {
"coding" : [ {
"system" : "http://hl7.org/fhir/ValueSet/condition-clinical",
"code" : "active"
} ]
},
"category" : [ {
"coding" : [ {
"system" : "http://snomed.info/sct",
"code" : "163001000000103",
"display" : "Diagnoses"
} ]
} ],
"code" : {
"coding" : [ {
"system" : "http://snomed.info/sct",
"code" : "1300731000000106",
"display" : "COVID-19 confirmed using clinical diagnostic criteria"
} ]
},
"encounter" : {
"reference" : "Encounter/13DDB7F7-EF7A-4825-B0A1-B17B7B4DE942"
},
"onsetDateTime" : "2020-05-06T12:48:19+00:00"
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Practitioner/C8A2E6BA-4304-4428-A97D-AF4009ABBE91",
"resource" : {
"resourceType" : "Practitioner",
"id" : "C8A2E6BA-4304-4428-A97D-AF4009ABBE91",
"name" : [ {
"text" : "William Jones"
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/PractitionerRole/E3FE00AE-40E8-43D8-8779-13E24C1E2ACB",
"resource" : {
"resourceType" : "PractitionerRole",
"id" : "E3FE00AE-40E8-43D8-8779-13E24C1E2ACB",
"practitioner" : {
"reference" : "Practitioner/C8A2E6BA-4304-4428-A97D-AF4009ABBE91"
},
"organization" : {
"reference" : "Organization/C952E630-7934-4C18-A670-235E5A7F0802"
},
"code" : [ {
"coding" : [ {
"system" : "https://fhir.nhs.uk/CodeSystem/HL7v3-SDSJobRoleName",
"code" : "R0010",
"display" : "Medical Director"
} ]
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Organization/C952E630-7934-4C18-A670-235E5A7F0802",
"resource" : {
"resourceType" : "Organization",
"id" : "C952E630-7934-4C18-A670-235E5A7F0802",
"type" : [ {
"coding" : [ {
"code" : "021"
} ]
} ],
"name" : "Good Health Hospital",
"telecom" : [ {
"system" : "phone",
"value" : "0122865579"
}, {
"system" : "pager",
"value" : "0189664144"
} ],
"address" : [ {
"text" : "ORG ADDRESS_2"
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/PractitionerRole/24362D88-A6AB-4DDA-94E6-97BB5B0A27AE",
"resource" : {
"resourceType" : "PractitionerRole",
"id" : "24362D88-A6AB-4DDA-94E6-97BB5B0A27AE",
"identifier" : [ {
"system" : "http://fhir.nhs.net/Id/sds-role-profile-id",
"value" : "578934433"
} ],
"practitioner" : {
"reference" : "Practitioner/0DDEE68F-4A92-4ECF-8B25-B83C5D1C0C68"
}
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Practitioner/0DDEE68F-4A92-4ECF-8B25-B83C5D1C0C68",
"resource" : {
"resourceType" : "Practitioner",
"id" : "0DDEE68F-4A92-4ECF-8B25-B83C5D1C0C68",
"identifier" : [ {
"system" : "https://fhir.nhs.uk/Id/sds-user-id",
"value" : "9054354543"
} ],
"name" : [ {
"text" : "Anna Maria"
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Encounter/13DDB7F7-EF7A-4825-B0A1-B17B7B4DE942",
"resource" : {
"resourceType" : "Encounter",
"id" : "13DDB7F7-EF7A-4825-B0A1-B17B7B4DE942",
"status" : "finished",
"class" : {
"system" : "http://terminology.hl7.org/CodeSystem/v3-NullFlavor",
"code" : "UNK",
"display" : "Unknown"
},
"participant" : [ {
"type" : [ {
"coding" : [ {
"system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
"code" : "AUT",
"display" : "author"
} ]
} ],
"period" : {
"start" : "2020-12-18T01:00:00+00:00"
},
"individual" : {
"reference" : "PractitionerRole/E3FE00AE-40E8-43D8-8779-13E24C1E2ACB"
}
}, {
"type" : [ {
"coding" : [ {
"system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
"code" : "INF",
"display" : "informant"
} ]
} ],
"period" : {
"start" : "2016-06-30T10:33:58+00:00"
},
"individual" : {
"reference" : "PractitionerRole/24362D88-A6AB-4DDA-94E6-97BB5B0A27AE"
}
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Condition/8CEB2867-551B-43D0-88B5-3278DA20A6B0",
"resource" : {
"resourceType" : "Condition",
"id" : "8CEB2867-551B-43D0-88B5-3278DA20A6B0",
"identifier" : [ {
"value" : "8CEB2867-551B-43D0-88B5-3278DA20A6B0"
} ],
"clinicalStatus" : {
"coding" : [ {
"system" : "http://hl7.org/fhir/ValueSet/condition-clinical",
"code" : "active"
} ]
},
"category" : [ {
"coding" : [ {
"system" : "http://snomed.info/sct",
"code" : "163001000000103",
"display" : "Diagnoses"
} ]
} ],
"code" : {
"coding" : [ {
"system" : "http://snomed.info/sct",
"code" : "1240761000000102",
"display" : "Suspected COVID-19"
} ]
},
"encounter" : {
"reference" : "Encounter/330A104F-F328-4A65-A0B8-DEEC91A0E262"
},
"onsetDateTime" : "2020-05-06T12:48:19+00:00"
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Practitioner/BDDA65CD-2DB8-44D1-B289-B0BA1182FA21",
"resource" : {
"resourceType" : "Practitioner",
"id" : "BDDA65CD-2DB8-44D1-B289-B0BA1182FA21",
"name" : [ {
"text" : "Stephan Spence"
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/PractitionerRole/E5E45994-E9A4-4BAB-A4B2-DCA8AF1B6493",
"resource" : {
"resourceType" : "PractitionerRole",
"id" : "E5E45994-E9A4-4BAB-A4B2-DCA8AF1B6493",
"practitioner" : {
"reference" : "Practitioner/BDDA65CD-2DB8-44D1-B289-B0BA1182FA21"
},
"organization" : {
"reference" : "Organization/92CB3A00-A4E2-485F-8671-6E2E499536DB"
},
"code" : [ {
"coding" : [ {
"system" : "https://fhir.nhs.uk/CodeSystem/HL7v3-SDSJobRoleName",
"code" : "R0020",
"display" : "Clinical Director - Medical"
} ]
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Organization/92CB3A00-A4E2-485F-8671-6E2E499536DB",
"resource" : {
"resourceType" : "Organization",
"id" : "92CB3A00-A4E2-485F-8671-6E2E499536DB",
"identifier" : [ {
"system" : "https://fhir.nhs.uk/Id/ods-organization-code",
"value" : "57435939053"
} ],
"name" : "Good Health Hospital 2",
"telecom" : [ {
"system" : "phone",
"value" : "0122865579"
}, {
"system" : "pager",
"value" : "0189664144"
} ],
"address" : [ {
"text" : "ORG ADDRESS_2"
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/RelatedPerson/B0A64A15-3552-4525-8305-1DBFDF548C97",
"resource" : {
"resourceType" : "RelatedPerson",
"id" : "B0A64A15-3552-4525-8305-1DBFDF548C97",
"patient" : {
"reference" : "Patient/565B3BEF-9A19-4763-8887-9F7CB75995E3"
},
"relationship" : [ {
"coding" : [ {
"system" : "https://fhir.nhs.uk/STU3/ValueSet/PersonRelationshipType-1",
"code" : "01",
"display" : "Brother"
} ]
} ],
"name" : [ {
"text" : "JONES Bob"
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Encounter/330A104F-F328-4A65-A0B8-DEEC91A0E262",
"resource" : {
"resourceType" : "Encounter",
"id" : "330A104F-F328-4A65-A0B8-DEEC91A0E262",
"status" : "finished",
"class" : {
"system" : "http://terminology.hl7.org/CodeSystem/v3-NullFlavor",
"code" : "UNK",
"display" : "Unknown"
},
"participant" : [ {
"type" : [ {
"coding" : [ {
"system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
"code" : "AUT",
"display" : "author"
} ]
} ],
"period" : {
"start" : "2020-12-18T01:00:00+00:00"
},
"individual" : {
"reference" : "PractitionerRole/E5E45994-E9A4-4BAB-A4B2-DCA8AF1B6493"
}
}, {
"type" : [ {
"coding" : [ {
"system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
"code" : "INF",
"display" : "informant"
} ]
} ],
"period" : {
"start" : "2016-06-30T10:33:58+00:00"
},
"individual" : {
"reference" : "RelatedPerson/B0A64A15-3552-4525-8305-1DBFDF548C97"
}
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Condition/6ECDAE6D-32AB-421C-AA8F-0B1ABA454C70",
"resource" : {
"resourceType" : "Condition",
"id" : "6ECDAE6D-32AB-421C-AA8F-0B1ABA454C70",
"identifier" : [ {
"value" : "6ECDAE6D-32AB-421C-AA8F-0B1ABA454C70"
} ],
"clinicalStatus" : {
"coding" : [ {
"system" : "http://hl7.org/fhir/ValueSet/condition-clinical",
"code" : "active"
} ]
},
"category" : [ {
"coding" : [ {
"system" : "http://snomed.info/sct",
"code" : "163001000000103",
"display" : "Diagnoses"
} ]
} ],
"code" : {
"coding" : [ {
"system" : "http://snomed.info/sct",
"code" : "1240761000000102",
"display" : "Suspected COVID-19"
} ]
},
"encounter" : {
"reference" : "Encounter/0EB8181D-2CCB-444D-826F-9F0B05698730"
},
"onsetDateTime" : "2020-05-06T12:48:19+00:00"
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Practitioner/EDF20F0A-E2B9-4077-9EC8-89B4A1D6ABEF",
"resource" : {
"resourceType" : "Practitioner",
"id" : "EDF20F0A-E2B9-4077-9EC8-89B4A1D6ABEF",
"identifier" : [ {
"system" : "https://fhir.nhs.uk/Id/sds-user-id",
"value" : "8563857943834"
} ],
"name" : [ {
"text" : "Gregory House"
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/PractitionerRole/528485E6-E9F6-4F6C-8603-5C4688AC3E4D",
"resource" : {
"resourceType" : "PractitionerRole",
"id" : "528485E6-E9F6-4F6C-8603-5C4688AC3E4D",
"practitioner" : {
"reference" : "Practitioner/EDF20F0A-E2B9-4077-9EC8-89B4A1D6ABEF"
},
"organization" : {
"reference" : "Organization/82896F68-1EC4-48ED-AC9C-31219BE48D1C"
},
"code" : [ {
"coding" : [ {
"system" : "https://fhir.nhs.uk/CodeSystem/HL7v3-SDSJobRoleName",
"code" : "R0080",
"display" : "Staff Grade"
} ]
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Organization/82896F68-1EC4-48ED-AC9C-31219BE48D1C",
"resource" : {
"resourceType" : "Organization",
"id" : "82896F68-1EC4-48ED-AC9C-31219BE48D1C",
"telecom" : [ {
"system" : "phone",
"value" : "0332865579"
} ],
"address" : [ {
"text" : "ORG ADDRESS_4"
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Practitioner/62E22530-06D0-4622-84B8-46BE42E51467",
"resource" : {
"resourceType" : "Practitioner",
"id" : "62E22530-06D0-4622-84B8-46BE42E51467",
"identifier" : [ {
"system" : "https://fhir.nhs.uk/Id/sds-user-id",
"value" : "564735334"
} ],
"name" : [ {
"text" : "Thomas Moore"
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/PractitionerRole/2EAC367D-5C65-4564-8475-D62C44B21A02",
"resource" : {
"resourceType" : "PractitionerRole",
"id" : "2EAC367D-5C65-4564-8475-D62C44B21A02",
"practitioner" : {
"reference" : "Practitioner/62E22530-06D0-4622-84B8-46BE42E51467"
},
"organization" : {
"reference" : "Organization/5BF9CD67-5A0D-43AF-B654-E0F85D2B5FDA"
},
"code" : [ {
"coding" : [ {
"system" : "https://fhir.nhs.uk/CodeSystem/HL7v3-SDSJobRoleName",
"code" : "R0100",
"display" : "Clinical Assistant"
} ]
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Organization/5BF9CD67-5A0D-43AF-B654-E0F85D2B5FDA",
"resource" : {
"resourceType" : "Organization",
"id" : "5BF9CD67-5A0D-43AF-B654-E0F85D2B5FDA",
"telecom" : [ {
"system" : "phone",
"value" : "573459834"
} ],
"address" : [ {
"text" : "ORG ADDRESS_4"
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Encounter/0EB8181D-2CCB-444D-826F-9F0B05698730",
"resource" : {
"resourceType" : "Encounter",
"id" : "0EB8181D-2CCB-444D-826F-9F0B05698730",
"status" : "finished",
"class" : {
"system" : "http://terminology.hl7.org/CodeSystem/v3-NullFlavor",
"code" : "UNK",
"display" : "Unknown"
},
"participant" : [ {
"type" : [ {
"coding" : [ {
"system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
"code" : "AUT",
"display" : "author"
} ]
} ],
"period" : {
"start" : "2020-12-18T01:00:00+00:00"
},
"individual" : {
"reference" : "PractitionerRole/528485E6-E9F6-4F6C-8603-5C4688AC3E4D"
}
}, {
"type" : [ {
"coding" : [ {
"system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
"code" : "INF",
"display" : "informant"
} ]
} ],
"period" : {
"start" : "2016-06-30T10:33:58+00:00"
},
"individual" : {
"reference" : "PractitionerRole/2EAC367D-5C65-4564-8475-D62C44B21A02"
}
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/PractitionerRole/839ABFE3-1063-4B03-A716-E67377417F9B",
"resource" : {
"resourceType" : "PractitionerRole",
"id" : "839ABFE3-1063-4B03-A716-E67377417F9B",
"identifier" : [ {
"system" : "http://fhir.nhs.net/Id/sds-role-profile-id",
"value" : "89823498234"
} ],
"practitioner" : {
"reference" : "Practitioner/53A9AEDB-5497-413B-B272-F1C51771A55D"
}
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Practitioner/53A9AEDB-5497-413B-B272-F1C51771A55D",
"resource" : {
"resourceType" : "Practitioner",
"id" : "53A9AEDB-5497-413B-B272-F1C51771A55D",
"identifier" : [ {
"system" : "https://fhir.nhs.uk/Id/sds-user-id",
"value" : "9699575667"
} ],
"name" : [ {
"text" : "Maria Smith"
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Encounter/74852157-6F69-497F-8116-7E2F4493999A",
"resource" : {
"resourceType" : "Encounter",
"id" : "74852157-6F69-497F-8116-7E2F4493999A",
"status" : "finished",
"class" : {
"system" : "http://terminology.hl7.org/CodeSystem/v3-NullFlavor",
"code" : "UNK",
"display" : "Unknown"
},
"participant" : [ {
"extension" : [ {
"url" : "https://fhir.nhs.uk/StructureDefinition/Extension-SCR-ModeCode",
"valueCodeableConcept" : {
"coding" : [ {
"system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationMode",
"code" : "PHYSICAL",
"display" : "physical presence"
} ]
}
} ],
"type" : [ {
"coding" : [ {
"system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
"code" : "PRF",
"display" : "performer"
} ]
} ],
"period" : {
"start" : "2016-06-30T10:33:58+00:00"
},
"individual" : {
"reference" : "PractitionerRole/839ABFE3-1063-4B03-A716-E67377417F9B"
}
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Observation/F17999D2-FFE7-4CA4-8CE8-52CB45FF6F49",
"resource" : {
"resourceType" : "Observation",
"id" : "F17999D2-FFE7-4CA4-8CE8-52CB45FF6F49",
"meta" : {
"profile" : [ "https://fhir.hl7.org.uk/StructureDefinition/UKCore-Observation" ]
},
"identifier" : [ {
"value" : "F17999D2-FFE7-4CA4-8CE8-52CB45FF6F49"
} ],
"status" : "final",
"category" : [ {
"coding" : [ {
"system" : "http://snomed.info/sct",
"code" : "163141000000104",
"display" : "Investigation Results"
} ]
} ],
"code" : {
"coding" : [ {
"system" : "http://snomed.info/sct",
"code" : "1240581000000104",
"display" : "SARS-CoV-2 (severe acute respiratory syndrome coronavirus 2) RNA (ribonucleic acid) detection result positive"
} ]
},
"encounter" : {
"reference" : "Encounter/74852157-6F69-497F-8116-7E2F4493999A"
},
"effectivePeriod" : {
"start" : "2020-05-06T12:48:19+00:00"
}
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Device/4FCE15F1-6969-41BD-9298-BE595CB6E995",
"resource" : {
"resourceType" : "Device",
"id" : "4FCE15F1-6969-41BD-9298-BE595CB6E995",
"identifier" : [ {
"system" : "https://fhir.nhs.uk/Id/SDSDevice",
"value" : "930484003023"
}, {
"value" : "AAA5F1E0-6DF2-11EA-AE26-C5CB3G0B33D1"
} ],
"owner" : {
"reference" : "Organization/F806387E-824C-4931-8ABF-DE7A545046C1"
}
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Organization/F806387E-824C-4931-8ABF-DE7A545046C1",
"resource" : {
"resourceType" : "Organization",
"id" : "F806387E-824C-4931-8ABF-DE7A545046C1",
"identifier" : [ {
"system" : "https://fhir.nhs.uk/Id/ods-organization-code",
"value" : "7635043534"
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/PractitionerRole/3AA33898-49AB-41FC-9805-E30031DFB37D",
"resource" : {
"resourceType" : "PractitionerRole",
"id" : "3AA33898-49AB-41FC-9805-E30031DFB37D",
"organization" : {
"reference" : "Organization/F806387E-824C-4931-8ABF-DE7A545046C1"
}
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Encounter/54096A6E-03C3-48B8-B448-7C813EC926DA",
"resource" : {
"resourceType" : "Encounter",
"id" : "54096A6E-03C3-48B8-B448-7C813EC926DA",
"status" : "finished",
"class" : {
"system" : "http://terminology.hl7.org/CodeSystem/v3-NullFlavor",
"code" : "UNK",
"display" : "Unknown"
},
"participant" : [ {
"type" : [ {
"coding" : [ {
"system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
"code" : "AUT",
"display" : "author"
} ]
} ],
"period" : {
"start" : "2016-06-30T10:33:58+00:00"
},
"individual" : {
"reference" : "PractitionerRole/3AA33898-49AB-41FC-9805-E30031DFB37D"
}
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Observation/EE608FAA-2433-4BAD-A0D5-4A10E45AB2B0",
"resource" : {
"resourceType" : "Observation",
"id" : "EE608FAA-2433-4BAD-A0D5-4A10E45AB2B0",
"meta" : {
"profile" : [ "https://fhir.hl7.org.uk/StructureDefinition/UKCore-Observation" ]
},
"identifier" : [ {
"value" : "EE608FAA-2433-4BAD-A0D5-4A10E45AB2B0"
} ],
"status" : "final",
"category" : [ {
"coding" : [ {
"system" : "http://snomed.info/sct",
"code" : "163141000000104",
"display" : "Investigation Results"
} ]
} ],
"code" : {
"coding" : [ {
"system" : "http://snomed.info/sct",
"code" : "1240581000000104",
"display" : "SARS-CoV-2 (severe acute respiratory syndrome coronavirus 2) RNA (ribonucleic acid) detection result positive"
} ]
},
"encounter" : {
"reference" : "Encounter/54096A6E-03C3-48B8-B448-7C813EC926DA"
},
"effectivePeriod" : {
"start" : "2020-05-06T12:48:19+00:00"
}
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Device/C21F61F0-B9CB-49A3-A966-9BFC4ED2FBEC",
"resource" : {
"resourceType" : "Device",
"id" : "C21F61F0-B9CB-49A3-A966-9BFC4ED2FBEC",
"identifier" : [ {
"value" : "7867868687687"
}, {
"value" : "AAA5F1E0-6DF2-11EA-AE26-C5CB3F0B33D1"
} ],
"deviceName" : [ {
"name" : "Some device name",
"type" : "other"
}, {
"name" : "Mfc model name",
"type" : "manufacturer-name"
} ],
"type" : {
"coding" : [ {
"code" : "01",
"display" : "Some device"
} ]
},
"version" : [ {
"value" : "v.1.10.245-beta"
} ],
"owner" : {
"reference" : "Organization/8D1D94AB-26D3-4A1F-BC22-A02670BCB444"
},
"note" : [ {
"text" : "Device description"
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Organization/8D1D94AB-26D3-4A1F-BC22-A02670BCB444",
"resource" : {
"resourceType" : "Organization",
"id" : "8D1D94AB-26D3-4A1F-BC22-A02670BCB444",
"type" : [ {
"coding" : [ {
"code" : "214"
} ]
} ],
"name" : "Device owner org",
"telecom" : [ {
"system" : "phone",
"value" : "fax:01392251689"
} ],
"address" : [ {
"text" : "ADDRESS LINE 1"
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/PractitionerRole/29BF2890-7D56-4FC5-A3A9-7D3483205EFD",
"resource" : {
"resourceType" : "PractitionerRole",
"id" : "29BF2890-7D56-4FC5-A3A9-7D3483205EFD",
"organization" : {
"reference" : "Organization/8D1D94AB-26D3-4A1F-BC22-A02670BCB444"
}
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Encounter/863E4623-2F33-45C5-B02F-26BBAEDE24E8",
"resource" : {
"resourceType" : "Encounter",
"id" : "863E4623-2F33-45C5-B02F-26BBAEDE24E8",
"status" : "finished",
"class" : {
"system" : "http://terminology.hl7.org/CodeSystem/v3-NullFlavor",
"code" : "UNK",
"display" : "Unknown"
},
"participant" : [ {
"type" : [ {
"coding" : [ {
"system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
"code" : "AUT",
"display" : "author"
} ]
} ],
"period" : {
"start" : "2016-06-30T10:33:58+00:00"
},
"individual" : {
"reference" : "PractitionerRole/29BF2890-7D56-4FC5-A3A9-7D3483205EFD"
}
} ]
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Observation/0F582D97-8F89-11CA-8B2D-B741F13EFC47",
"resource" : {
"resourceType" : "Observation",
"id" : "0F582D97-8F89-11CA-8B2D-B741F13EFC47",
"meta" : {
"profile" : [ "https://fhir.hl7.org.uk/StructureDefinition/UKCore-Observation" ]
},
"identifier" : [ {
"value" : "0F582D97-8F89-11CA-8B2D-B741F13EFC47"
} ],
"status" : "final",
"category" : [ {
"coding" : [ {
"system" : "http://snomed.info/sct",
"code" : "163141000000104",
"display" : "Investigation Results"
} ]
} ],
"code" : {
"coding" : [ {
"system" : "http://snomed.info/sct",
"code" : "1240581000000104",
"display" : "SARS-CoV-2 (severe acute respiratory syndrome coronavirus 2) RNA (ribonucleic acid) detection result positive"
} ]
},
"encounter" : {
"reference" : "Encounter/863E4623-2F33-45C5-B02F-26BBAEDE24E8"
},
"effectivePeriod" : {
"start" : "2020-05-06T12:48:19+00:00"
}
}
}, {
"fullUrl" : "https://api.service.nhs.uk/summary-care-record/FHIR/R4/Patient/565B3BEF-9A19-4763-8887-9F7CB75995E3",
"resource" : {
"resourceType" : "Patient",
"id" : "565B3BEF-9A19-4763-8887-9F7CB75995E3",
"identifier" : [ {
"system" : "https://fhir.nhs.uk/Id/nhs-number",
"value" : "9995000180"
} ]
}
} ]
}
Name | Description |
---|---|
object
|
|
resourceType string
required |
Default:
Bundle |
id string
|
Example:
582B5B22-062C-47E2-BCC0-7C6A77D96ABA |
identifier object
required |
|
system string
required |
Default:
https://tools.ietf.org/html/rfc4122 |
value string
required |
Example:
C058D90F-E526-4A27-A46E-E86229096AAC |
type string
required |
type of the Bundle
Default:
document |
timestamp string
required |
Example:
2007-03-15T01:00:00+00:00 |
entry array
required |
|
anyOf | |
object
|
|
fullUrl string
|
Example:
https://api.service.nhs.uk/summary-care-record/FHIR/R4/Composition/25FCE159-C82D-482B-8EA9-86DEF2C3929B |
resource object
|
|
resourceType string
required |
Default:
Composition |
id string
|
Example:
25FCE159-C82D-482B-8EA9-86DEF2C3929B |
meta object
required |
|
lastUpdated string
required |
Example:
2020-11-17T01:00:00+00:00 |
identifier object
required |
|
system string
required |
Default:
https://tools.ietf.org/html/rfc4122 |
value string
required |
Example:
C058D90F-E526-4A27-A46E-E86229096AAC |
status string
required |
Default:
final |
type object
required |
Kind of composition
|
coding array
required |
Max items:
1 Min items:
1 |
object
|
|
system string
required |
Default:
http://snomed.info/sct |
code string
required |
Default:
196981000000101 |
display string
required |
Default:
General Practice Summary |
category array
required |
|
object
|
|
coding array
required |
|
object
|
|
system string
required |
Default:
http://snomed.info/sct |
code string
required |
Default:
163171000000105 |
display string
required |
Default:
Care Professional Documentation |
subject object
required |
Who and/or what the composition is about
|
reference string
required |
Example:
Patient/B61AF2BD-0FFD-49CC-8374-C70DAFF8878F |
date string
required |
Example:
2007-03-15T01:00:00+00:00 |
author array
|
Min items:
1 |
object
|
Who and/or what authored the composition
|
reference string
required |
Example:
PractitionerRole/33661E10-AA36-491A-AFFE-5C10C0BF9304 |
display string
|
Example:
Dr Steve Jones |
title string
required |
Human Readable name/title
Example:
General Practice Summary |
relatesTo array
|
|
object
|
|
code string
|
Example:
replaces |
targetIdentifier object
|
|
value string
|
Example:
D18B57ED-992E-45A2-A6AF-55200D20F48E |
section array
|
|
object
|
|
title string
|
Example:
Allergies and Adverse Reactions |
text object
|
|
status string
|
Example:
generated |
div string
|
Example:
<div xmlns="http://www.w3.org/1999/xhtml">
<table summary="This table includes information about this patient's allergies and adverse reactions." id="Allergies">
<thead>
<tr>
<th>Date</th>
<th>Description</th>
<th>Certainty</th>
<th>Severity</th>
<th>Supporting Information</th>
</tr>
</thead>
<tbody>
<tr class="oddRow">
<td>12-May-2020</td>
<td>Toxic reaction to wasp sting</td>
<td/>
<td/>
<td>Problem; First</td>
</tr>
</tbody>
</table>
</div> |
object
|
|
fullUrl string
|
UUID identifying resource within a bundle
Example:
https://api.service.nhs.uk/summary-care-record/FHIR/R4/Patient/453863C3-C679-4D84-9E01-1B1D0239AC5F |
resource object
|
|
resourceType string
required |
Default:
Patient |
id string
|
Example:
453863C3-C679-4D84-9E01-1B1D0239AC5F |
identifier array
required |
|
object
|
|
extension array
required |
Max items:
1 Min items:
1 |
object
|
|
url string
required |
Example:
https://fhir.hl7.org.uk/STU3/StructureDefinition/Extension-CareConnect-NHSNumberVerificationStatus-1 |
valueCodeableConcept object
required |
|
coding array
required |
Max items:
1 Min items:
1 |
object
|
|
system string
required |
Example:
https://fhir.hl7.org.uk/STU3/CodeSystem/CareConnect-NHSNumberVerificationStatus-1 |
code string
required |
Example:
01 |
display string
required |
Example:
Number present and verified |
system string
required |
Default:
https://fhir.nhs.uk/Id/nhs-number |
value string
required |
Example:
9900004948 |
object
|
|
fullUrl string
|
Example:
https://api.service.nhs.uk/summary-care-record/FHIR/R4/Practitioner/F4D5093D-351E-4C6E-819E-DCCBC4B9A7FD |
resource object
|
|
resourceType string
required |
Default:
Practitioner |
id string
|
Example:
F4D5093D-351E-4C6E-819E-DCCBC4B9A7FD |
identifier array
|
There should be one identifier if user is a SDS USer
|
object
|
|
system string
required |
Should be fixed to https://fhir.nhs.uk/Id/sds-user-id when user is a SDS user
Default: https://fhir.nhs.uk/Id/sds-user-id < |