This wiki has undergone a migration to Confluence found Here
<meta name="googlebot" content="noindex">

FHIR Guide to Authoring Resources

From HL7Wiki
Jump to navigation Jump to search

This is the technical documentation that describes what you do to author a resource that will be part of the FHIR specification. There is a also a Design Guide that addresses how resources should be designed.

Note: before attempting to author resources, you MUST be able to successfully run the FHIR build process. You must also sign up to the FHIR Committers Skype chat (contact an FMG member or other known FHIR developer to get added).

Background

All FHIR resources have both a lower camel case name [name], and an upper camel-case name [Name]. Each resource has a sub-directory [name] in the source folder of the FHIR svn hierarchy, which contains all the files related to the resource. The build process looks for the following files:

  • an excel spreadsheet [name]-spreadsheet.xml that defines the content and behavior of the resource
  • several xhtml files that allow additional text documentation to be added for the resource
    • [name]-notes.xml - text documentation that goes below the formal resource definition on the resource page
    • [name]-introduction.xml - text documentation that goes above the formal resource definition on the resource page
    • others yet to be documented
  • one or more [name]-(whatever)-example.xml which is an example of the resource (refer to #Example Elements Tab for guidance on naming example files.

Only the first file must exist, though at least one example must exist. Managing examples is discussed further below.

Creating a new resource

Creating a new resource is only done by the FHIR project team once a new resource has been proposed and accepted. This section documents the process that the project team follows. paths are relative to the source directory.

  1. test and make sure your local copy of the build process completes without errors (so that if something breaks, you can be confident it's your fault . . .)
  2. create the directory [name] in the source directory
  3. copy /template/template-spreadsheet.xml to /[name]/[name]-spreadsheet.xml (and open it, and replace "Template" in the first column of the Data Elements tab with [Name])
  4. copy /template/template-html.xml to /[name]/[name]-notes.xml and /[name]/[name]-introduction.xml
  5. copy /template/template-example.xml /[name]/[name]-example.xml
  6. add the new directory and its files to SVN
  7. edit /fhir.ini
    1. add [name]=[Name] to the [resources] section
    2. add [Name]=tla the tlas section
    3. add [name]=committee to workgroups section
  8. edit /heirarchy.xml and add your page under the correct place within the site's navigation
  9. open /compartments.xml with Excel and indicate which search parameters can be used to place the resource in a Patient or Practitioner compartment (or leave empty if N/A)
  10. add your resource to /resourcelist.html (both in the right category and under the right caption letter)
  11. add a translation for your resources name to implementations/translations.xml
  12. edit the example to fill out the [Name] on the base node and add a <id value="xxx"/> where xxx is what you're going to call the example (usually "example")
  13. test and make sure the build completes without errors
  14. commit all changes to SVN

Editing a FHIR resource

Instructions for how to make use of the FHIR resource spreadsheet can be found here. Instructions on using the notes and introduction HTML pages are embedded as comments within the XHTML templates. If you run into issues, ask a question on the FHIR Committers list.