Defining flat views with View Definitions
SQL on FHIR utilizes ViewDefinition resources to describe the structure of flat views. A simple ViewDefinition may look like this:
The view is described with its name, resource type, status, and the declaration of the rows it contains. In this example, we define a flat view named obs_view
for Observations, that will have 2 fields: id
, defined as the Observation's id, and pid
, defined as the subject Patient's id.
This example only scratches the surface. For more complex examples, seeQuery data from flat views. For an in-depth overview of ViewDefinition's structure consultReference.
Creating flat views
With Aidbox UI
To create a flat view of the resource, you have to define it with a special resource called ViewDefinition. You can do it with a View Definitions editor in Aidbox UI.
View definitions you've created can be viewed in a menu in the right part of the screen. There also are several samples to get you started. Note that samples are presented as View Definitions only and have no corresponding views in the database by default.
You can use the Run button or Ctrl+Enter
to preview your view. To save a View Definition and materialize it as a view in the database, press Save. The delete button deletes both a View Definition and the corresponding view in the database.
Note that a ViewDefinition resource used in Aidbox may differ from SQL on FHIR specification. To see how Aidbox's ViewDefinition is structured, consult the Reference page.
With REST API
As ViewDefinition is a resource, it can be created via REST API. For example:
This step will create both a ViewDefinition resource and the corresponding flat view. PUT
and DELETE
operations will also affect both ViewDefinitions and their flat views.
With ViewDefinition Builder
Feel free to try our ViewDefinition Builder here: https://sqlonfhir.aidbox.app.
Features:
Visual builder: easy to create ViewDefinition in form;
Auto-complete: FHIRPath suggestions support;
Aidbox Portal integration: play with your data in the sandbox, interactively see the result of ViewDefinition;
Local Aidbox integration: pass URL and headers to send requests to local Aidbox
Additional options
By default views you define are materialized as views in sof
schema. You can alter this behavior by adding an extension.
In the example above, the view will be materialized as a table in a schema called public
. Available materialization options are table
, materialized-view
and view
.
If you create views via Aidbox UI, you can use the shorthand parameters _materialization
and _schema
instead, like this:
Note that these shorthands are not available for REST API.
Last updated