All examples from this tutorial you can run in Postman. Here's the web view of these examples in Postman.
Defining a Custom Resource
Sometimes your data does not fit any existing FHIR resources. It is not always obvious that your data cannot be translated to FHIR because of some FHIR generalizations. The right first step is to go to FHIR comunity chat and ask your specific question about mapping to FHIR, or contact Health Samurai modeling team about your concern. If you are still sure that there is no appropriate resource in FHIR or it takes too much time to wait for it, you can define your own Custom Resources in Aidbox.
Custom Resources are defined exactly the same way as core FHIR resources. They can refer to existing resources, have uniform REST API for CRUD and Search, and participate in transactions.
Let's imagine that in our application we want to store user preferences such as UI configuration or personalized Patient List filters. It is expected that you have already created a box in Aidbox.Cloud. First of all, we have to define a new resource type by creating an Entity resource.
Create Definition​
Access the REST console and paste the following request. You should see the response:
POST /Entityid:UserSettingtype:resourceisOpen:true
This means that the resource of the type Entity was successfully created. When you create Entity resources with type resource, Aidbox will on the fly initialize a storage for new resource type and generate CRUD & Search REST API.
When you set the isOpen: true flag, this means that the resource does not have any specific structure and that you can store arbitrary data. This is useful when you do not know the exact resource structure, for example, while working on a prototype. Later we will make its schema more strict and will constraint it with additional validations.
API of a Custom Resource
Let's check API for our custom resource UserSetting. You can list UserSetting resources by the standard FHIR URI template GET /{resourceType} :
In the query-sql we see what query is executed by Aidbox to get these resources and can see that the table usersetting was created. You can test it with the DB Console using the following query:
SELECT * FROM "usersetting";
Cool! Now, let's create first UserSetting resource using the REST Console:
Awesome! We've got a nice API by providing a couple of lines of metadata. But the schema of our custom resource is currently too open and users can put any data into UserSetting resource. For example, we can do this:
Now, let's put some restrictions and define our Custom Resource structure. To describe structure of a resource, we will use Attribute meta-resource. For example, we want to restrict the theme attribute to be a string value from the specific enumeration:
resource:id:UserSettingresourceType:Entityid:UserSetting.themeresourceType:Attributepath:- themetype:id:stringresourceType:Entityenum:- dark- white
Validation of Incoming Resources
To validate incoming resources, Aidbox uses json-schema which is generated from Entity & Attribute meta-resources (read more in Validation Section). Using $json-schema operation we can inspect which schema will be applied to UserSetting resources:
As we see on the line 17 in the response above, the theme property has now type string and is restricted by the enumeration [dark, white].
Let's try to create an invalid resource now:
POST/UserSetting
id:user-3theme:2
# Response status: 422 Unprocessable EntityresourceType:OperationOutcomeerrors:- path: [theme]message:expected type of string- path: [theme]message:expeceted one of dark, whitewarnings: []
PUT/UserSetting
id:user-4theme:unexisting
# Response status: 422 Unprocessable EntityresourceType:OperationOutcomeerrors:- path: [theme]message:expected one of dark, whitewarnings: []
Restriction of Extra Attributes
We constrained only one attribute and because our Entity.isOpen = true, this resource can have any additional attributes without a schema. We can turn this off by setting Entity.isOpen to false:
And we see the schema keyword additionalProperties: false (line 20 in the response above) which means that now our schema is closed. Let's test it by the request with additional property menu:
In this tutorial you learned how to define and use Custom Resources in Aidbox. In future series we will show you how to add more advanced validations on Custom Resources and create custom endpoints to define your business logic. If you have any questions or suggestions, please provide us with your feedback!