Create your first Resource
Snow Owl is now running but does not contain any content whatsoever. To be able to import or author terminology data a resource has to be created beforehand. There are three major resource types in the system:
Code Systems (e.g. SNOMED CT, ATC, LOINC, ICD-10)
Value Sets
Concept Maps
For the sake of this quick start guide, we will follow along the path of how to create a SNOMED CT code system, import content and query concepts based on different criteria.
Create a Code System
If we take a look at eg. the list of known code systems, we get an empty result set:
To import SNOMED CT content, we have to create a code system first using the following request:
Use of SNOMED CT is subject to additional conditions not listed here, and the full copyright notice has been shortened for brevity in the request above. Please see here for details.
The request body includes:
The code system identifier (
SNOMEDCT
)Various pieces of metadata offering a human-readable title, status, contact information, URL and OID for identification, etc.
The tooling identifier
snomed
that points to the repository that will store contentAdditional code system settings stored as key-value pairs
If the request succeeds the server returns a "204 No Content" response. We can verify that the code system has been registered correctly with the following request:
The expected response is:
In addition to the submitted values, you will find that additional administrative properties also appear in the output. One example is branchPath
which specifies the working branch of the code system within the repository.
The code system now exists but is empty. To verify this claim, we can list concepts using either Snow Owl's native API tailored for SNOMED CT or the standardized FHIR API for a representation that is uniform across different kinds of code systems – for the sake of simplicity, we will use the former in this example.
The following request can be used to list all available concepts in a SNOMED CT code system:
The expected response is:
At this point, we can either import or create content in the SNOMED CT code system. Follow the instructions on the next page to import your SNOMED CT RF2 release into Snow Owl.
Last updated