Git Product home page Git Product logo

fhir.cerner.com's Introduction

fhir.cerner.com

This repository houses the public facing API documentation for Cerner's implementation of the HL7® FHIR® standard, also known as Cerner's Ignite APIs.

The deployed documentation can be viewed at https://fhir.cerner.com/.

Reporting Issues

Bug reports or notes of areas where documentation is unclear are welcome as repository issues.

Viewing Documentation Locally

Install dependencies with bundler.

$ bundle install

Compile the site with nanoc.

$ bundle exec nanoc

Start up a local web server with nanoc.

$ bundle exec nanoc view

Navigate to http://localhost:3000/ to view the site. When making changes to the site, repeat the last two steps to recompile and view the new content.

Development Constructs

Layouts

We've added attributes at the top of some markdown files to assign a layout. These are usually only needed for pages that aren't actual API documentation (our compilation rule uses that layout attribute before falling back to the api layout).

Layouts themselves are defined in the layouts directory. Some layouts (like the API or FAQ layouts) are used as page templates as mentioned above. Other layouts (like resource category layouts or header/footer layouts) are used to include content in other pages.

Versions and Solutions

There are preprocessing rules that use folder matching to add version and solution attributes to all markdown files for the API. The only thing you need to do to make this work is put resource documentation in /[solution]/[version]/ folder path.

The version and solution attributes are currently used to flex CSS classes, page links, and navigation toolbars/sidebars for the API documentation.

Generating a field table

Definition Tables

Create and Update operations typically require JSON bodies which can be tedious to document manually through markdown. To simplify this process and to improve consistency we have added the definition_table helper to generate a table from a yaml content file.

The definition_table helper requires 3 parameters: content, action, and version.

  • content indicates which content file to load.
  • version indicates the version of the content file.
  • action indicates which action specific variations defined in the content file to reflect in the generated table. Typically the action will be :create or :update. The available actions are defined in the content files themselves.

Generating a field table is done by invoking the definition_table method through an ERB call in whichever documentation file needs the table.

For example, the DSTU2 version of DocumentReference Create can be generated using:

<%= definition_table(:document_reference, :create, :dstu2) %>

Whereas other versions of AllergyIntolerance Update can be generated (assuming appropriate definitions are available) using:

<%= definition_table(:allergy_intolerance, :update, :r4) %>

In actuality, the version parameter references a subfolder in lib/resources where the content files for that version are stored. Thus definition_table(:document_reference, :create, :dstu2) is referencing lib/resources/dstu2/document_reference.yaml. Adding new versions or new content files is simply a matter of creating an appropriately named folder and content file.

definition_table reads these fields from the resource's content yaml definition:

  • name
  • field_name_base_url
  • fields
    • name
    • required
    • type
    • description
    • children
      • nested fields
    • example
    • note
    • url
    • action

Terminology Tables

The terminolgy_table helper is available to generate a terminology binding table from the same yaml content file as definition_table.

The terminolgy_table helper requires 2 parameters: content and version.

  • content indicates which content file to load.
  • version indicates the version of the content file.

Generating a terminology table is done by invoking the terminology_table method through an ERB call in whichever documentation file needs the table.

For example, the DSTU2 version of AllergyIntolerance can be generated using:

<%= terminology_table(:allergy_intolerance, :dstu2) %>

The version parameter processing is handled the same as definition_table.

terminology_table reads these fields from the resource's content yaml definition:

  • name
  • fields
    • name
    • note
    • binding
      • terminology
        • display
        • note
        • system
        • values
Content YAML

The content is defined in YAML files and most fields are optional. If they are not provided, the resulting table cell will just be empty.

  • field_name_base_url: definition_table will generate nested links for each field prepended with this url.
  • fields: The list of defined fields.
    • name: The name of the field. This will be generated as a link based on field_name_base_url.
    • required: Whether or not the field is required. This is not necessarily whether the field is required by the FHIR® standard, but rather whether it is required by our server implementation.
    • type: The type of the field. If found in lib/resources/<version>/types.yaml, this field will be linked to the specified resource.
    • description: The description of the field.
    • example: An example of how the field should be populated. The generated examples will be enclosed in <pre> tags to preserve formatting.
    • note: Additional implementation notes.
    • children: A list of nested fields. Each nested field item has the same structure as this fields list.
    • url: Overrides the field_name_base_url generated URL if defined.
    • binding: A list of terminology bindings supported for the field.
      • description: Describes the purpose / intent of the binding.
      • terminology: The list of terminologies supported by the field.
        • display: The terminology's display value.
        • notes: Additional notes about the binding implementation.
        • system: The actual system URI from which values may be returned.
        • values: A list of individually supported values from the system.

Standard YAML formatting rules apply.

Action

In addition to the fields above, each field can have an action field which indicates to which action or actions the field applies. When defined, the field will only be included when generating a table with the specified action. Multiple actions are supported as well and can be defined as a list:

Make the field apply to a single action
- name: subject
  ...
  action: create

Make the field apply to multiple actions
- name: subject
  ...
  action:
  - create
  - update

Similarly, field values can be flexed per action as well:

Alter the required and note values for update and create
- name: id
  required:
  - update: 'Yes'
  - create: 'No'
  type: id
  description: The logical id of the resource to update.
  example: |
    {
      "id": "123412"
    }
  note:
  - update: The id value must match the AllergyIntolerance/<id> value.
  - create: The id field must not be set when performing an update operation.

The name of the action isn't limited to create and update, but only one action can be used at a time when generating a field table.

Linking

Linking is supported in a few forms.

Field names

The field names will be automatically linked based on the base_field_name_url unless overridden by a field's url value.

Type names

The Type table cell will generate links based on URLs key-value pairs defined in lib/resources/<version>/types.yaml. Any word found in a type field will be replaced with the specified URL.

Formatting Tags

The description and note fields also support linking via the use of `` and [] tags. Words enclosed in `` tags will be linked according to the types.yaml file, if possible, or just formatted as <code> tags if not. Words enclosed in [] will be assumed to be references to other fields in the same table.

In general, it is best to not use `` tags in the type field, although it is possible. There can be conflicts which may result in duplicate replacements and unintended results.

fhir.cerner.com's People

Contributors

amcginn avatar anurag-balannagari avatar averyallen avatar beichhor avatar cerbs-of-yore avatar coffeevee avatar daliboz avatar davischristi avatar dayouj avatar ebbp123 avatar ericsornson avatar icon5585 avatar jfisk42 avatar jfrhong avatar kckeim avatar khansasultana avatar lalitha94 avatar madhurraj avatar mani7002 avatar maxphilips avatar mbeerman avatar napster235 avatar naveenaluru avatar pavloshabatin avatar ricardocrespo-ora avatar shrutinhegde avatar surya-rnsit avatar sydneanschutz0808 avatar wseymour15 avatar zsura avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.