Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,9 @@
{
"url": "referralLetterRequired",
"valueBoolean": false
}, {
"url": "singlePointOfAccess",
"valueBoolean": false
},
{
"url": "location",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,9 @@
{
"url": "referralLetterRequired",
"valueBoolean": false
}, {
"url": "singlePointOfAccess",
"valueBoolean": false
},
{
"url": "location",
Expand Down Expand Up @@ -208,6 +211,9 @@
{
"url": "referralLetterRequired",
"valueBoolean": true
}, {
"url": "singlePointOfAccess",
"valueBoolean": false
},
{
"url": "location",
Expand Down Expand Up @@ -326,6 +332,9 @@
{
"url": "referralLetterRequired",
"valueBoolean": false
}, {
"url": "singlePointOfAccess",
"valueBoolean": false
},
{
"url": "location",
Expand Down Expand Up @@ -455,6 +464,9 @@
{
"url": "referralLetterRequired",
"valueBoolean": true
}, {
"url": "singlePointOfAccess",
"valueBoolean": false
},
{
"url": "location",
Expand Down Expand Up @@ -573,6 +585,9 @@
{
"url": "referralLetterRequired",
"valueBoolean": false
}, {
"url": "singlePointOfAccess",
"valueBoolean": false
},
{
"url": "location",
Expand Down Expand Up @@ -691,6 +706,9 @@
{
"url": "referralLetterRequired",
"valueBoolean": true
}, {
"url": "singlePointOfAccess",
"valueBoolean": false
},
{
"url": "location",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,9 @@
{
"url": "referralLetterRequired",
"valueBoolean": true
}, {
"url": "singlePointOfAccess",
"valueBoolean": false
},
{
"url": "location",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,9 @@
{
"url": "referralLetterRequired",
"valueBoolean": true
}, {
"url": "singlePointOfAccess",
"valueBoolean": false
},
{
"url": "location",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,9 @@
{
"url": "referralLetterRequired",
"valueBoolean": true
}, {
"url": "singlePointOfAccess",
"valueBoolean": false
},
Comment on lines 79 to 85
{
"url": "location",
Expand Down
21 changes: 21 additions & 0 deletions specification/components/r4/schemas/eRS-HealthcareService.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -171,3 +171,24 @@ properties:
- Directly Bookable
- Indirectly Bookable
example: Directly Bookable
- type: object
title: eRS-ServiceAccessType
required:
- system
- code
- display
properties:
system:
type: string
enum:
- https://fhir.nhs.uk/CodeSystem/eRS-ServiceAccessType
example: https://fhir.nhs.uk/CodeSystem/eRS-ServiceAccessType
code:
type: string
enum:
- SINGLE_POINT_OF_ACCESS
example: SINGLE_POINT_OF_ACCESS
display:
enum:
- Single point of access
example: Single point of access
Comment on lines +191 to +194
Original file line number Diff line number Diff line change
Expand Up @@ -462,6 +462,21 @@ properties:
valueBoolean:
type: boolean
example: true
- title: SinglePointOfAccess
description: Indicates whether the Service is a Single Point of Access (SPoA)
type: object
required:
- url
- valueBoolean
properties:
url:
type: string
enum:
- singlePointOfAccess
example: 'singlePointOfAccess'
valueBoolean:
type: boolean
example: true
- title: Specialty
description: The specialty supported by the Service
type: object
Expand Down