FHIR SDC API

This article outlines operations from the FHIR SDC Implementation Guide.

Implementation corresponds to SDC FHIR IG - 3.0.version 0

FHIR SDC API

Aidbox Forms module supports FHIR SDC operations:

  • $populate - filling out a form with existing data (FHIR)

  • $populatelink - filling out a form with existing data, and return signed link to it (FHIR)

  • $extract - extract data from QuestionnaireResponse to other FHIR resources (FHIR)

  • $expand - create a simple collection of codes suitable for use for data entry or validation. (FHIR)

Populate Questionnaire - $populate

The populate operation generates a QuestionnaireResponse based on a specific Questionnaire, filling in answers to questions where possible based on information provided as part of the operation or already known by the server about the subject of the Questionnaire.

This implementation supports the Observation based and Expression based population methods.

URLs

POST [base]/Questionnaire/$populate
POST [base]/Questionnaire/[id]/$populate

Parameters

ParameterCardinalityTypeStatus

0..1

supported

0..1

supported

0..1

supported

0..1

supported

1..1

supported

0..*

supported

1..1

supported

1..*

supported

0..1

supported

0..1

not supported

Parameters are specified via FHIR Parameters type.

Example

resourceType: Parameters
parameter:
- name: subject
  value:
    Reference:
      id: pt-1
      resourceType: Patient

identifier

A logical questionnaire identifier (i.e. Questionnaire.identifier). The server must know the questionnaire or be able to retrieve it from other known repositories.

name: identifier
value:
  Identifier:
    system: 'forms.aidbox'
    value: 'vitals'

canonical

The canonical identifier for the questionnaire (optionally version-specific).

name: canonical
value:
  Canonical: http://forms.aidbox.io/Questionnaire/vitals

questionnaire

The Questionnaire is provided directly as part of the request. Servers may choose not to accept questionnaires in this fashion

name: questionnaire
resource:
  resourceType: Questionnaire
  id: new-form
  title: "Vitals"
  ...

questionnaireRef

The Questionnaire is provided as a resource reference. Servers may choose not to accept questionnaires in this fashion or may fail if they cannot resolve or access the referenced questionnaire.

name: questionnaireRef
value:
  Reference:
    resourceType: Questionnaire
    id: new-form

subject

The resource that is to be the QuestionnaireResponse.subject. The QuestionnaireResponse instance will reference the provided subject. In addition, if the local parameter is set to true, server information about the specified subject will be used to populate the instance.

name: subject
value:
  Reference:
    id: pt-1
    resourceType: Patient

local

If specified and set to true (and the server is capable), the server should use what resources and other knowledge it has about the referenced subject when pre-populating answers to questions.

name: local
value:
  Boolean: true

context

Resources containing information to be used to help populate the QuestionnaireResponse. These will typically be FHIR resources.

Context paramertes are presented as pairs of name and content parameters that are placed under the part key.

They should correspond launchContext parameter definitions.

name: context
part:
- name: name
  value:
    String: encounter
- name: content
  value:
    Reference:
      resourceType: Encounter
      id: enc1

FHIR SDC launchContext extension enumerates possible context variables, they are:

Not supported yet

CodeDefinition

patient

Patient Patient in context at launch time (FHIR Patient resource)

encounter

Encounter context at launch time (FHIR Encounter resource)

location

Location context at launch time (FHIR Location resource)

user

User in context at launch time (FHIR Device, PractitionerRole, Practitioner, RelatedPerson, Organization or Patient resource)

study

ResearchStudy in context at launch time (FHIR ResearchStudy resource)

Additionnaly Aidbox expands this list with parameters that mirrors QuestionnaireResponse root properties.

WARN: This is non FHIR SDC compliant behavior!

Paramerters passed directly to QuestionnaireResponse root properties and should not be used in populate expressions.

Example:

name: name
value:
  Reference: 
    id: sr1
    resourceType: ServiceRequest

context.name

The name of the launchContext or root Questionnaire variable the passed content should be used as for population purposes. The name SHALL correspond to a launchContext or variable delared at the root of the Questionnaire.

name: name
value:
  String: encounter

context.content

The actual resource (or resources) to use as the value of the launchContext or variable.

name: content
value:
  Reference:
    resourceType: Encounter
    id: enc1

Or

name: content
resource:
  ...
  resourceType: Encounter
  id: enc1
  ...

launchContext

Resources that provide context for form processing logic (pre-population) when creating/displaying/editing a QuestionnaireResponse.

Response

Success response shape

ParameterCardinalityTypeDescription

response

1..1

The partially (or fully)-populated set of answers for the specified Questionnaire

issues

0..1

A list of hints and warnings about problems encountered while populating the questionnaire.

Usage Example

POST [base]/Questionnaire/vitals/$populate
content-type: text/yaml

resourceType: Parameters
parameter:
- name: subject
  value:
    Reference:
      id: pt-1
      resourceType: Patient
- name: context
  part:
  - name: name
    value:
      String: encounter
  - name: content
    value:
      Reference:
        resourceType: Encounter
        id: enc1

The populatelink operation generates a link to a web page to be used to answer a specified Questionnaire. The form at the specified location will be pre-filled with answers to questions where possible based on information provided as part of the operation or already known by the server about the subject of the Questionnaire.

URLs

POST [base]/Questionnaire/$populatelink
POST [base]/Questionnaire/[id]/$populatelink

Parameters

The base set of parameters is the same as for $populate. On top of that, a few extra parameters are supported by Aidbox Forms.

WARN: The following parameters are not FHIR SDC compliant. This is an extension of the specification.

allow-amend

Whether the generated link will allow amending and re-submitting the form.

name: allow-amend
value:
  Boolean: true

redirect-on-submit

A URL where the user will be redirected to after successfully submitting the form.

name: redirect-on-submit
value:
  String: https://example.com/submit-hook?questionnaire=123

Response

  • in failure case - response is specified as OperationOutcome object containing a link.

  • in success case - response is specified as Parameters object containing a list of issues.

ParameterCardinalityTypeDescription

link

1..1

The URL for the web form that supports capturing the information defined by questionnaire

issues

0..1

A list of hints and warnings about problems encountered while populating the questionnaire

Usage Example

POST [base]/Questionnaire/vitals/$populatelink
content-type: text/yaml

resourceType: Parameters
parameter:
- name: subject
  value:
    Reference:
      id: pt-1
      resourceType: Patient
- name: context
  part:
  - name: name
    value:
      String: encounter
  - name: content
    value:
      Reference:
        resourceType: Encounter
        id: enc-1

Questionnaire response extract to resources - $extract

The extract operation takes a completed QuestionnaireResponse and extracts it's data to Bundle of resources by using metadata embedded in the Questionnaire the QuestionnaireResponse is based on. The extracted resources might include Observations, MedicationStatements and other standard FHIR resources which can then be shared and manipulated.

Aidbox supports only the Observation based extraction method.

URLs

URL: [base]/QuestionnaireResponse/$extract
URL: [base]/QuestionnaireResponse/[id]/$extract

Parameters

ParameterCardinalityTypeDescription

questionnaire-response

0..1

The QuestionnaireResponse to extract data from.

Parameters are specified via FHIR Parameters type.

Example

resourceType: Parameters
parameter:
- name: questionnaire-response
  resource:
    id: qr-1
    resourceType: QuestionnaireResponse
    ...

Response

ParameterCardinalityTypeDescription

return

1..1

FHIR Bundle with extracted resources

issues

0..1

A list of hints and warnings about problems encountered while extracting the data

Usage Example

POST [base]/QuestionnaireResponse/$extract
content-type: text/yaml

resourceType: Parameters
parameter:
- name: questionnaire-response
  resource:
    id: pt-1
    resourceType: QuestionnaireResponse
    questionnaire: https://forms.aidbox.io/vitals
    item:
      - linkId: temperature
        value:
          Decimal: 36.6
    ...

ValueSet Expansion - $expand

Value Sets are used to define possible coded answer choices in a questionnaire.

The use of standardized codes is useful when data needs to be populated into the questionnaire or extracted from the questionnaire for other uses.

The expand operation expand given ValueSet in to set of concepts.

This operation is described in detail here.

Last updated