FHIR Shorthand
3.0.0-ballot - ballot International flag

This page is part of the FHIR Shorthand (v3.0.0-ballot: Release 3 Ballot 1) based on FHIR R4. The current version which supercedes this version is 2.0.0. For a full list of available versions, see the Directory of published versions

Language Reference


Candidate for Normative or already Normative except where noted Trial Use TU.

This chapter contains the formal specification of the FHIR Shorthand (FSH) language. It is intended primarily as a reference, not a tutorial. For tutorials and additional documentation please consult the Overview or go to fshschool.org.

In this specification, the key words “MUST”, “MUST NOT”, “REQUIRED”, “SHALL”, “SHALL NOT”, “SHOULD”, “SHOULD NOT”, “RECOMMENDED”, “MAY”, and “OPTIONAL” are to be interpreted as described in RFC2119.

Portions of the specification designated as Trial Use are indicated by TU and background shading. Remaining unmarked sections contain normative content.

Notational Conventions

The FSH specification uses syntax expressions to illustrate the FSH language. While FSH has a formal grammar (see Appendix: FSH Grammar), most readers will find the syntax expressions more instructive.

Syntax expressions use the following conventions:

Table 1. Syntax expressions

Style Explanation Example
this is FSH Font used for FSH fragments, such as keywords, statements, and syntax expressions * status = #open
{ } Substitution: If a datatype, replace with a value; if an item, replace with a name, id, or URL {decimal}
< > Indicates an element or path to an element with the given datatype should be substituted <CodeableConcept>
orange color An optional item in a syntax expression {flag}
... Indicates a pattern that MAY be repeated {flag1} {flag2} {flag3} ...
/ A choice of items Resource/Profile
bold A directory path or file name example-1.fsh

Syntax Expression Examples:

  • A FSH rule to assign the value of a Quantity:

    * <Quantity> = {decimal or integer} '{UCUM unit}'
    

    A FSH statement following this pattern would be written as:

    • An asterisk, followed by
    • Any element of datatype Quantity or a path to an element with datatype Quantity, followed by
    • An equals sign, followed by
    • Any decimal or integer number, followed by
    • Any Unified Code for Units of Measure (UCUM) unit, enclosed in single quotes.
  • A rule to constrain an element to a certain datatype or types:

      * <element> only {datatype(s)}
    

    A FSH statement following this pattern would be written as:

    • An asterisk, followed by
    • Any element or a path to any element, followed by
    • The word only, followed by
    • A list including at least one valid datatype, with additional datatypes separated by the word or (see Table 3).

The following tables contain additional examples of angle brackets and curly braces used in this IG:

Table 2. Interpretation of paths in syntax expressions

Syntax term Substitute… Example(s)
<bindable> An element or path to an element whose datatype allows it to be bound to a value set code
<CodeableConcept> An element or path to an element whose datatype is CodeableConcept category
<element> Any element or path to any element method.type
<element(s)> One or more elements or paths, separated by and category and method and method.type
<Extension> An element or path to an element whose datatype is Extension extension
modifierExtension
bodySite.extension

Table 3. Interpretation of substitutions in syntax expressions

Syntax term Substitute… Example(s)
{card} A cardinality expression 0..1
{code} A code #active
{CodeSystem} The name, id, or URL of a code system http://terminology.hl7.org/CodeSystem/v2-0776
v2-0776 // id
ItemStatus // name
{decimal} A decimal number, optionally including an exponent 124.0
58.3E-5
{datatype} A FHIR datatype or FHIR resource type defined in the project’s FHIR version decimal
ContactPoint
Reference(Patient)
{datatype(s)} One or more FHIR datatypes or FHIR resource types defined in the project’s FHIR version, separated by or Quantity or CodeableConcept
Reference(Patient or Practitioner)
Canonical(ActivityDefinition)
{Extension} The name, id, or canonical URL (or alias) of an Extension duration
allergyintolerance-duration
http://hl7.org/fhir/StructureDefinition/allergyintolerance-duration
{flag} One of the FSH flags MS
{flag(s)} One or more flags, separated by whitespace MS SU ?!
{Invariant} The id of an Invariant us-core-6
{Resource} The name, id, or canonical URL (or alias) of any Resource defined in the project’s FHIR version Condition
{Resource/Profile} The name, id, or canonical URL (or alias) of any Resource or Profile Condition
http://hl7.org/fhir/us/core/StructureDefinition/us-core-location
{RuleSet} The name of a RuleSet MyRuleSet
{ValueSet} The name, id, or canonical URL (or alias) of a ValueSet http://hl7.org/fhir/ValueSet/address-type

Note: When listing multiple items, consecutive elements and paths are always separated by and, consecutive flags are always separated by white spaces, and consecutive datatypes are always separated by or. When listing multiple References, the or is placed inside the Reference, e.g. Reference(Patient or Practitioner), not Reference(Patient) or Reference(Practitioner)

FSH Projects

A fundamental organizing construct is the FSH project, which defines the set of FSH items to be considered together. Typically, one FSH project equates to one FHIR Implementation Guide (IG). The parts of a FSH project are as follows:

Canonical URL

Each project MUST have an associated canonical URL, used for constructing canonical URLs for items created in the project. It is up to implementations to decide how this association is made.

Items

A FSH project SHALL contain one or more FSH items used to represent and create FHIR artifacts. FSH items can exist in various formats, for example, in text files, databases, or web forms. It is up to implementations to define the association between FSH items and FSH projects. The order of items, regardless of format, SHALL NOT affect the interpretation of those items.

Text files containing FSH items MUST use the .fsh extension. Items from all files in one project SHALL be considered globally pooled for the purposes of FSH. Changing the order of items within a .fsh file or moving FSH items between files SHALL NOT affect the interpretation of the content.

FHIR Version

Each FSH project MUST specify the version of FHIR it depends upon. It is up to implementations to decide how projects declare their FHIR version. Implementations MAY support only a specific version or versions of FHIR.

The FSH language specification has been designed around FHIR R4 and later. FSH depends primarily on normative parts of the FHIR R4 specification (e.g., StructureDefinition and datatypes), and not on specific Resources, Profiles, Value Sets or Extensions. As a result, many FHIR version differences can be ignored. However, because the FSH specification refers to FHIR data types and definitional artifacts, there is no way to absolutely divorce FSH from specific FHIR versions.

TU

FSH supports new FHIR R5 datatypes integer64 and CodeableReference on a trial use basis.

External IGs

Dependencies between a FSH project and other IGs MUST be declared. The form of this declaration is outside the scope of the FSH language and SHOULD be managed by implementations. In this Guide, these are referred to as “external” IGs.

Other Project Contents

Projects MAY contain other content involved in creating FHIR IGs, such as narrative text, pictures, and configuration information. This additional content is not defined in this specification, but may be specified by implementations.

FSH Language Basics

Grammar

The grammar of FSH has been described using ANTLR (see Appendix: FSH Grammar). The ANTLR grammar captures the syntax of FSH, but is not a complete specification of the language, since FSH defines the additional validation criteria for rules and items, and the behavior of rules in terms of FHIR artifacts.

If there is discrepancy between the grammar and the FSH language description, the language description is considered correct until the discrepancy is clarified and addressed.

Reserved Words

FSH has a number of reserved words, symbols, and patterns. Reserved words and symbols with special meaning in FSH are: contains, named, and, only, or, obeys, true, false, include, exclude, codes, where, valueset, system, from, insert, TUcontentReference, !?, MS, SU, N, TU, D, =, *, :, ->, .,[, ].

The following words are reserved, with or without white spaces prior to the colon: Alias:, TUCharacteristics:, CodeSystem:, TUContext:, Extension:, Instance:, Invariant:, Logical:, Mapping:, Profile:, Resource:, RuleSet:, ValueSet:, Description:, Expression:, Id:, InstanceOf:, Parent:, Severity:, Source:, Target:, Title:, Usage:, XPath:.

The following words are reserved, with or without white spaces inside the parentheses: (example), (preferred), (extensible), (required), (exactly).

The following words are reserved when followed by an opening parenthesis ( with or without whitespace preceeding it, a sequence of text, and then a closing parenthesis ): Canonical, TUCodeableReference, Reference.

Whitespace

Repeated whitespace has meaning in FSH only within string literals and when used for indenting rules. In all other contexts, repeated whitespace is not meaningful. Whitespace insensitivity can be used to improve readability. For example:

* component contains appearanceScore 0..3 and pulseScore 0..3 and grimaceScore 0..3 and activityScore 0..3 and respirationScore 0..3

can be reformatted as:

* component contains
    appearanceScore 0..3 and
    pulseScore 0..3 and
    grimaceScore 0..3 and
    activityScore 0..3 and
    respirationScore 0..3

Comments

FSH follows JavaScript syntax for code comments:

// Use a double-slash for comments on a single line

/*
Use slash-asterisk and asterisk-slash for larger block comments.
These comments can take up multiple lines.
*/

The ANTLR implementation given in the Appendix discards comments, however, implementations are free to use approaches that process comments.

Primitives

The primitive datatypes and value formats in FSH are those defined in the version of FHIR associated with the FSH project. References in this document to code, id, oid, etc. refer to the primitive datatypes in the referred FHIR version.

FSH strings support the escape sequences that FHIR already defines as valid in its regex for strings: \r (unicode U+000D), \n (U+000A), and \t (U+0009). Strings MUST be delimited by non-directional (neutral) quotes (U+0022). Left and right directional quotes (U+201C and U+201D) sometimes automatically inserted by “smart” text editors SHALL NOT be accepted. Left and right directional single quotes (U+2018 and U+2019) SHALL NOT be accepted in contexts requiring a single quotation mark; use the non-directional apostrophe (U+0027) instead.

References

FHIR elements can contain references to other Resources. FSH represents references using the syntax Reference({Resource/Profile}). A resource of profile SHALL be identifiable by name, id, or URL. For example, Reference(USCorePatientProfile), Reference(us-core-patient), and Reference(http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient) all are valid references to the US Core Patient profile. When referring to a Reference element, the Reference() MUST be included, except in the case of a reference choice path. When syntax allows for multiple References, the items are separated by or placed inside the parentheses, e.g. Reference(Patient or Practitioner), not Reference(Patient) or Reference(Practitioner).

In constructing profiles, references typically refer to resource or profile types, for example, the subject of an Observation could be constrained to Reference(Patient or Group). Inside instances, references typically refer to other instances, for example, a subject of an Observation could be Reference(JaneDoe), assuming JaneDoe names a Patient instance. In this case, since JaneDoe is a Patient instance, Reference(JaneDoe) is resolved to Patient/JaneDoe. If a reference value in an instance does not reference an existing instance, the value is used directly. For example, if the subject of an Observation is Reference(Alice), and Alice does not name a Patient instance, the reference resolves to Alice.

Canonicals

FHIR elements can reference other resources by their canonical URL. A canonical reference refers to the standard URL associated with a FHIR item. For elements that require a canonical datatype, FSH accepts a URL or an expression in the form Canonical({name or id or url}). Canonical() stands for the canonical URL of the referenced item.

For items defined in the same FSH project, the canonical URL is constructed using the FSH project’s canonical URL. Canonical() therefore enables a user to change the FSH project’s canonical URL in a single place with no changes to FSH definitions.

When syntax allows for multiple Canonicals, the items are separated by or placed inside the parentheses, e.g. Canonical(ActivityDefinition or PlanDefinition), not Canonical(ActivityDefinition) or Canonical(PlanDefinition).

Examples:

  • The canonical URL for the FHIR Yes/No/Don’t Know value set, which evaluates to “http://hl7.org/fhir/ValueSet/yesnodontknow”:

    Canonical(yesnodontknow)
    
  • Assuming the current FSH project has a canonical URL of “http://example.org”, and ExampleValueSet is a defined value set within the FSH project with an id of example-value-set, the following expression evaluates to “http://example.org/ValueSet/example-value-set”:

    Canonical(ExampleValueSet)
    
  • Adding a specific version to the argument of a Canonical expression results in the stated version appended to the canonical URL. So this:

    Canonical(us-core-allergyintolerance|3.1.1)
    

    evaluates to this: “http://hl7.org/fhir/us/core/StructureDefinition/us-core-allergyintolerance|3.1.1”

Codes and Codings

FSH provides special grammar for expressing codes and Codings. Codes are denoted with # sign. The FSH syntax is:

#{code}

or

#"{code}"

In general, the first syntax is sufficient. Quotes are only required when a code contains white space.

FSH represents Codings as follows:

{CodeSystem}|{version string}#{code} "{display string}"

As indicated by orange-colored text, the version and display strings are optional. CodeSystem represents the controlled terminology the code is taken from, either by name, by id, or canonical URL. The vertical bar syntax for the version of the code system is the same approach used in the canonical datatype in FHIR. To set the less-common properties of a Coding or to set properties individually, assignment rules can be used.

This syntax is also used with CodeableConcepts (see Assignments with the CodeableConcept Data Type)

Examples:

  • The code postal used in Address.type:

    #postal
    
  • The code <= from the Quantity Comparator value set:

    #<=
    
  • A code containing white space:

    #"VL 1-1, 18-65_1.2.2"
    
  • A Coding from SNOMED-CT:

    http://snomed.info/sct#363346000 "Malignant neoplastic disease (disorder)"
    
  • The same Coding, assuming $SCT has been defined as an alias for http://snomed.info/sct:

    $SCT#363346000 "Malignant neoplastic disease (disorder)"
    
  • A Coding from ICD10-CM, assuming the alias $ICD for that code system:

    $ICD#C004 "Malignant neoplasm of lower lip, inner aspect"
    
  • A Coding with an explicit version specified with bar syntax:

    http://hl7.org/fhir/CodeSystem/example-supplement|201801103#chol-mmol
    

Quantities

FSH provides a shorthand that allows three aspects of a Quantity to be set simultaneously:

  • The numerical quantity (Quantity.value)
  • The units of measure (Quantity.system and Quantity.code)
  • Optionally, the human-readable displayed units (Quantity.unit)

The grammar is either:

{decimal} '{UCUM code}' "{display}"

or

{decimal} {CodeSystem}|{version string}#{code} "{display}"

The first shorthand only applies if the units are expressed in Unified Code for Units of Measure (UCUM). As a side effect of using this grammar, the code system (Quantity.system) will be automatically set to the UCUM code system (http://unitsofmeasure.org). The second shorthand MAY be used when the units are not UCUM. Alternatively, the value and units MAY be assigned independently (see Assignments with the Quantity Data Type).

Examples:

  • Express a weight in pounds, using UCUM units, displaying “lb”:

    155.0 '[lb_av]' "lb"
    
  • Express the same weight in pounds, using NCI Thesaurus code for the units:

    155.0 http://ncithesaurus-stage.nci.nih.gov#C48531 "Pound"
    

Triple-Quoted Strings

While line breaks are supported using normal strings, FSH also supports different processing for strings demarcated with three double quotation marks """. This feature can help authors to maintain consistent indentation in FSH items. As an example, an author might use a triple-quoted string to write markdown so that the markdown is neatly indented:

* ^purpose = """
    * This profile is intended to support workflows where:
      * this happens; or
      * that happens
    * This profile is not intended to support workflows where:
      * nothing happens
  """

Using a single-quoted string requires the following spacing to accomplish the same markdown formatting:

* ^purpose = "* This profile is intended to support workflows where:
  * this happens; or
  * that happens
* This profile is not intended to support workflows where:
  * nothing happens"

The difference between these two approaches is that the latter obscures the fact that the first and fourth line are at the same indentation level, and makes it appear there are two rules because of the asterisk in the first column. The former approach allows the first line to be empty so the string is defined as a block, and allows the entire block to be indented, so visually, it does not appear a second rule is involved (because of the asterisk in the first column). Using triple-quoted strings is entirely a matter of preference.

When processing triple-quoted strings, the following approach is used:

  • If the first line or last line contains only whitespace (including newline), discard it.
  • If any other line contains only whitespace, truncate it to zero characters.
  • For all other non-whitespace lines, detect the smallest number of leading spaces and trim that from the beginning of every line.

Item Names

Item names SHOULD follow FHIR naming guidance. All names MUST be between 1 and 255 characters. Alias names SHOULD begin with $, otherwise, names MUST begin with an uppercase letter and contain only letters, numbers, and underscores (“_”).

By convention, item names SHOULD use PascalCase (also known as UpperCamelCase). Slice names and local slice names for extensions SHOULD use lower camelCase. These conventions are consistent with FHIR naming conventions.

Beginning alias names with $ is a good practice, since this convention allows for additional error checking (see Defining Aliases for details).

Note: Instances have identifiers rather than names, so instance declarations should follow the recommendations for Item Identifiers.

Item Identifiers

Item identifiers (ids) MUST be unique within the scope of its item type in the FSH project. For example, two Profiles with the same id cannot coexist, but it is possible to have a Profile and a ValueSet with the same id in the same FSH Project. However, to minimize potential confusion, it is best to use a unique id for every item in a FSH project. If no id is provided by a FSH author, implementations MAY create an id.

By convention, ids SHOULD be lowercase with words separated by hyphens. The overall length MUST NOT be more than 64 characters (per the requirements of the FHIR id datatype). If the item has a name, the id SHOULD be based on the item’s name, with _ replaced by -, changed to lowercase, and truncated if necessary.

Referring to Items

FSH allows internal and external items to be referred to by name, id, or canonical URL.

A FSH item within the same project SHOULD be referred to by the name or id given in the item’s declaration statement. Core FHIR resources SHOULD be referred to by name, e.g., Patient or Observation. Items from external IGs and extensions, profiles, code systems, and value sets in core FHIR SHOULD be referred to by their canonical URLs, since this approach minimizes the chance of name collisions. In cases where an external name or id clashes with an internal name or id, then the internal item takes precedence, and the external item MUST be referred to by its canonical URL.

FSH Paths

FSH path grammar allows you to refer to any element of a profile, extension, or instance, regardless of nesting. Here are examples of things paths can refer to:

  • Top-level elements such as the code element of an Observation
  • Nested elements, such as the text element of the method element of an Observation
  • Elements in a list or array, such as the second element in the name array of a Patient resource
  • Individual datatypes of choice elements, such as onsetAge in onset[x]
  • Individual slices within a sliced array, such as the systolicBP component in a blood pressure Observation
  • Metadata elements of definitional resources, such as the experimental and active elements of a StructureDefinition.
  • Properties of ElementDefinitions nested within a StructureDefinition, such as the maxLength property of string elements

In the following, the various types of path references are discussed. Some examples are presented using simple rules. For rule syntax and meaning, see FSH Rules.

Top-Level Paths

The path to a top-level element is denoted by the element’s name. Because paths are used within the context of a FSH definition or instance, the path MUST NOT include the resource name. For example, when defining a profile of Observation, the path to Observation.code is just code.

Example:

  • The path to the status of a MedicationRequest:

    status
    

Nested Element Paths

To refer to nested elements, the path lists the properties in order, separated by a dot (.). Since the resource can be inferred from the context, the resource name is not included in the path.

Examples:

  • The path to the lot number of a Medication:

    batch.lotNumber
    
  • The path to the plain text representation of the site of a MedicationAdministration:

    dosage.site.text
    

Reference Paths

Elements can offer a choice of reference types. In the FHIR specification, these choices are presented in the style Reference(Procedure | Observation). To address a specific resource or profile among the choices, append the target Resource or Profile (represented by a name, id, or url) enclosed in square brackets to the path.

Note: It is not permissible to cross reference boundaries in paths. This means that when a path gets to a Reference, that path cannot be extended further. For example, if Procedure has a subject element that has datatype Reference(Patient), and Patient has a gender, then subject is a valid path, but subject.gender is not, because it crosses into the Patient resource.

Examples:

  • Path to the Reference(Practitioner) option of DiagnosticReport.performer, whose acceptable datatypes are Reference(Practitioner), Reference(PractitionerRole), Reference(Organization) or Reference(CareTeam):

    performer[Practitioner]
    
  • Path to the Reference(US Core Organization) option of the performer element in US Core DiagnosticReport Lab, using the canonical URL:

    performer[http://hl7.org/fhir/us/core/StructureDefinition/us-core-organization]
    
  • The same path, using the id of the US Core Organization profile instead of its canonical URL:

    performer[us-core-organization]
    

Data Type Choice [x] Paths

FHIR represents an element with a choice of datatypes using the style foo[x]. For example, Condition.onset[x] can be a dateTime, Age, Period, Range or string. In FSH, as in FHIR, to refer to one of these datatypes, replace the [x] with the datatype name, capitalizing the first letter. For Condition.onset[x], the individual choices are onsetDateTime, onsetAge, onsetPeriod, onsetRange, and onsetString.

Note: foo[x] choices are NOT represented as foo[dateTime], foo[Period], etc.

Examples:

  • The path to the string datatype of Observation.value[x]:

    valueString
    
  • The path to the Reference datatype choice of Medication.ingredient.item[x]:

    ingredient.itemReference
    
  • Given that the itemReference has further choices Reference(Substance) or Reference(Medication), the path to the Reference(Substance) choice:

    ingredient.itemReference[Substance]
    

Array Paths using Numerical Indices

FSH uses square-bracketed integers to address elements in arrays. Arrays are referenced using 0-based indices, meaning that the first array element is referenced by [0], the second element is referenced by [1], etc. Arrays with missing elements (gaps in the sequence of indices) are not allowed. If the index is omitted, the first element of the array ([0]) is assumed.

Numerical indices apply only to arrays that can be populated with concrete values, e.g., in instances or in metadata elements of StructureDefinitions. Numerical indices SHOULD NOT be used in Profiles, because arrays in profiles are not populated per se, and only contain constraints on the values that can appear in instances. The exception is setting metadata properties of StructureDefinitions using caret paths, since these are actually concrete properties of a StructureDefinition instance. The preferred way to reference arrays in Profiles is by slice name.

Examples:

  • Path to first element in Patient.name field within an instance of Patient:

    name[0]
    
  • Path to a patient’s second given name in the first name field within an instance of Patient:

    name[0].given[1]
    
  • An equivalent path expression, since the zero index is assumed when omitted:

    name.given[1]
    

Array Paths using Soft Indexing

Numerical array references MAY be replaced with so-called “soft indexing.” In soft indexing, [+] is used to increment the last referenced index by 1, and [=] is used to reference the same index that was last referenced. When an array is empty, [+] refers to the first element ([0]). FSH also allows for soft and numerical indices to be mixed.

Similar to numerical indices, soft indices should only be used when populating or referencing arrays in instances, or when using caret paths.

Soft indexing is useful when populating long arrays, allowing elements to be inserted, deleted, or moved without updating numerical indices. Complex resources such as Bundle and CapabilityStatement have arrays that may contain scores of items. Managing indices can become tedious and error prone when adding or removing items in the middle of a long list.

Another use case for soft indexing involves rule sets. Rule sets provide a way to avoid repeating the same pattern of rules when populating an array (see example).

For nested arrays, several sequences of soft indices can run simultaneously. The sequence of indices at different levels of nesting are independent and do not interact with one another. However, when arrays are nested, incrementing the index of the parent (outer) array advances to the next child (inner) array, so the next child element referred to by [+] is at index [0]. (An analogy is using a keyboard’s Enter key to advance to a new line that initially has no characters.)

Examples:

  • Assign multiple names in an instance of a Patient using soft indices:

    * name[+].given = "Robert"
    * name[=].family = "Smith"
    * name[+].given = "Rob"
    * name[=].family = "Smith"
    * name[+].given = "Bob"
    * name[=].family = "Smith"
    

    is equivalent to:

    * name[0].given = "Robert"
    * name[0].family = "Smith"
    * name[1].given = "Rob"
    * name[1].family = "Smith"
    * name[2].given = "Bob"
    * name[2].family = "Smith"
    
  • Add second given name to the example above, using soft indexing:

    * name[+].given[+] = "Robert"
    * name[=].given[+] = "David"
    * name[=].family = "Smith"
    * name[+].given[+] = "Rob"
    * name[=].given[+] = "Dave"
    * name[=].family = "Smith"
    * name[+].given[+] = "Bob"
    * name[=].given[+] = "Davey"
    * name[=].family = "Smith"
    

    is equivalent to:

    * name[0].given[0] = "Robert"
    * name[0].given[1] = "David"
    * name[0].family = "Smith"
    * name[1].given[0] = "Rob"
    * name[1].given[1] = "Dave"
    * name[1].family = "Smith"
    * name[2].given[0] = "Bob"
    * name[2].given[1] = "Davey"
    * name[2].family = "Smith"
    

Sliced Array Paths

FHIR allows lists in profiles and extensions to be compartmentalized into sublists called “slices”. To address a specific slice, follow the path with square brackets containing the slice name. Since slices are most often unordered, slice names rather than array indices SHOULD be used. Note that slice names (like other FSH item names) cannot be purely numerical, so slice names cannot be confused with indices.

To access a slice of a slice (a resliced array), follow the first pair of brackets with a second pair containing the resliced slice name.

Since slices are sublists, a sliced array path technically points to the first item in the sublist (e.g., index 0 of the slice’s sublist). Other items in the sublist can be accessed by appending square-bracketed integer indices (e.g., [1]) or soft indices (e.g., [+]) to the end of the sliced array path. In this case, indices are relative to the first item in the slice.

Examples:

  • Path to the coded value of the respirationScore component within an Observation profile representing an Apgar test:

    component[respirationScore].code
    
  • Paths to the codes representing the one minute and five minute respiration scores, assuming the Apgar respiration component has been resliced:

    component[respirationScore][oneMinuteScore].code
    
    component[respirationScore][fiveMinuteScore].code
    
  • Paths to the resources of the second and third entries in the medications slice of a profiled Bundle:

    entry[medications][1].resource
    
    entry[medications][+].resource
    

Extension Paths

Extension arrays are found at the root level of every resource, nested inside every element, and recursively inside each extension. Extensions are elements in these arrays. When an extension is specified in an extension array within a profile or extension definition, a name (technically, a slice name) is assigned. Extensions MAY be identified by slice name or the extension’s URL.

The path to an extension is constructed by combining the path to the extension array with a reference to a slice name in square brackets:

<Extension>[{name or id or URL}]

Since an extension array in an instance may contain multiple extensions of the same type, additional instances of the extension can be accessed using a square-bracketed index:

<Extension>[{name or id or URL}][{index}]

For locally-defined extensions, using the slice name is the simplest choice. For externally-defined extensions, the canonical URL can be easier to find than the slice name.

Note: The same path construction applies to modifierExtension arrays; simply replace extension with modifierExtension.

Examples:

  • Path to the value of the birth sex extension in US Core Patient, whose local slice name is birthsex:

    extension[birthsex].valueCode
    
  • Path to an extension on the telecom element of Patient, assuming the extension has been given the local slice name directMailAddress:

    telecom.extension[directMailAddress]
    
  • Same as the previous example, but using the canonical URL for the direct mail extension defined in US Core:

    telecom.extension[http://hl7.org/fhir/us/core/StructureDefinition/us-core-direct]
    
  • Path to the Coding datatype of the value[x] in the nested extension ombCategory under the ethnicity extension in US Core, using the slice names of the extensions:

    extension[ethnicity].extension[ombCategory].valueCoding
    
  • Path to the Coding value in second element in the nested extension array named detailed, under USCoreEthnicity extension:

    extension[ethnicity].extension[detailed][1].valueCoding
    

Caret Paths

FSH uses the caret (^) symbol to access elements of definitional items corresponding to the current context. Caret paths SHALL be accepted in the following FSH items: Profile, Extension, Logical, Resource, ValueSet, and CodeSystem. Caret syntax SHALL NOT be used with the following paths, because the order of elements in these paths may vary between implementations:

  • snapshot.element and differential.element in Profile, Extension, Logical, and Resource items
  • compose.include and compose.exclude in ValueSet items

Examples of elements that require the caret syntax include StructureDefinition.experimental, StructureDefinition.abstract and ValueSet.purpose. The caret syntax also provides a simple way to set metadata attributes in the ElementDefinitions that comprise the snapshot and differential tables (e.g., short, meaningWhenMissing, and various slicing discriminator properties).

For a path to an element of a StructureDefinition, excluding the differential and snapshot, use the following syntax inside a Profile, Extension, Logical, or Resource:

^<element of StructureDefinition>

For a path to an element of an ElementDefinition within a StructureDefinition, use this syntax:

<element in Profile> ^<element of corresponding ElementDefinition>

Note: There is a required space before the ^ character.

A special case of the ElementDefinition path is setting properties of the first element of the differential (i.e., StructureDefinition.differential.element[0]). This element always refers to the profile or standalone extension itself. Since this element does not correspond to a named element appearing in an instance, we use the dot or full stop (.) to represent it (The dot symbol is often used to represent “current context” in other languages). It is important to note that the “self” elements are not the elements of a StructureDefinition directly, but elements of the first ElementDefinition contained in the StructureDefinition. The syntax is:

. ^<element of StructureDefinition.differential[0]>

Examples:

  • In a profile definition, path to the corresponding StructureDefinition.experimental attribute:

    ^experimental
    
  • In a profile of Patient, the path to binding.description in the ElementDefinition corresponding to communication.language:

    communication.language ^binding.description
    
  • The path to the short description of an extension (defined in the first ElementDefinition):

    . ^short
    

FSH Items

Structure of FSH Items

A central purpose of FSH is to create and define items that represent and can be translated into FHIR artifacts. The general pattern used to define an item in FSH is:

  • Declaration statement
  • Keyword statements
  • Rule statements

While every FSH item requires a declaration, depending on the item type, keyword statements and rules may not be required, or even permitted.

Declaration Statements

Declaration statements follow the syntax:

{declaration}: {value}

A declaration is always the first statement in an item definition. The value represents the item’s name or identifier (id), depending on the item’s type, as shown in the table below:

Table 4. Declarations defined by FSH

Declaration Creates… Data Type
Alias An alias for a URL or OID expression
CodeSystem A code system name
Extension An extension name
Instance An instance id
Invariant An invariant id
Logical A logical model name
Mapping A mapping id
Profile A profile name
Resource A custom resource name
RuleSet A set of rules that can be reused name
ValueSet A value set name
Keyword Statements

Keyword statements directly follow the declaration and precede any rules. Keyword statements follow the syntax:

{keyword}: {value}

The following keywords (case-sensitive) are defined:

Table 5. Keywords defined by FSH

Keyword Purpose Data Type
Characteristics TU Specifies characteristics for logical models codes
Context TU Specifies context for extensions FHIRPath strings and element paths
Description Provides a human-readable description string or markdown
Expression Provides a FHIR path expression in an invariant FHIRPath string
Id Provides an identifier for an item id
InstanceOf Names the profile, resource, or logical model* an instance instantiates name or id or url
Parent Names the base definition for a profile or extension name or id or url
Severity Specifies whether violation of an invariant represents an error or a warning code
Source Provides the profile the mapping applies to name
Target Provides the standard being mapped to uri
Title Provides a short human-readable name string
Usage Specifies how an instance is intended to be used in the IG code
XPath Provides the XPath in an invariant XPath string

* Defining instances of logical models in FSH is TU.

In the above, name refers to a valid item name and id to an item identifier.

Depending on the type of item being defined, keywords may be required, suggested, optional, or prohibited. The following table shows the relationship between declarations and keywords:

Table 6. Relationships between declarations and keywords in FSH

         Keyword →
Declaration ↓
Id Description Title Parent InstanceOf Usage Source Target Severity Expression XPath Context TU Characteristics TU
Alias                          
Code System S S S                    
Extension S S S O               S  
Instance   S S   R O              
Invariant   S*             O* O O    
Logical S S S O                 O
Mapping S S S       R R          
Profile S S S R                  
Resource S S S O                  
Rule Set                          
Value Set S S S                    

KEY: R = required, S = suggested (SHOULD be used), O = optional, blank = prohibited

TU *If not specified, a corresponding assignment rule (for human or severity) must specify the value instead.

Rule Statements

A number of rules may follow the keyword statements. The grammar and meaning of different rule types are discussed in the FSH Rules section. Without defining the rule types here, the following table shows the applicability of rule types to item types:

Table 7. Relationships between FSH items and FSH rules

            Item →
Rule Type ↓
Alias Code System Extension Instance Invariant Logical Mapping Profile Resource Rule Set Value Set
Add Element           Y     Y Y  
Assignment   C Y Y TU Y C   Y C Y C
Binding     Y     A   Y A Y  
Cardinality     Y     A   Y A Y  
Contains (inline extensions)     Y             Y  
Contains (standalone extensions)     Y         Y   Y  
Contains (slicing)     Y         Y   Y  
Exclude                   Y Y
Flag     Y     L   Y L Y  
Include                   Y Y
Insert   Y Y Y TU Y Y Y Y Y Y Y
Local Code   Y               Y  
Mapping             Y     Y  
Obeys     Y     Y   Y Y Y  
Path     Y Y TU Y Y Y Y Y Y  
Type     Y     A   Y A Y  

KEY: Y = Rule type MAY be used, L = All flags except must support (MS) are supported, C = Assignments apply only to caret paths, A = Rules can only be applied to elements defined by the item (not inherited elements), blank = prohibited.

Defining Aliases

Aliases allow the user to replace a lengthy url, oid, or uuid with a short string. Aliases are for readability only, and do not change the meaning of rules. Typical uses of aliases are to represent code systems and canonical URLs.

Alias definitions follow this syntax:

Alias: {Alias name} = {url or urn:oid or urn:uuid}

Several things to note about aliases:

  • Aliases do not permit additional keywords or rules.
  • Aliases cannot be used as variables for arbitrary strings or names.
  • OIDs and UUIDs must be specified using the urn:oid or urn:uuid schemes.
  • Alias statements stand alone, and cannot be mixed into rule sets of other items.
  • Aliases can only be substituted where a full uri value is expected (e.g., they cannot be placed in the middle of a string).
  • Aliases are global within a FSH project.

In contrast with other names in FSH (for profiles, extensions, etc.), alias names optionally begin with a dollar sign ($). If you define an alias with a leading $, implementations can more easily check for misspellings. For example, if you choose the alias name $RaceAndEthnicity and accidentally type $RaceEthnicity, implementations can easily detect there is no alias by that name. Without the $ sign, implementations are forced to look through FHIR Core and all external implementation guides for anything with that name or id, or in some contexts, assume it is a new item, with unpredictable results.

Examples:

  Alias: $SCT = http://snomed.info/sct
 
  Alias: $RaceAndEthnicityCDC = urn:oid:2.16.840.1.113883.6.238
 
  Alias: obs-cat = http://terminology.hl7.org/CodeSystem/observation-category

Defining Code Systems

It is sometimes necessary to define new codes inside an IG that are not drawn from an external code system (aka local codes). Local codes MUST be defined in the context of a code system.

Note: Defining local codes is not best practice, since those codes will not be part of recognized terminology systems. However, when existing vocabularies do not contain necessary codes, it might be necessary to define them – at least temporarily – as local codes.

Creating a code system uses the declaration CodeSystem and RECOMMENDED keywords Id, Title and Description. Codes are then added, one per rule, using the following syntax:

* #{code} "{display string}" "{definition string}"

Notes:

  • There MUST NOT be a code system before the hash sign #. The code system name is given by the CodeSystem declaration.
  • The definition of the term, provided as the second string following the code, is RECOMMENDED but not required.
  • Do not use the word include in a code system rule. The rule is creating a brand new code, not including an existing code defined elsewhere.
  • Metadata attributes for individual concepts, such as designation, can be defined using caret paths.
  • Assignment rules SHALL apply only to caret paths in CodeSystems.

Example:

  • Define a code system for yoga poses:

    CodeSystem:  YogaCS
    Id: yoga-code-system
    Title: "Yoga Code System"
    Description:  "A brief vocabulary of yoga-related terms."
    * #Sirsasana "Headstand"
        "An pose that involves standing on one's head."
    * #Halasana "Plough Pose"
        "A pose from supine position, bringing legs up and over until the toes touch the ground behind the head."
    * #Matsyasana "Fish Pose"
        "A pose from supine position, arching the back and pressing the chest upwards."
    * #Bhujangasana "Cobra Pose"
        "A pose starting from prone position with hands pushing the shoulders upward, with legs and hips remaining on the ground."
    
Defining Code Systems with Hierarchical Codes

Child codes can also be defined, resulting in a hierarchical structure of codes within a code system. To define such codes, list all of the preceding codes in the hierarchy before the new code:

* #{parent code} "{display string}" "{definition string}"
* #{parent code} #{child code} "{display string}" "{definition string}"

Another way to define child codes is to indent (by two spaces per level) their definitions after their parent’s code definition:

* #{parent code} "{display string}" "{definition string}"
  * #{child code} "{display string}" "{definition string}"

Additional levels to any depth SHALL be added in the same manner.

Note: When defining hierarchical codes, parent codes MUST be defined before their children.

Examples:

  • Define a code system for anteater taxonomy with hierarchical codes:
  CodeSystem: AnteaterCS
  Id: anteater-code-system
  Title: "Anteater Code System"
  Description: "A code system for anteater taxonomy with hierarchical codes"
  * #Anteater "Anteater" "Members of suborder Vermilingua, distinguished by its propensity to eat ants"
  * #Anteater #Tamandua "Members of genus Tamandua" "The Tamandua genus of anteaters, mainly found in forests and grasslands"
  * #Anteater #Tamandua #NorthernTamandua "Northern Tamandua" "The northern species of Tamandua anteaters"
  * #Anteater #Tamandua #SouthernTamandua "Southern Tamandua" "The southern species of Tamandua anteaters"
  * #Anteater #GiantAnteater "Giant Anteater" "The Giant Anteater, typically 6 - 7 feet in length"
  • Define the same code system using indentation instead of explicit parents:
  CodeSystem: AnteaterCS
  Id: anteater-code-system
  Title: "Anteater Code System"
  Description: "A code system for anteater taxonomy with hierarchical codes"
  * #Anteater "Anteater" "Members of suborder Vermilingua, distinguished by its propensity to eat ants"
    * #Tamandua "Members of genus Tamandua" "The Tamandua genus of anteaters, mainly found in forests and grasslands"
      * #NorthernTamandua "Northern Tamandua" "The northern species of Tamandua anteaters"
      * #SouthernTamandua "Southern Tamandua" "The southern species of Tamandua anteaters"
    * #GiantAnteater "Giant Anteater" "The Giant Anteater, typically 6 - 7 feet in length"
Code Metadata

Within a CodeSystem definition, the caret syntax can be used to set metadata attributes for individual concepts (e.g., elements of CodeSystem.concept.designation and CodeSystem.concept.property).

For a path to a code within a code system, use this syntax:

#{code} ^<element of corresponding concept>

Examples:

  • To set the designation.use of the code #active:

    * #active ^designation[0].use = $SCT#900000000000003001 "Fully specified name"
    
  • The path to the property code of #recurrence code, a child of the #active code:

    #active #recurrence ^property[0].code
    

Defining Extensions

Defining extensions is similar to defining profiles, except that the parent of an extension is not required. Extensions can also inherit from other extensions, but if the Parent keyword is omitted, the parent is assumed to be FHIR’s Extension element.

All extensions have the same structure, but extensions can either have a value (i.e. a value[x] element) or sub-extensions, but not both. To create a simple extension, the value[x] element should be constrained. To create a complex extension, the extension array of the extension MUST be sliced (see Contains Rules for Extensions).

Since simple and complex extensions are mutually-exclusive, FSH implementations SHOULD set the value[x] cardinality to 0..0 if sub-extensions are specified, set extension cardinality to 0..0 if constraints are applied to value[x], and signal an error if value[x] and extensions are simultaneously specified.

Rules types that apply to Extensions are: Assignment, Binding, Cardinality, Contains (standalone extensions), Contains (inline extensions), Contains (slicing), Flag, Insert, Obeys, Path, and Type.

Examples:

  • How the US Core BirthSex extension (a simple extension) would be defined in FSH:

    Extension: USCoreBirthSexExtension
    Id:   us-core-birthsex
    Title:  "US Core Birth Sex Extension"
    Description: "A code classifying the person's sex assigned at birth as specified by the [Office of the National Coordinator for Health IT (ONC)](https://www.healthit.gov/newsroom/about-onc). This extension aligns with the C-CDA Birth Sex Observation (LOINC 76689-9)."
    Context: Patient
    // publisher, contact, and other metadata could be defined here using caret syntax (omitted)
    * value[x] only code
    * value[x] from http://hl7.org/fhir/us/core/ValueSet/birthsex (required)
    

Note: The use of the Context keyword in the example above is TU.

  • How US Core Ethnicity extension (a complex extension with inline sub-extensions) would be defined in FSH:

    Extension:      USCoreEthnicityExtension
    Id:             us-core-ethnicity
    Title:          "US Core Ethnicity Extension"
    Description:    "Concepts classifying the person into a named category of humans sharing common history, traits, geographical origin or nationality. The ethnicity codes used to represent these concepts are based upon the [CDC ethnicity and Ethnicity Code Set Version 1.0](http://www.cdc.gov/phin/resources/vocabulary/index.html) which includes over 900 concepts for representing race and ethnicity of which 43 reference ethnicity.  The ethnicity concepts are grouped by and pre-mapped to the 2 OMB ethnicity categories: - Hispanic or Latino - Not Hispanic or Latino."
    Context: Patient, RelatedPerson, Person, Practitioner, FamilyMemberHistory
    // publisher, contact, and other metadata could be defined here using caret syntax (omitted)
    * extension contains
        ombCategory 0..1 MS and
        detailed 0..* and
        text 1..1 MS
    * extension[ombCategory] ^short = "Hispanic or Latino|Not Hispanic or Latino"
    * extension[ombCategory].value[x] only Coding
    * extension[ombCategory].value[x] from OmbEthnicityCategories (required) // OmbEthnicityCategories is a value set defined by US Core
    * extension[detailed] ^short = "Extended ethnicity codes"
    * extension[detailed].value[x] only Coding
    * extension[detailed].value[x] from DetailedEthnicity (required) // DetailedEthnicity is defined in US Core
    * extension[text] ^short = "Ethnicity text"
    * extension[text].value[x] only string
    

Note: The use of the Context keyword in the example above is TU.

  • Define an extension with an explicit parent, constraining the US Core Birth Sex extension for US states that do not recognize non-binary birth sex:

    Extension:      BinaryBirthSexExtension
    Parent:         USCoreBirthSexExtension
    Id:             binary-birthsex
    Title:          "Binary Birth Sex Extension"
    Description:    "As of 2019, certain US states only allow M or F on birth certificates."
    * value[x] from BinaryBirthSexValueSet (required)
    

TU

The keyword Context can be used to specify the context of an Extension. When specifying a fhirpath context, the value MUST be a quoted string . When specifying an element or extension context, the value MUST start with the name, id, or URL of the context item. A name or id MAY be followed by a dot (.) and a valid FSH path. A URL MAY be followed by a hash sign (#) and a valid FSH path.

Multiple contexts can be specified by using a comma-separated list. Using the Context keyword instead of using rules to assign directly to the context list on the Extension is RECOMMENDED. The following is a list of allowed formats for contexts:

Specifying a fhirpath context:

Context: "{fhirpath expression}"

Specifying an element or extension context using a StructureDefinition’s name or id:

Context: {StructureDefinition name or id}.{FSH path}

Specifying an element or extension context for using a StructureDefinition’s URL:

Context: {StructureDefinition url}#{FSH path}

An alias may be used in place of the URL.

Specifying multiple contexts as a comma-separated list:

Context: {context 1}, {context 2}, {context 3}...

Examples:

  • Defining an extension with a fhirpath context

    Extension: MyExtension
    Context: "(Condition | Observation).code"
    
  • Defining an extension with an element context on a core FHIR resource

    Extension: MyExtension
    Context: Patient
    
  • Defining an extension with an element context on a specific element in a core FHIR resource

    Extension: MyExtension
    Context: Patient.contact.telecom
    
  • Defining an extension with an element context on a specific element in a Profile defined in FSH

    Profile: MyPatient
    Parent: Patient
    // rules on the Profile omitted
    
    Extension: MyExtension
    Context: MyPatient.contact.telecom
    
  • Defining an extension with an element context that references an element whose path includes a slice. Note that the path uses square brackets to refer to a slice.

    Extension: MyExtension
    Context: USCoreCarePlanProfile.category[AssessPlan].coding
    // You can also use the id or the URL
    // Context: us-core-careplan.category[AssessPlan].coding
    // Context: http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan#category[AssessPlan].coding
    
  • Defining an extension with an extension context

    Extension: MyExtension
    Context: http://hl7.org/fhir/StructureDefinition/capabilitystatement-search-parameter-combination
    // The extension could also be referenced by name or id:
    // Context: CSSearchParameterCombination
    // Context: capabilitystatement-search-parameter-combination
    
  • Defining an extension with an extension context that is part of a complex extension, referencing the extension by name or id

    Extension: MyExtension
    Context: CSSearchParameterCombination.extension[required]
    // Using the id also works:
    // Context: capabilitystatement-search-parameter-combination.extension[required]
    
  • Defining an extension with an extension context that is part of a complex extension, referencing the extension by url

    Extension: MyExtension
    Context: http://hl7.org/fhir/StructureDefinition/capabilitystatement-search-parameter-combination#extension[required]
    
  • Defining an extension with an extension context by using an alias:

    Alias: $COMBINATION = http://hl7.org/fhir/StructureDefinition/capabilitystatement-search-parameter-combination
      
    Extension: MyExtension
    Context: $COMBINATION#extension[required]
    
  • Defining multiple contexts and using an alias:

    Alias: $COMBINATION = http://hl7.org/fhir/StructureDefinition/capabilitystatement-search-parameter-combination
      
    Extension: MyExtension
    Context: $COMBINATION#extension[required], $COMBINATION#extension[optional], "(Condition | Observation).code"
    

Defining Instances

Instances are defined using the declaration Instance, with the REQUIRED keyword InstanceOf, RECOMMENDED keywords Title and Description, and OPTIONAL keyword Usage. InstanceOf plays a role analogous to the Parent of a profile. The value of InstanceOf MAY be the name, id, or url for any profile, resource, TU logical model, or complex datatype defined internally or externally.

The Usage keyword specifies how the instance should be presented in the IG:

  • Usage: #example (default) means the instance is intended as an illustration of a profile or TU logical model, and will be presented on the Examples tab for the corresponding entity.
  • Usage: #definition means the instance is a formal item (i.e., not an example) in the IG, such as an instance of a search parameter, operation definition, or questionnaire. These items will be presented on their own IG page.
  • Usage: #inline means the instance should not be instantiated as an independent resource, but can appear as part of another instance (for example, in any DomainResource in the contained array, or in a Bundle in the entry.resource array).

Instances inherit values from their StructureDefinition (i.e. assigned codes, assigned booleans) if those values are required. Assignment rules are used to set additional values.

Rule types that apply to Instances are: Assignment, Insert, and Path. No other rule types are allowed.

Examples:

  • Define an example instance of US Core Patient, with name, birthDate, race, and ethnicity:

    Instance:  EveAnyperson
    InstanceOf: http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient
    Title:   "Eve Anyperson"
    Usage:  #example
    * name.given = "Eve"
    * name.family = "Anyperson"
    * birthDate = 1960-04-25
    * extension[us-core-race].extension[ombCategory].valueCoding = RaceAndEthnicityCDC#2106-3 "White"
    * extension[us-core-ethnicity].extension[ombCategory].valueCoding = RaceAndEthnicityCDC#2186-5 "Non Hispanic or Latino"
    
  • Define an instance of US Core Practitioner, with name and NPI, meant to be inlined in a composition:

    Instance:   DrDavidAnydoc
    InstanceOf: http://hl7.org/fhir/us/core/StructureDefinition/us-core-practitioner
    Usage:  #inline
    * name.family = "Anydoc"
    * name.given = "David"
    * name.suffix = "MD"
    * identifier[NPI].value = "8274017284"
    

    This instance would be incorporated into a DomainResource with a statement such as:

    *  contained[0] = DrDavidAnydoc
    
  • Define an #inline Patient instance, and then use that instance in a Condition resource, inlining it as a contained resource:

    Instance: EveAnyperson
    InstanceOf: Patient
    Usage: #inline // #inline means this instance should not be exported as a separate example
    * name.given[0] = "Eve"
    * name.family = "Anyperson"
    
    Instance: EvesCondition
    InstanceOf: Condition
    Usage: #example
    Description: "An example that uses contained"
    * contained[0] = EveAnyperson // this inlines EveAnyperson definition here
    * code = http://foo.org#bar
    * subject = Reference(EveAnyperson) // this automatically creates the relative reference correctly
    

    This results in:

    {
      "resourceType": "Condition",
      "id": "EvesCondition",
      "contained": [
        {
          "resourceType": "Patient",
          "id": "EveAnyperson",
          "name": [
            {
              "given": [
                "Eve"
              ],
              "family": "Anyperson"
            }
          ]
        }
      ],
      "code": {
        "coding": [
          {
            "code": "bar",
            "system": "http://foo.org"
          }
        ]
      },
      "subject": {
        "reference": "#EveAnyperson"
      }
    }
    
  • Define an instance of PrimaryCancerCondition, using many available features:

    Instance: mCODEPrimaryCancerConditionExample01
    InstanceOf: PrimaryCancerCondition
    Description: "mCODE Example for Primary Cancer Condition"
    Usage: #example
    * id = "mCODEPrimaryCancerConditionExample01"
    * clinicalStatus = $ClinStatus#active "Active"
    * verificationStatus = $VerStatus#confirmed "Confirmed"
    * code = $SCT#254637007 "Non-small cell lung cancer (disorder)"
    * extension[HistologyMorphologyBehavior].valueCodeableConcept = $SCT#35917007 "Adenocarcinoma"
    * bodySite = $SCT#39607008 "Lung structure (body structure)"
    * bodySite.extension[Laterality].valueCodeableConcept = $SCT#7771000 "Left (qualifier value)"
    * subject = Reference(mCODEPatientExample01)
    * onsetDateTime = "2019-04-01"
    * asserter = Reference(mCODEPractitionerExample01)
    * stage.summary = $AJCC#3C "IIIC"
    * stage.assessment = Reference(mCODETNMClinicalStageGroupExample01)
    
Defining Instances of Other Conformance Resources

The FSH language is designed to support creation of StructureDefinitions for Profiles, Extensions, ValueSets, CodeSystems, Resources, and Logicals. Tools like SUSHI address the creation of the ImplementationGuide resource, which is important for producing an IG. However, there are other conformance resources involved with IG creation not explicitly supported by FSH. These include CapabilityStatement, OperationDefinition, SearchParameter, and CompartmentDefinition.

These conformance resources are created using FSH instance grammar. For example, to create a CapabilityStatement, use InstanceOf: CapabilityStatement with Usage: #definition. The CapabilityStatement is populated using assignment statements. Authors may choose to use parameterized rule sets to reduce repetition of common patterns in conformance resources.

Defining Invariants

Invariants are defined using the declaration Invariant and OPTIONAL keywords Description*, Severity*, XPath (FHIR R4 only) and Expression. The keywords correspond directly to elements in ElementDefinition.constraint. Invariants are incorporated into profiles, extensions, logical models, or resources via obeys rules.

Table 8. Keywords used to define Invariants

Keyword Usage Corresponding element in
ElementDefinition.constraint
Data Type Required
Invariant Identifier for the invariant key id yes
Description Human description of constraint human string no*
Expression FHIRPath expression of constraint expression FHIRPath string no
Severity Either #error or #warning, as defined in ConstraintSeverity severity code no*
XPath XPath expression of constraint (Note: FHIR R5 no longer supports XPath) xpath XPath string no

TU

Authors may also specify ElementDefinition.constraint elements via assignment rules. This approach is particularly useful for specifying constraint extensions such as the Best Practice extension. Invariant definitions also allow path rules and insert rules.

*If the Description keyword is not specified, then the definition must contain an assignment rule for the human element. If the Severity keyword is not specified, then the definition must contain an assignment rule for the severity element.

Example:

  • Define a simplified version of an invariant found in US Core (for FHIR R4) using FSH Invariant keywords only:

    Invariant:   us-core-6
    Description: "Patient.name.given or Patient.name.family or both SHALL be present"
    Severity:    #error
    Expression:  "family.exists() or given.exists()"
    XPath:       "f:given or f:family"
    

TU

  • Define a simplified version of an invariant found in US Core (for FHIR R4) using FSH Invariant keywords and rules:

    Invariant:   us-core-6
    Description: "Patient.name.given or Patient.name.family or both SHALL be present"
    * severity = #error
    * expression = "family.exists() or given.exists()"
    * xpath = "f:given or f:family"
    

Defining Logical Models

Logical models allow authors to define new structures representing arbitrary content. While profiles can only add new properties as formal extensions, logical models can add properties as standard elements with standard paths. Logical models have many uses, as described in the FHIR specification, but are often used to convey domain-specific concepts in a user-friendly manner. Authors often use logical models as a basis for defining formal profiles in FHIR.

Logical models are defined using the declaration Logical, with RECOMMENDED keywords Id, Title, and Description, and OPTIONAL keyword Parent. If no Parent is specified, the empty Base type is used as the default parent. Note that the Base type does not exist in FHIR R4, but both SUSHI and the FHIR IG Publisher have implemented special case logic to support Base in FHIR R4. Authors who wish to have top-level id and extension elements MAY use Element as the logical model’s parent instead. Alternately, authors MAY specify another logical model, a resource, or a complex datatype as a logical model’s parent.

Rules defining the logical model follow immediately after the keyword section. Rule types that apply to logical models are: Add Element, Assignment, Binding, Cardinality, Flag, Insert, Obeys, Path, and Type.

In addition, authors should consult FHIR’s interpretation of ElementDefinition for type definitions. Assignments MUST NOT set elements listed as prohibited in that table. For example, the table indicates that assigning maxLength and mustSupport is prohibited.

Note: Prior versions of FHIR Shorthand forbid logical model definitions from constraining inherited elements or using assignment rules to fix element values. These capabilities are now permitted as TU features of FSH.

Example:

  • Define a logical model for a human and their family members:

    Logical:         Human
    Id:              human-being-logical-model
    Title:           "Human Being"
    Description:     "A member of the Homo sapiens species."
    Characteristics: #can-be-target
    * name 0..* SU HumanName "Name(s) of the human" "The names by which the human is or has been known"
    * birthDate 0..1 SU dateTime "The date of birth, if known"
        "The date on which the person was born. Approximations may be used if exact date is unknown."
    * deceased[x] 0..1 SU boolean or dateTime or Age "Indication if the human is deceased"
        "An indication if the human has died. Boolean should not be used if date or age at death are known."
    * family 0..1 BackboneElement "Family" "Members of the human's immediate family."
      * mother 0..2 FamilyMember "Mother" "Biological mother, current adoptive mother, or both."
      * father 0..2 FamilyMember "Father" "Biological father, current adoptive father, or both."
      * sibling 0..* FamilyMember "Sibling" "Other children of the human's mother and/or father."
    
    Logical:        FamilyMember
    Id:             family-member
    Title:          "Family Member"
    Description:    "A reference to a family member (not necessarily biologically related)."
    * human 1..1 SU Reference(Human) "Family member" "A reference to the human family member"
    * biological 0..1 boolean "Biologically related?"
        "A family member may not be biologically related due to adoption, blended families, etc."
    

Note: The use of the Characteristics keyword in the example above is TU.

TU

The keyword Characteristics can be used to specify the type characteristics of the logical model being defined. These characteristics are represented on the logical model using the Structure Type Characteristics extension with a code value from the TypeCharacteristicCodes value set. Authors SHOULD use the Characteristics keyword instead of directly assigning this extension using assignment rules.

When specifying characteristics using the Characteristics keyword, do not include the code system, as it is implied. Multiple characteristics can be specified by using a comma-separated list of codes. The following is an allowed list of formats for characteristics:

Specifying a single characteristic:

Characteristics: {code}

Specifying multiple characteristics as a comma-separated list:

Characteristics: {code 1}, {code 2}, {code 3}...

Examples:

  • Defining a logical model with a single type characteristic

    Logical: MyLogical
    Characteristics: #can-bind
    
  • Defining a logical model with multiple type characteristics

    Logical: MyLogical
    Characteristics: #has-range, #has-units, #is-continuous
    

Defining Mappings

Mappings are an optional part of a StructureDefinition, intended to help implementers understand the StructureDefinition in relation to other standards. While it is possible to define mappings using escape (caret) syntax, FSH provides a more concise approach. These mappings are informative and are not to be confused with the computable mappings provided by FHIR Mapping Language and the StructureMap resource.

To create a mapping, the declaration Mapping and the keywords Source, and Target are REQUIRED, and Id, Title and Description are RECOMMENDED.

Table 9. Keywords used to define Mappings

Keyword Usage StructureDefinition element
Mapping Appears first and provides a unique name for the mapping n/a
Source The name or id of the profile the mapping applies to n/a
Target The URL, URI, or OID for the specification being mapped to mapping.uri
Id An internal identifier for the target specification mapping.identity
Title A human-readable name for the target specification mapping.name
Description Additional information such as version notes, issues, or scope limitations. mapping.comment

The mappings themselves are declared in rules with the following syntaxes:

* -> "{map string}" "{comment string}" #{mime-type code}

* <element> -> "{map string}" "{comment string}" #{mime-type code}

The first type of rule applies to mapping the profile as a whole to the target specification. The second type of rule maps a specific element to the target. No other types of rules are allowed.

The map, comment, and mime-type are as defined in FHIR and correspond to elements in StructureDefinition.mapping and ElementDefinition.mapping (map corresponds to mapping.map, mime-type to mapping.language, and comment to mapping.comment). The mime type code MUST come from FHIR’s MimeType value set. For further information, the reader is referred to the FHIR definitions of these elements.

Note: Unlike setting the mapping.map directly in the StructureDefinition, mapping rules within a Mapping item do not include the name of the resource in the path on the left hand side.

A mapping can also have insert rules and path rules applied to it.

Examples:

  • Map the entire profile to a Patient item in another specification:

    * -> "Patient" "This profile maps to Patient in Argonaut"
    
  • Map the identifier.value element from one IG to another:

    * identifier.value -> "Patient.identifier.value"
    
  • Define a map between USCorePatient and Argonaut:

    Mapping:  USCorePatientToArgonaut
    Source:   USCorePatient
    Target:   "http://unknown.org/Argonaut-DQ-DSTU2"
    Id:       argonaut-dq-dstu2
    Title:    "Argonaut DSTU2"
    * -> "Patient"
    * extension[USCoreRaceExtension] -> "Patient.extension[http://fhir.org/guides/argonaut/StructureDefinition/argo-race]"
    * extension[USCoreEthnicityExtension] -> "Patient.extension[http://fhir.org/guides/argonaut/StructureDefinition/argo-ethnicity]"
    * extension[USCoreBirthSexExtension] -> "Patient.extension[http://fhir.org/guides/argonaut/StructureDefinition/argo-birthsex]"
    * identifier -> "Patient.identifier"
    * identifier.system -> "Patient.identifier.system"
    * identifier.value -> "Patient.identifier.value"
    

Defining Profiles

To define a profile, the declaration Profile and keyword Parent are REQUIRED, and Id, Title, and Description are RECOMMENDED. Rules defining the profile follow immediately after the keyword section.

Rules types that apply to Profiles are: Assignment, Binding, Cardinality, Contains (standalone extensions), Contains (slicing), Flag, Insert, Obeys, Path, and Type. Note that inline extensions are not permitted in profiles.

Example:

  • Define a profile for exposure to a pathogen:

    Profile:        KnownExposureSetting
    Parent:         Observation
    Id:             known-exposure-setting
    Title:          "Known Exposure Setting Profile"
    Description:    "The setting where an individual was exposed to a contagion."
    * code = $LNC#81267-7 // Setting of exposure to illness
    * value[x] only CodeableConcept
    * value[x] from https://loinc.org/vs/LL3991-8 (extensible)
    

Defining Resources

Custom resources allow authors to define new structures representing arbitrary content. Resources are defined similar to logical models, but are intended to support data exchange using FHIR’s RESTful API mechanisms. The capability to define resources may be used by HL7 to define core FHIR resources or by other organizations to define proprietary resources for their own internal use. Potentially, they also can be used to represent and maintain existing core FHIR resources.

Custom (non-HL7) resources should not be used for formal exchange between organizations; only standard FHIR resources and profiles should be used for inter-organizational exchange of health data. As such, the the FHIR IG publisher does not support including custom resources in implementation guides.

Resources are defined using the declaration Resource. The keywords Id, Title, and Description are RECOMMENDED. The use of Parent is OPTIONAL. If no Parent is specified, DomainResource is used as the default parent. Only DomainResource and Resource are allowed as parents of a resource.

Rules defining the resource follow immediately after the keyword section. Rules types that apply to resources are: Add Element, Assignment, Binding, Cardinality, Flag, Insert, Obeys, Path, and Type. The following limitations apply:

  • Binding, cardinality, and type rules SHALL be applied only to elements defined by the item (not inherited elements).
  • Flag rules SHALL NOT include MS flags.
  • Assignment rules SHALL be used only with caret paths.

The latter restrictions stem from FHIR’s interpretation of ElementDefinition for type definitions. Assignments MUST NOT set elements that are prohibited in that table. For example, the table indicates that setting maxLength or mustSupport is prohibited.

Example:

  • Define a resource representing an emergency vehicle, using line spacing to make the definition easier to read:

    Resource:       EmergencyVehicle
    Id:             emergency-vehicle
    Title:          "Emergency Vehicle"
    Description:    "An emergency vehicle, such as an ambulance or fire truck."
    * identifier 0..* SU Identifier
        "Identifier(s) of the vehicle"
        "Vehicle identifiers may include VINs and serial numbers."
    * make 0..1 SU Coding
        "The vehicle make"
        "The vehicle make, e.g., Chevrolet."
    * make from EmergencyVehicleMake (extensible)
    * model 0..1 SU Coding
        "The vehicle model"
        "The vehicle model, e.g., G4500."
    * model from EmergencyVehicleModel (extensible)
    * year 0..1 SU positiveInt
        "Year of manufacture"
        "The year the vehicle was manufactured"
    * servicePeriod 0..1 Period
        "When the vehicle was in service"
        "Start date and end date (if applicable) when the vehicle operated."
    * operator 0..* Reference(Organization or Practitioner or PractitionerRole)
        "The operator"
        "The organization or persons repsonsible for operating the vehicle"
    * device 0..* Reference(Device)
        "Devices on board"
        "Devices on board the vehicle."
    

Defining Rule Sets

Rule sets provide the ability to define a group of rules as an independent entity. Through insert rules, they can be incorporated into a compatible target. FSH behaves as if the rules in a rule set are copied into the target. As such, the inserted rules have to make sense where they are inserted. Once defined, a single rule set can be used in multiple places. The first rule in a rule set MUST NOT be indented. Rules after the first rule MAY be indented but do not affect any rules outside of the rule set (i.e., inserting a rule set never affects the rule paths after the insert rule).

All types of rules SHALL be usable in rule sets, including insert rules, enabling the nesting of rule sets in other rule sets. However, circular dependencies are not allowed.

Simple Rule Sets

Simple rule sets are defined by using the declaration RuleSet followed by a user-selected name:

RuleSet: {name}
{rule1}
{rule2}
// More rules

Example:

  • Define a rule set for metadata to be used in multiple profiles:

    RuleSet: RuleSet1
    * ^status = #draft
    * ^experimental = true
    * ^publisher = "Elbonian Medical Society"
    
Parameterized Rule Sets

Rule sets can also specify one or more parameters as part of their definition. Parameterized rule sets are defined by using the declaration RuleSet followed by a user-selected name and then a comma-separated list of parameters enclosed in parentheses:

RuleSet: {name}(parameter1, parameter2, parameter3...)
{rule1}
{rule2}
// More rules

Each parameter represents a value that SHALL be substituted into the rules when the rule set is inserted. See the insert rules section for details on how to pass parameter values when inserting a rule set. In the rules, the places where substitutions should occur are indicated by enclosing a parameter name in curly braces {}. Spaces are allowed inside the curly braces: {parameter1} and { parameter1 } are both valid substitution sequences for a parameter named parameter1. A parameter may occur more than once in the rule set definition.

Examples:

  • Define a rule set that contains the syntax for setting the context of an extension. This example also demonstrates the use of soft indexing. Note that the curly brackets in this example are literal, not syntax expressions:

    RuleSet: SetContext(path)
    * ^context[+].type = #element
    * ^context[=].expression = "{path}"
    

    This rule set can be applied to indicate an extension can only be applied to certain resources, for example:

    * insert SetContext(Procedure)
    * insert SetContext(MedicationRequest)
    * insert SetContext(MedicationAdministration)
    

    When the rule set is expanded, it translates to:

    * ^context[+].type = #element
    * ^context[=].expression = "Procedure"
    * ^context[+].type = #element
    * ^context[=].expression = "MedicationRequest"
    * ^context[+].type = #element
    * ^context[=].expression = "MedicationAdministration"
    

    Interpreting the soft indices, this is equivalent to:

    * ^context[0].type = #element
    * ^context[0].expression = "Procedure"
    * ^context[1].type = #element
    * ^context[1].expression = "MedicationRequest"
    * ^context[2].type = #element
    * ^context[2].expression = "MedicationAdministration"
    
  • Define a parameterized rule set to define items in a Questionnaire:

    RuleSet: Question(linkId, text, type, repeats)
    * item[+].linkId = "{linkId}"
    * item[=].text = "{text}"
    * item[=].type = #{type}
    * item[=].repeats = {repeats}
    

    Apply the rule set to populate a Questionnaire:

    Instance: TravelRecord
    InstanceOf: Questionnaire
    // skip some
    * insert Question(tr1, When did you leave?, date, false)
    * insert Question(tr2, When did you return?, date, false)
    * insert Question(tr3, What countries did you visit?, code, true)
    

Defining Value Sets

A value set is a group of coded values representing acceptable values for a FHIR element whose datatype is code, Coding, CodeableConcept, Quantity, string, or url.

Value sets are defined using the declaration ValueSet, with RECOMMENDED keywords Id, Title and Description.

Codes MUST be taken from one or more terminology systems (also called code systems or vocabularies). Codes cannot be defined inside a value set. If necessary, you can define your own code system.

The contents of a value set are defined by “include” rules, which have the following syntax:

Note: In value set rules, the word include is OPTIONAL.

Table 10. Summary of value set include rules

To include… Syntax Examples
A single code * include {Coding} * include http://snomed.info/sct#22298006 "Myocardial infarction (disorder)"

* $SCT#22298006 "Myocardial infarction (disorder)"

* http://snomed.info/sct|http://snomed.info/sct/731000124108#22298006 "Myocardial infarction (disorder)"
All codes from another value set * include codes from valueset {ValueSet}|{version string} * include codes from valueset http://hl7.org/fhir/ValueSet/data-absent-reason

* include codes from valueset http://hl7.org/fhir/ValueSet/data-absent-reason|5.0.0
All codes from a code system * include codes from system {CodeSystem}|{version string} * include codes from system http://snomed.info/sct

* include codes from system http://snomed.info/sct|http://snomed.info/sct/731000124108
Codes that lie in the intersection of value set(s) and (optionally) a code system * include codes from system {CodeSystem}|{version string} and valueset {ValueSet1}|{version1 string} and {ValueSet2}|{version2 string}... * include codes from valueset http://hl7.org/fhir/ValueSet/units-of-time and http://hl7.org/fhir/ValueSet/age-units

* include codes from valueset http://hl7.org/fhir/ValueSet/units-of-time|5.0.0 and http://hl7.org/fhir/ValueSet/age-units|5.0.0
Filtered codes from a code system * include codes from system {CodeSystem}|{version string} where {filter1} and {filter2}... * include codes from system $SCT where concept descendant-of #254837009

* include codes from system http://snomed.info/sct where concept is-a #254837009

* include codes from system http://snomed.info/sct|http://snomed.info/sct/731000124108 where concept is-a #254837009

Notes:

  • When a single include rule includes more than one item (code system or value set), the applicable codes are those present in all listed items.
  • To add codes from multiple code systems or value sets (i.e., the union not the intersection), specify them in separate include rules.
  • When an include rule has both a system and more than one value set, the code system must be first or last.
  • An include rule MUST not have more than one code system (the intersection of two code systems is the empty set).
  • Filters are code system dependent. See below for further discussion.
  • TU Metadata attributes for individual concepts, such as designation, can be defined using caret paths.

Examples:

  • Include codes in the intersection of time and age units:

    * include codes from valueset http://hl7.org/fhir/ValueSet/units-of-time
      and http://hl7.org/fhir/ValueSet/age-units
    
  • Include only the v2 codes in the name-assembly-order value set:

    * include codes from system http://terminology.hl7.org/CodeSystem/v2-0444 and valueset http://hl7.org/fhir/ValueSet/name-assembly-order
    

Analogous rules can be used to leave out certain codes, with the word exclude replacing the word include:

Table 11. Summary of value set exclude rules

To exclude… Syntax Examples
A single code * exclude {Coding} * exclude $SCT#22298006 "Myocardial infarction (disorder)"

* exclude http://snomed.info/sct#22298006 "Myocardial infarction (disorder)"

* exclude http://snomed.info/sct|http://snomed.info/sct/731000124108#22298006 "Myocardial infarction (disorder)"
All codes from another value set * exclude codes from valueset {ValueSet}|{version string} * exclude codes from valueset http://hl7.org/fhir/ValueSet/data-absent-reason

* exclude codes from valueset http://hl7.org/fhir/ValueSet/data-absent-reason|5.0.0
All codes from a code system * exclude codes from system {CodeSystem}|{version string} * exclude codes from system http://snomed.info/sct

* exclude codes from system http://snomed.info/sct|http://snomed.info/sct/731000124108
Filtered codes from a code system * exclude codes from system {CodeSystem}|{version string} where {filter} * exclude codes from system $SCT where concept is-a #254837009

* exclude codes from system http://snomed.info/sct where concept is-a #254837009

* exclude codes from system http://snomed.info/sct|http://snomed.info/sct/731000124108 where concept is-a #254837009

In addition, assignment rules SHALL be applicable to value sets only in the context of caret paths.

Filters

A filter is a logical statement in the form {property} {operator} {value}, where operator is chosen from the FilterOperator value set. Not all operators in that value set are valid for all code systems. The property and value are dependent on the code system. Depending on the filter, the value may be a code (e.g., #123-A), boolean (e.g., true), string (e.g., "inherited"), or regular expression (e.g., /A\.[0-9]+/). For choices for the most common code systems, see the FHIR documentation on filters.

Examples

  • Define a value set using extensional rules. This example demonstrates the optionality of the word include:

    ValueSet: BinetStageValueVS
    Id: mcode-binet-stage-value-vs
    Title: "Binet Stage Value Set"
    Description: "Codes in the Binet staging system representing Chronic Lymphocytic Leukemia (CLL) stage."
    * $NCIT#C80134 "Binet Stage A"
    * $NCIT#C80135 "Binet Stage B"
    * $NCIT#C80136 "Binet Stage C"
    
  • Define a value set using intensional rules:

    ValueSet: HistologyMorphologyBehaviorVS
    Id: mcode-histology-morphology-behavior-vs
    Title: "Histology Morphology Behavior Value Set"
    Description: "Codes representing the structure, arrangement, and behavioral characteristics of malignant neoplasms, and cancer cells."
    * include codes from system $SCT where concept is-a #367651003 "Malignant neoplasm of primary, secondary, or uncertain origin (morphologic abnormality)"
    * include codes from system $SCT where concept is-a #399919001 "Carcinoma in situ - category (morphologic abnormality)"
    * include codes from system $SCT where concept is-a #399983006 "In situ adenomatous neoplasm - category (morphologic abnormality)"
    * exclude codes from system $SCT where concept is-a #450893003 "Papillary neoplasm, pancreatobiliary-type, with high grade intraepithelial neoplasia (morphologic abnormality)"
    * exclude codes from system $SCT where concept is-a #128640002 "Glandular intraepithelial neoplasia, grade III (morphologic abnormality)"
    * exclude codes from system $SCT where concept is-a #450890000 "Glandular intraepithelial neoplasia, low grade (morphologic abnormality)"
    * exclude codes from system $SCT where concept is-a #703548001 "Endometrioid intraepithelial neoplasia (morphologic abnormality)"
    

Note: Intensional and extensional forms can be used together in a single value set definition.

TU

Concept Metadata

Within a ValueSet definition, the caret syntax can be used to set metadata attributes for individual concepts (e.g., elements of ValueSet.compose.include.concept.designation).

To assign metadata values for concepts that are included in the value set, authors can specify one or more indented caret path assignment rules below the rule that includes the concept:

* include {Coding}
  * ^<element1 of corresponding concept> = {value1}
  * ^<element2 of corresponding concept> = {value2}

To assign metadata values for concepts that are excluded in the value set, authors can specify one or more indented caret path assignment rules below the rule that excludes the concept:

* exclude {Coding}
  * ^<element1 of corresponding concept> = {value1}
  * ^<element2 of corresponding concept> = {value2}

Indented caret path assignment rules are preferred for clarity, but authors may choose to repeat the code and follow it with a caret path assignment instead:

* {Coding} ^<element1 of corresponding concept> = {value1}
* {Coding} ^<element2 of corresponding concept> = {value2}

Note: A concept MUST be included or excluded before caret rule assignments can be used to set its metadata. When a single rule contains a concept followed by a caret path assignment, the assignment pertains to the concept wherever it is found in the composition (whether included or excluded).

Examples:

  • To specify a designation for the fully specified name of the included concept $SCT#84162001:

    * $SCT#84162001  "Cold"
      * ^designation[0].use = $SCT#900000000000003001 "Fully specified name"
      * ^designation[0].value = "Cold sensation quality (qualifier value)"
    
  • To specify a designation for the fully specified name of the included concept $LNC#55423-8 using the include keyword:

    * include $LNC#55423-8 "Number of steps"
      * ^designation[0].use = $SCT#900000000000003001 "Fully specified name"
      * ^designation[0].value = "Number of steps in Unspecified Time, Pedometer"
    
  • To specify a designation for a synonym of the included concept $SCT#32849002 by repeating the code:

    * $SCT#32849002  "Esophageal structure"
    * $SCT#32849002  ^designation[0].use = $SCT#900000000000013009 "Synonym (core metadata concept)"
    * $SCT#32849002  ^designation[0].language = urn:ietf:bcp:47#en-GB
    * $SCT#32849002  ^designation[0].value = "Oesophageal structure"
    
  • To specify a designation for a synonym of the excluded concept $SCT#22298006:

    * exclude $SCT#22298006 "Myocardial infarction (disorder)"
      * ^designation[0].use = $SCT#900000000000013009 "Synonym (core metadata concept)"
      * ^designation[0].language = urn:ietf:bcp:47#en-US
      * ^designation[0].value = "Heart attack"
    
  • To specify a designation for the fully specified name of the excluded concept $SCT#54987000 by repeating the code:

    * exclude $SCT#54987000 "Choledochoplasty"
    * $SCT#54987000 ^designation[0].use = $SCT#900000000000003001 "Fully specified name"
    * $SCT#54987000 ^designation[0].value = "Repair of common bile duct (procedure)"
    

FSH Rules

Rules are the mechanism in FSH for populating and constraining items by setting cardinality, applying flags, binding value sets, defining extensions, and more. Rules in FSH are distinguished by a leading asterisk (*) symbol:

* {rule statement}

The following restrictions apply to rules:

  • All rules MUST begin on a new line.
  • The asterisk symbol MUST be followed by at least one space.
  • The asterisk MUST NOT be preceded by non-whitespace characters on a line.
  • The asterisk MUST NOT be preceded by whitespace characters, unless using indented rule syntax.

The following table is a summary of the rule syntax.

Table 12. Summary of FSH rule types

Rule Type Syntax
Add Element * <element> {card} {flag(s)} {datatype(s)} "{short}" "{definition}"
Assignment * <element> = {value} (exactly)
Binding * <bindable> from {ValueSet} ({strength})
Cardinality * <element> {min}..{max} // min, max, or both MUST be present
Contains (inline extensions) * <extension> contains {Extension} {card} {flag(s)}
   and {Extension2} {card} {flag(s)}
   and {Extension3} {card} {flag(s)}...
Contains (standalone extensions) * <extension> contains {Extension} named {name} {card} {flag(s)}
   and {Extension2} named {name2} {card} {flag(s)}
   and {Extension3} named {name3} {card} {flag(s)}...
Contains (slicing) * <array> contains {name} {card} {flag(s)}
   and {name2} {card} {flag2}
   and {name3} {card} {flag(s)}...
Exclude * exclude {Coding}
* exclude codes from valueset {ValueSet}
* exclude codes from system {CodeSystem} where {filter1} and {filter2} and ...
Flag * <element(s)> {flag(s)}
Include * include {Coding}</cod>
* include codes from valueset {ValueSet}
* include codes from system {CodeSystem} where {filter1} and {filter2} and ...
Insert * insert {RuleSet}
* insert {RuleSet}({parameter1}, {parameter2}, ...)
* <element> insert {RuleSet}({parameter1}, {parameter2}, ...)
Local Code * #{code} "{display string}" "{definition string}"
Mapping * <element> -> "{map string}" "{comment string}" #{mime-type code}
Obeys * <element> obeys {Invariant} and {Invariant2} and {Invariant3}...
Path * <element>
Type * <element> only {datatype(s)}
Rule Order

Rules SHALL be interpreted logically in a top-down manner. In many cases, the order of rules is flexible. However, there are some situations where FSH requires rules to appear in a certain order. For example, slicing rules require that a slice MUST first be defined by a contains rule before the slice is referenced. Implementations MUST enforce rule-order requirements where they are specified in FSH.

Logical order dependencies can also arise. For example, in setting properties of a choice element (an element involving FHIR’s [x] syntax), this order is problematic:

* value[x].unit 0..0
* value[x] only Quantity

but this order is acceptable:

* value[x] only Quantity
* value[x].unit 0..0

In the first approach, value[x] is not yet known to be restricted to a Quantity, so value[x].unit is ambiguous. In the second approach, value[x] is known to be a Quantity, so value[x].unit is unambiguous.

In cases with no explicit or logical restrictions on rule ordering, users MAY list rules in any order, bearing in mind that insert rules expand into other rules that could have order constraints or logical ordering requirements.

It is possible for a user to specify contradictory rules, for example, two rules constraining the cardinality of an element to different values, or constraining an element to different datatypes. Implementations SHOULD detect such contradictions and issue appropriate warning or error messages.

Indented Rules

Indentation before a rule is used to set a context for the path on that rule. When one rule is indented below another, the full path of the indented rule or rules is obtained by prepending the path from the previous less-indented rule or rules. The level of indentation MAY be reduced to indicate that a rule should not use the context of the preceding rule. The full path of all rules is resolved from the context specified by indentation before any rules are applied.

Two spaces SHALL represent one level of indentation. Rules SHALL only be indented in increments of two spaces and un-indented by any multiple of two spaces.

Path rules are rules containing only a path. They are primarily used to set a path as context for subsequent rules, without any other effect. TU In FSH Instances, path rules may have other effects as well. See path rules for more information.

Some types of rules, for example flag rules, can involve multiple paths. If multiple paths are specified in a rule that sets context for subsequent rules (such as a flag rule with multiple targets), the last path is used as context. When multiple paths are specified in an indented rule, context is applied to all paths. See examples below for details.

There are some limitations on where indented rules can be used. Indented rules cannot appear below rules that do not specify a path. Rules that may omit an element path include top-level obeys rules, top-level caret paths, mapping rules, and insert rules.

When indented rules are combined with soft indexing and a rule containing the increment operator [+] sets the path context for multiple subsequent rules, the index is only incremented once. On subsequent rules, the [+] is effectively replaced with [=]. See examples below for details.

Examples:

  • Use indented rules to set cardinalities on name.family and name.given in a Patient resource:

    * name 1..1
      * family 1..1
      * given 1..1
    

    is equivalent to:

    * name 1..1
    * name.family 1..1
    * name.given 1..1
    
  • Use a path rule to set context for subsequent rules:

    * name
      * family 1..1
      * given 1..1
    

    is equivalent to:

    * name.family 1..1
    * name.given 1..1
    
  • Example of multi-level indented rules:

    * name MS
      * family MS
        * id MS
    

    is equivalent to:

    * name MS
    * name.family MS
    * name.family.id MS
    
  • Example of multiple paths in an indented rule, with the context applied to all paths:

    * name
      * family and given MS
    

    is equivalent to:

    * name.family and name.given MS
    
  • Example of multiple paths in a rule that sets context for subsequent rules, where the last path sets the context:

    * birthDate and name MS
      * family 1..1
    

    is equivalent to:

    * birthDate and name MS
    * name.family 1..1
    
  • Example of reducing the level of indentation to remove the context of a preceding rule:

    * item[0]
      * linkId = "title"
      * type = #display
      * item[0]
        * linkId = "uniquearv_number"
        * type = #string
      * item[1]
        * linkId = "personal_info"
        * type = #group
    * status = #active
    

    is equivalent to:

    * item[0].linkId = "title"
    * item[0].type = #display
    * item[0].item[0].linkId = "uniquearv_number"
    * item[0].item[0].type = #string
    * item[0].item[1].linkId = "personal_info"
    * item[0].item[1].type = #group
    * status = #active
    
  • Example of combining soft indexing with indented rules, where a rule with the increment operator [+] is used to set the context:

    * item[+]
      * linkId = "title"
      * type = #display
    

    is not equivalent to:

    * item[+].linkId = "title"
    * item[+].type = #display
    

    but is instead equivalent to:

    * item[+].linkId = "title"
    * item[=].type = #display
    
  • Another example of soft indexing combined with indented paths, illustrating that when a rule containing [+] is used to set the context of multiple subsequent rules, the index is incremented only once:

    * rest.resource[+]
      * type = #Organization
      * interaction[+].code = #create
      * interaction[+].code = #update
      * interaction[+].code = #delete
    * rest.resource[+]
      * type = #Condition
      * interaction[+].code = #create
      * interaction[+].code = #update
    

    is equivalent to:

    * rest.resource[+].type = #Organization
    * rest.resource[=].interaction[+].code = #create
    * rest.resource[=].interaction[+].code = #update
    * rest.resource[=].interaction[+].code = #delete
    * rest.resource[+].type = #Condition
    * rest.resource[=].interaction[+].code = #create
    * rest.resource[=].interaction[+].code = #update
    

    is equivalent to:

    * rest.resource[0].type = #Organization
    * rest.resource[0].interaction[0].code = #create
    * rest.resource[0].interaction[1].code = #update
    * rest.resource[0].interaction[2].code = #delete
    * rest.resource[1].type = #Condition
    * rest.resource[1].interaction[0].code = #create
    * rest.resource[1].interaction[1].code = #update
    
  • An error, attempting to use a rule without a path as context for an indented rule, since “obeys” does not imply a path:

    * obeys inv-1
      * family 1..1
    

Add Element Rules

Authors define logical models and resources by adding new elements to their definitions. The add element rule is only applicable for logical models and resources. It cannot be used when defining profiles or extensions.

The syntax of the rules to add a new element are as follows:

* <element> {min}..{max} {flag(s)} {datatype(s)} "{short}" "{definition}"

where {datatype(s)} can be one of the following:

  • A primitive or complex datatype name, or multiple datatypes separated with or,
  • References to one or more resources or profiles, Reference({Resource/Profile1} or {Resource/Profile2} or {Resource/Profile3}...)
  • Canonicals for one or more resources or profiles, Canonical({Resource/Profile1} or {Resource/Profile2} or {Resource/Profile3}...)
  • TU CodeableReferences to one or more resources or profiles, CodeableReference({Resource/Profile1} or {Resource/Profile2} or {Resource/Profile3}...)

TU

To add an element that uses a contentReference to refer to another element, use the following syntax:

* <element> {min}..{max} {flag(s)} contentReference {contentUrl} "{short}" "{definition}"

where {contentUrl} is a URI referencing the element whose properties will be used to define this element. This type of element definition is typically used with recursively nested elements, such as Questionnaire.item.item, which is defined by reference to #Questionnaire.item. Another example is Observation.component.referenceRange, which is defined by reference to #Observation.referenceRange. Refer to the ElementDefinition documentation for more information.

Note the following:

  • An add element rule at minimum must specify:
    • an element path, cardinality, type, and short description, OR
    • TU an element path, cardinality, the contentReference keyword, a content reference URI, and short description.
  • Flags and longer definition are optional.
  • The longer definition can also be a multi-line (triple quoted) string.
  • If a longer definition is not specified, the element’s definition will be set to the same text as the specified short description.
  • When multiple types are specified, the element path must end with [x] unless all types are References, all types are Canonicals, or TU all types are CodeableReferences.

Examples:

  • Add a string-typed element:

    * email 0..* string "The person's email addresses"
    
  • Add a string-typed element with a summary flag and longer definition:

    * email 0..* SU string "The person's email addresses" "Email addresses by which the person may be contacted."
    

TU

  • Add an element defined by a contentReference, which receives the content rules of the referenced element:

    * email 0..* contentReference http://example.org/StructureDefinition/AnotherResource#AnotherResource.email "The person's email addresses"
    
  • Add a reference-typed element with a longer definition:

    * primaryClinicians 0..* Reference(Organization or Practitioner or PractitionerRole) "Primary clinicians"
        "The person's primary clinical organizations and practitioners"
    
  • Add a choice element with a multi-line description using markdown syntax:

    * preferredName[x] 0..1 string or HumanName "The person's preferred name" """
        Sometimes patients prefer to be called by a name other than their _formal_ name. This may be:
        * their nickname
        * their middle name
        * their maiden name
        * etc.
        """
    
  • Add a BackboneElement element to provide a structured set of elements in a logical model:

    * serviceAnimal 0..* BackboneElement "Service animals" "Animals trained to assist the person by performing certain tasks."
    * serviceAnimal.name 0..1 string "Name of service animal" "The name by which the service animal responds."
    * serviceAnimal.breed 1..* CodeableConcept "Breed of service animal" "The dominant breed or breeds of the service animal."
    * serviceAnimal.startDate 0..1 date "Date the service animal began work" "The date on which the service animal began working for the person."
    

    or the same set of rules using indentation to maintain the path context:

    * serviceAnimal 0..* BackboneElement "Service animals" "Animals trained to assist the person by performing certain tasks."
      * name 0..1 string "Name of service animal" "The name by which the service animal responds."
      * breed 1..* CodeableConcept "Breed of service animal" "The dominant breed or breeds of the service animal."
      * startDate 0..1 date "Date the service animal began work" "The date on which the service animal began working for the person."
    

Assignment Rules

Assignment rules follow this syntax:

* <element> = {value}

The left side of this expression follows the FSH path grammar. The datatype on the right side MUST align with the datatype of the final element in the path. An assignment replaces any existing value assigned to the element.

Assigning Values versus Specifying Constraints

Assignment rules have two very different interpretations, depending on context:

  • In instances TU and invariants, assignment rules set the value of the target element. Note that whenever an element is accessed via a caret path, it is actually accessing the definitional instance (for example, the StructureDefinition of the profile). Therefore, assignments involving caret paths also set the value of the target element.
  • Assignment rules in profiles and extensions establish constraints on instances conforming to the profile or extension. The requirement is expressed as a pattern of values that must be present in the instance. In this context, an assignment rule does not set the value of the element, but instead, establishes a constraint on that value.

This is best illustrated by example. Consider the following assignment (assuming code is a CodeableConcept):

* code = https://loinc.org#69548-6

If this statement appears in an instance of an Observation, then the values of code.coding[0].system and code.coding[0].code will be set to https://loinc.org and 69548-6, respectively, in that Observation.

If the identical statement appears in a profile on Observation, it signals that the StructureDefinition should be configured such that the code element of a conformant instance must have a Coding with the system http://loinc.org and the code 69548-6. (In fact, the StructureDefinition does not even have a code element to populate.)

Note: In the profiling context, typically only the system and code are important conformance criteria for a Coding or CodeableConcept property. If a display text is included, it will be part of the conformance criteria.

In the latter case of establishing a constraint in a profile, the constraint pattern is considered “open” by default, in the sense that the element in question might have content in addition to the prescribed value, such as alternative codes in a CodeableConcept. If conformance to a profile requires a precise match to the pattern (which is rare), then the following syntax can be used:

* <element> = {value} (exactly)

Adding (exactly) indicates no additional values or extensions are allowed on the element. In general, using (exactly) is not the best option for interoperability because it creates conformance criteria that could be too tight, risking the rejection of valid, useful data. FSH offers this option primarily because exact value matching is used in some current IGs and profiles. For example, in a profile,

* code = $LNC#69548-6 (exactly)

means that a conforming instance must have the system http://loinc.org, the code 69548-6, and must not have a display text, additional codes, or extensions on the code element.

When assigning values to an instance, the (exactly) modifier has no meaning and SHOULD NOT be used. Implementations may ignore the modifier or signal an error.

Assignments with Primitive Data Types

Examples:

  • Assignment of a code datatype:

    * status = #arrived
    
  • Assignment of a boolean:

    * active = true
    
  • Assignment of a date:

    * onsetDateTime = "2019-04-02"
    
  • Assignment of a dateTime:

    * recordedDate = "2013-06-08T09:57:34.2112Z"
    

TU

  • Assignment of an integer64 (note: this datatype was introduced in FHIR R5):

    * extension[my-extension].valueInteger64 = 1234567890
    
Assignments with the Coding Data Type

A FHIR Coding has five attributes (system, version, code, display, and userSelected). The first four of these can be set with a single assignment statement. The syntax is:

<Coding> = {CodeSystem}|{version string}#{code} "{display string}"

The only required part of this statement is the code (including the # sign), although every Coding SHOULD have a code system. The version string cannot appear without a code system.

Whenever this type of rule is applied, whatever is on the right side entirely replaces the previous value of the Coding on the left side. For example, if a Coding has a value that includes a display string, and a subsequent assignment replaces the system and code but has no display string, the result is a Coding without a display string.

Examples:

  • Assign a Coding that includes an explicit code system version:

    myCoding = http://hl7.org/fhir/CodeSystem/example-supplement|201801103#chol-mmol
    
  • As an alternative to the bar syntax for version, set the code system version only:

    * myCoding.version = "201801103"
    
  • Set the userSelected property of a Coding (one of the lesser-used attributes of Codings):

    * myCoding.userSelected = true
    
  • In an instance of a Signature, set Signature.type (a Coding datatype):

    * type = urn:iso-astm:E1762-95:2013#1.2.840.10065.1.12.1.2 "Coauthor's Signature"
    
  • Example of what happens when a second assignment replaces an existing value:

    * myCoding = $SCT#363346000 "Malignant neoplastic disease (disorder)"
    * myCoding = $ICD#C80.1
    

    Because the second assignment pre-clears the previous value of myCoding, the result is:

    • myCoding.system is http://hl7.org/fhir/sid/icd-10-cm (assuming the $ICD alias maps to this URL)
    • myCoding.code is “C80.1”
    • myCoding.display has no value
    • myCoding.version has no value
  • Example of how incorrectly ordered rules can lead to loss of a previously-assigned value, because myCoding is cleared as part of the second assignment:

    * myCoding.userSelected = true
    * myCoding = $SCT#363346000 "Malignant neoplastic disease (disorder)"
    

    The result is:

    • system is http://snomed.info/sct
    • code is “363346000”
    • display is “Malignant neoplastic disease (disorder)”
    • userSelected has no value
  • The correct way to approach the previous example is to reverse the order of the assignments:

    * myCoding = $SCT#363346000 "Malignant neoplastic disease (disorder)"
    * myCoding.userSelected = true
    
Assignments with the CodeableConcept Data Type

A CodeableConcept consists of an array of Codings and a text. To populate the array in an instance, array indices, denoted by brackets, are used. The shorthand is:

* <CodeableConcept>.coding[{index}] = {CodeSystem}|{version string}#{code} "{display string}"

This is precisely like setting a Coding, as discussed directly above.

To set the first Coding in a CodeableConcept, FSH offers the following shortcut:

* <CodeableConcept> = {CodeSystem}|{version string}#{code} "{display string}"

Whenever the shortcut rule is applied, the value on the right side entirely replaces any previous value of the CodeableConcept on the left side. Any previous value(s) in the CodeableConcept are cleared.

Assignment rules can be used to set any part of a CodeableConcept. For example, to set the top-level text of a CodeableConcept, the FSH expression is:

* <CodeableConcept>.text = "{string}"

Examples:

  • Set the first Coding myCodeableConcept:

    * myCodeableConcept = $SCT#363346000 "Malignant neoplastic disease (disorder)"
    
  • An equivalent representation, using explicit array index on the coding array:

    * myCodeableConcept.coding[0] = $SCT#363346000 "Malignant neoplastic disease (disorder)"
    
  • Another equivalent representation, using the shorthand that allows dropping the [0] index:

    * myCodeableConcept.coding = $SCT#363346000 "Malignant neoplastic disease (disorder)"
    
  • Add a second value to the array of Codings:

    * myCodeableConcept.coding[1] = $ICD#C80.1 "Malignant (primary) neoplasm, unspecified"
    
  • Set the top-level text:

    * myCodeableConcept.text = "Diagnosis of malignant neoplasm left breast."
    
  • Example of incorrect ordering rules that leads to loss of a previously-assigned value, because the last assignment pre-clears the existing value of myCodeableConcept before apply new values:

    * myCodeableConcept.coding[0].userSelected = true
    * myCodeableConcept.text = "Metastatic Cancer"
    * myCodeableConcept = $SCT#363346000 "Malignant neoplastic disease (disorder)"
    

    The result is:

    • coding[0].system is http://snomed.info/sct
    • coding[0].code is “363346000”
    • display is “Malignant neoplastic disease (disorder)”
    • coding[0].userSelected has no value
    • text has no value
  • The correct way to approach the previous example is to set the values of userSelected and text after setting the coding, since those assignments only change the specific subelements on the left side of those assignments:

    * myCodeableConcept = $SCT#363346000 "Malignant neoplastic disease (disorder)"
    * myCodeableConcept.coding[0].userSelected = true
    * myCodeableConcept.text = "Metastatic Cancer"
    
Assignments with the Quantity Data Type

FSH provides a shorthand that allows quantities, units of measure, and display string for the units of measure to be specified simultaneously, provided the units of measure are Unified Code for Units of Measure (UCUM) codes:

<Quantity> = {decimal} '{UCUM code}' "{units display string}"

A similar shorthand can be used for other code systems by specifying the unit using the standard FSH code syntax:

<Quantity> = {decimal} {CodeSystem}|{version string}#{code} "{units display string}"

Alternatively, the value and units can also be set independently. To assign a value, use the Quantity.value property:

* <Quantity>.value = {decimal}

The units of measure can be set by assigning a coded value to a Quantity:

* <Quantity> = {CodeSystem}|{version string}#{code} "{units display string}"

Examples:

  • Set the valueQuantity of an Observation to 55 millimeters using UCUM units:

    * valueQuantity = 55.0 'mm'
    
  • Set the numerical value of Observation.valueQuantity to 55.0 without setting the units:

    * valueQuantity.value = 55.0
    
  • Express a weight in pounds, using the UMLS code for units (not recommended), and displaying “pounds”:

    * valueQuantity = 155.0 http://terminology.hl7.org/CodeSystem/umls#C0439219 "pounds"
    
  • Set the units of the same valueQuantity to millimeters, without setting the value (assuming $UCUM has been defined as an alias for http://unitsofmeasure.org):

    * valueQuantity = $UCUM#mm "millimeters"
    
  • Example of how incorrect ordering of rules can result in the loss of a previously assigned value:

    * valueQuantity.unit = "millimeters"
    * valueQuantity = 55.0 'mm'
    

    Note that the second rule pre-clears valueQuantity in its entirety before applying the specified values, so the result is:

    • value is 55.0
    • system is http://unitsofmeasure.org
    • code is “mm”
    • unit has no value
  • The correct way to approach the previous example, so unit has the desired value, is simply to reverse the order of rules:

    * valueQuantity = 55.0 'mm'
    * valueQuantity.unit = "millimeters"
    
  • Another way to approach this example (with the correct result) is:

    * valueQuantity = $UCUM#mm "millimeters"
    * valueQuantity.value = 55.0
    
Assignments Involving References

Resource instances can refer to other resource instances. The referred resources can either exist independently or be contained inline in the DomainResource.contained array. Less commonly, the value of an element can be a resource, rather than a reference to a resource.

A resource reference is assigned using this grammar:

* <Reference> = Reference({Resource})

For assignment of a resource to the value of an element directly:

* <Resource> = {Resource}

As advised in FHIR, the URL is the preferred way to reference an instance for the resource types on which it is defined. One advantage is that the URL can include a version. For an internal FSH-defined instance, referring to an instance by its id (as defined in the Instance declaration) is more typical (see examples).

Examples:

  • Assignment of a reference to an example of a Patient resource to Observation.subject:

    * subject = Reference(EveAnyperson)
    

    where, for example:

    Instance: EveAnyperson   // this is the id of the example instance
    InstanceOf: Patient
    Description: "Eve Anyperson"
    Usage: #example
    * name.given = "Eve"
    * name.family = "Anyperson"
    
  • Assignment of the same instance in Bundle.entry.resource, whose datatype is Resource (not Reference(Resource)):

    * entry[0].resource = EveAnyperson
    
Assignments with the CodeableReference Data Type

TU

The CodeableReference datatype was introduced as part of FHIR R5 release sequence. This type allows for a concept, a reference, or both. FSH supports applying bindings directly to CodeableReferences and directly constraining types on CodeableReferences. To assign values to a CodeableReference, set the CodeableReference’s concept and reference properties directly.

Examples:

  • Constrain Substance.code, which is datatype CodeableReference(SubstanceDefinition) in FHIR R5:

    Profile: LatexSubstance
    Parent: Substance
    Id:     latex-substance
    Description: "A substance consisting of or containing latex"
    // restrict the CodeableConcept aspect to a code in the LatexCodeVS value set:
    * code from LatexCodeVS (required)
    // restrict Reference aspect to an instance of SubstanceDefinition conforming to the LatexSubstanceDefinition profile:
    * code only CodeableReference(LatexSubstanceDefinition)
    
  • Assign the concept and reference aspects of a CodeableReference:

    Instance:   LatexSubstanceExample
    InstanceOf: LatexSubstance
    Title:  "Natural Rubber"
    Description: "Natural rubber latex substance"
    * code.concept = $SCT#1003754000 "Natural rubber latex (substance)"
    * code.reference = Reference(NaturalLatexSubstanceDefinitionExample)
    

Binding Rules

Binding is the process of associating a coded element with a set of possible values. The syntax to bind a value set, or alter an inherited binding, uses the reserved word from:

* <bindable> from {ValueSet} ({strength})

The bindable types in FHIR are code, Coding, CodeableConcept, Quantity, string, and uri. In FHIR R5, TU CodeableReference is also bindable.

The strengths are the same as the binding strengths defined in FHIR, namely: example, preferred, extensible, and required. If strength is not specified, a required binding is assumed.

The binding rules defined in FHIR are applicable to FSH. In particular:

  • When constraining an existing binding, the binding strength can only stay the same or be strengthened (e.g., a preferred binding MAY be replaced with an extensible or required binding).
  • A required value set MAY be replaced by another required value set if the codes in the new value set are a subset of the codes in the original value set.
  • For extensible bindings, the new value set can contain codes not in the existing value set, but additional codes MUST NOT have meanings covered by codes in the base value set.

Examples:

  • Bind to an externally-defined value set using its canonical URL:

    * telecom.system from http://hl7.org/fhir/ValueSet/contact-point-system (required)
    
  • Bind to an externally-defined value set with required binding by default:

    * gender from http://hl7.org/fhir/ValueSet/administrative-gender
    
  • Bind to a value set using an alias name, assuming $AdGen is an alias for http://hl7.org/fhir/ValueSet/administrative-gender:

    * gender from $AdGen
    
  • Bind to a value set by its name when it is defined in the same FSH project:

    * code from CancerConditionVS (extensible)
    

Cardinality Rules

Cardinality rules constrain (narrow) the number of repetitions of an element. Every element has a cardinality inherited from its parent resource or profile. If the inheriting profile does not alter the cardinality, no cardinality rule is required.

To change the cardinality, the grammar is:

* <element> {min}..{max}

* <element> {min}..   // leave max as-is

* <element> ..{max}   // leave min as-is

As in FHIR, min and max are non-negative integers, and max can also be *, representing unbounded. It is valid to include both the min and max, even if one of them remains the same as in the original cardinality. In this case, FSH implementations SHOULD only generate constraints for the changed values.

Cardinalities MUST follow rules of FHIR profiling, namely that the min and max cardinalities comply within the constraints of the parent.

For convenience and compactness, cardinality rules can be combined with flag rules via the following grammar:

* <element> {card} {flag}

* <element> {card} {flag1} {flag2} {flag3}...

Examples:

  • Set the cardinality of the subject element to 1..1 (required, non-repeating):

    * subject 1..1
    
  • Set the cardinality of the subject element to 1..1 and declare it Must Support:

    * subject 1..1 MS
    
  • Set the cardinality of a sub-element to 0..0 (not permitted):

    * component.referenceRange 0..0
    
  • Require at least one category without changing its upper bound:

    * category 1..
    
  • Allow at most one category without changing its lower bound:

    * category ..1
    

Contains Rules for Extensions

Extensions are created by adding elements to extension arrays. Extension arrays are found at the root level of every resource, nested inside every element, and recursively inside each extension. The structure of extensions is defined by FHIR (see Extension element). Profiling extensions is discussed in Defining Extensions.

Extensions are specified using the contains keyword. There are two types of extensions, standalone and inline:

  • Standalone extensions have their own StructureDefinitions, and can be reused. They can be defined internally (in the same FSH project), or externally in core FHIR or an external IG. Only standalone extensions can be used directly in profiles.
  • Inline extensions do not have StructureDefinitions, and cannot be reused in other profiles. Inline extensions can only be used to specify sub-extensions in a complex (nested) extension.

The syntaxes to specify standalone extension(s) are:

* <extension> contains {Extension} named {name} {card} {flag(s)}

* <extension> contains
    {Extension1} named {name1} {card} {flag(s)} and
    {Extension2} named {name2} {card} {flag(s)} and
    {Extension3} named {name3} {card} {flag(s)} ...

The syntaxes to define inline extension(s) are:

* <extension> contains {name} {card} {flag(s)}

* <extension> contains
    {name1} {card} {flag(s)} and
    {name2} {card} {flag(s)} and
    {name3} {card} {flag(s)} ...

In these expressions, the names (name, name1, name2, etc.) are new local names created by the rule author. They are used to refer to that extension in later rules. By convention, the local names SHOULD be lower camelCase. These names are exported as slice names in the generated StructureDefinition.

Note: Contains rules can also be applied to modifierExtension arrays; simply replace extension with modifierExtension.

Examples:

  • Add standalone FHIR extensions patient-disability and individual-genderIdentity to a profile of the Patient resource, using the canonical URLs for the extensions:

    * extension contains http://hl7.org/fhir/StructureDefinition/patient-disability named disability 0..1 MS and http://hl7.org/fhir/StructureDefinition/individual-genderIdentity named genderIdentity 0..1 MS
    
  • The same statement, using aliases and whitespace flexibility for better readability:

    Alias: $Disability = http://hl7.org/fhir/StructureDefinition/patient-disability
    Alias: $GenderIdentity = http://hl7.org/fhir/StructureDefinition/individual-genderIdentity
      
    // intervening lines not shown
    
    * extension contains
          $Disability named disability 0..1 MS and
          $GenderIdentity named genderIdentity 0..1 MS
    
  • Add a standalone extension Laterality, defined in the same FSH project, to a bodySite attribute (second level extension):

    * bodySite.extension contains Laterality named laterality 0..1
    
    // intervening lines not shown
    
    Extension: Laterality
    Description: "Body side of a body location."
    * value[x] only CodeableConcept
    * value[x] from LateralityVS (required)
    
  • Show how the inline extensions defined in the US Core Race extension would be defined using FSH:

    * extension contains
        ombCategory 0..5 MS and
        detailed 0..* and
        text 1..1 MS
    // rules defining the inline extensions would typically follow:
    * extension[ombCategory].value[x] only Coding
    * extension[ombCategory].value[x] from http://hl7.org/fhir/us/core/ValueSet/omb-race-category (required)
    * extension[text].value[x] only string
    // etc.
    

Contains Rules for Slicing

Slicing is an advanced, but necessary, feature of FHIR. It is helpful to have a basic understanding of slicing and discriminators before attempting slicing in FSH.

In FSH, slicing is addressed in three steps: (1) specify the slicing logic, (2) define the slices, and (3) constrain each slice’s contents.

Note: The rules from each step MUST be sequentially ordered, i.e., step (1) slicing logic rules before step (2) slice definition rules before step (3) slice content rules.

Step 1. Specify the Slicing Logic

Slicing in FHIR requires authors to specify a discriminator path, type, and rules. In addition, authors can optionally declare the slice as ordered or unordered (default: unordered), and/or provide a description. The meaning and allowable values are exactly as defined in FHIR.

The slicing logic parameters are specified using caret paths on the element to be sliced, which is typically a multi-cardinality (array) element. The discriminator path identifies the element used to distinguish each slice. The discriminator type determines how the slices are differentiated, e.g., by value, pattern, existence of the sliced element, datatype of sliced element, position of the sliced element (R5 and up), or profile conformance.

Example:

  • Provide slicing logic for slices on Observation.component that are to be distinguished by their code:

    * component ^slicing.discriminator.type = #pattern
    * component ^slicing.discriminator.path = "code"
    * component ^slicing.rules = #open
    * component ^slicing.ordered = false   // can be omitted, since false is the default
    * component ^slicing.description = "Slice based on the component.code pattern"
    
Step 2. Define the Slices

The second step in slicing is to populate the array that is to be sliced, using the contains keyword. The syntaxes are very similar to contains rules for inline extensions:

* <array> contains {name} {card} {flag(s)}

* <array> contains
    {name1} {card} {flag(s)} and
    {name2} {card} {flag(s)} and
    {name3} {card} {flag(s)} ...

In this pattern, <array> is a path to the element that is to be sliced and MUST match the path on which the slicing rules were defined in step (1). The names (name, name1, etc.) are created by the rule author to describe the slice in the context of the profile. These names are used to refer to the slice in later rules. By convention, the slice names SHOULD be lower camelCase.

Each slice will match or constrain the datatype of the array it slices. In particular:

  • If the sliced element is an array of a FHIR datatype, each slice will be the same datatype or a profile of it. For example, if Observation.identifier is sliced, each slice will have type Identifier or be constrained to a profile of the Identifier datatype.
  • If the sliced element is an array of a backbone element, each slice “inherits” the sub-elements of the backbone. For example, the slices of Observation.component possess all the elements of Observation.component (code, value[x], dataAbsentReason, etc.). Constraints can be applied to the slices.
  • If the sliced element is an array of a Reference, then each slice MUST be a reference to one or more of the allowed Reference types. For example, if the element to be sliced is Reference(Observation or Condition), then each slice must either be Reference(Observation or Condition), Reference(Observation), Reference(Condition), or a profiled version of those resources.

Examples:

  • Slice the Observation.component array for blood pressure:

    * component contains systolicBP 1..1 MS and diastolicBP 1..1 MS
    
  • Because FSH is white-space invariant, the previous example can be rewritten so the slices appear one-per-line for readability:

    * component contains
        systolicBP 1..1 MS and
        diastolicBP 1..1 MS
    
Reslicing

Reslicing (slicing an existing slice) uses a similar syntax, but the left-hand side uses slice path syntax to refer to the slice that is being resliced:

* <array[{slice name}]> contains {name} {card} {flag(s)}

* <array[{slice name}]> contains
    {name1} {card} {flag(s)} and
    {name2} {card} {flag(s)} and
    {name3} {card} {flag(s)} ...

Example:

  • In an Observation for Apgar score, reslice the Apgar respiration score component into one-, five-, and ten-minute scores:

    * component contains
         appearanceScore 0..3 and
         pulseScore 0..3 and
         grimaceScore 0..3 and
         activityScore 0..3 and
         respirationScore 0..3
    * component[respirationScore] contains
        oneMinuteScore 0..1 and
        fiveMinuteScore 0..1 and
        tenMinuteScore 0..1
    
Step 3. Constrain the Slice Contents

The final step is to define the properties of each slice. FSH requires slice contents to be defined inline. The rule syntax is the same as constraining any other element, but the slice path syntax is used to specify the path:

* <array>[{slice name}].<element> {constraint}

The slice content rules MUST appear after the contains rule that creates the slices.

Example:

  • Constrain the content of the systolicBP and diastolicBP slices:

    * component[systolicBP].code = $LNC#8480-6 // Systolic blood pressure
    * component[systolicBP].value[x] only Quantity
    * component[systolicBP].value[x] = $UCUM#mm[Hg] "mmHg"
    * component[diastolicBP].code = $LNC#8462-4 // Diastolic blood pressure
    * component[diastolicBP].value[x] only Quantity
    * component[diastolicBP].value[x] = $UCUM#mm[Hg] "mmHg"
    

At minimum, each slice MUST be constrained such that it is uniquely identifiable via the discriminator (see Step 1). For example, if the discriminator path points to an element that is a CodeableConcept, and it discriminates by value or pattern, then each slice must constrain that CodeableConcept using an assignment rule or binding rule that uniquely distinguishes it from the other slices.

Complete Slicing Example:

  • Slice the components of an Observation to represent the dimensions of a tumor:
Profile: TumorSize
Parent:  Observation
Id: example-tumor-size
Title: "Tumor Size"
Description:  "Records the one to three dimensions of a tumor"
* code = $LNC#21889-1 //"Size Tumor"
// other rules omitted
* component ^slicing.discriminator.type = #pattern
* component ^slicing.discriminator.path = "code"
* component ^slicing.rules = #open
* component ^slicing.description = "Slice based on the component.code pattern"
// Contains rule
* component contains tumorLongestDimension 1..1 and tumorOtherDimension 0..2
// Set properties of each slice
* component[tumorLongestDimension] ^short = "Longest tumor dimension"
* component[tumorLongestDimension] ^definition = "The longest tumor dimension in cm or mm."
* component[tumorLongestDimension].code = $LNC#33728-7 // "Size.maximum dimension in Tumor"
* component[tumorLongestDimension].value[x] only Quantity
* component[tumorLongestDimension].value[x] from TumorSizeUnitsVS (required)   // value set defined elsewhere
* component[tumorOtherDimension] ^short = "Other tumor dimension(s)"
* component[tumorOtherDimension] ^definition = "The second or third tumor dimension in cm or mm."
* component[tumorOtherDimension] ^comment = "Additional tumor dimensions should be ordered from largest to smallest."
* component[tumorOtherDimension].code = $LNC#33729-5 // "Size additional dimension in Tumor"
* component[tumorOtherDimension].value[x] only Quantity
* component[tumorOtherDimension].value[x] from TumorSizeUnitsVS (required)

Exclude Rules

Exclude rules are used to remove codes from value sets. Exclude rules appear only in ValueSet items. For more details on exclude rules, see Defining Value Sets.

Flag Rules

Flags are a set of information about the element that impacts how implementers handle them. The flags defined in FHIR, and the symbols used to describe them, are as follows:

Table 13. Flags and their meaning

FHIR Flag FSH Flag Meaning
S MS Must Support
Σ SU Include in summary
?! ?! Modifier
N N Normative element
TU TU Trial use element
D D Draft element

FHIR also defines the flags I and NE, representing elements affected by constraints, and elements that cannot have extensions, respectively. These flags are not supported in flag syntax, since the I flag is determined by the presence of invariants, and NE flags apply only to infrastructural elements in base resources.

The following syntaxes can be used to assign flags:

* <element> {flag}

* <element> {flag1} {flag2}...

* <element1> and <element2> and <element3> ... {flag}

* <element1> and <element2> and <element3> ... {flag1} {flag2}...

Note: When multiple flags are specified, they are separated with whitespace(s). When multiple element paths are specified, they are separated by and.

Examples:

  • Declare communication to be a Must Support and Summary element:

    * communication MS SU
    
  • Declare a list of elements and nested elements to be Must Support:

    * identifier and identifier.system and identifier.value and name and name.family MS
    

Include Rules

Include rules are used to add codes to value sets. Include rules appear only in ValueSet items. For more details on include rules, see Defining Value Sets.

Insert Rules

Rule sets are reusable groups of rules that are defined independently of other items. An insert rule is used to add the contents of a rule set to an item:

* insert {RuleSet}({parameters})

The rules in the named rule set are interpreted as if they were copied and pasted in the designated location.

Each rule in the rule set should be compatible with the item where the rule set is inserted, in the sense that all the rules defined in the rule set apply to elements actually present in the target. Implementations SHOULD check the legality of a rule set at compile time. If a particular rule from a rule set does not match an element in the target, that rule will not be applied, and an error SHOULD be emitted. It is up to implementations if other valid rules from the rule set are applied.

Inserting Simple (Non-Parameterized) Rule Sets

Insert a simple rule set by using the name of the rule set:

* insert {RuleSet}

Examples:

  • Insert the rule set named RuleSet1 into a profile:

    Profile: MyPatientProfile
    Parent: Patient
    Id: my-patient-profile
    Title: "My Patient Profile"
    Description: "An example patient profile."
    * insert RuleSet1
    * deceased[x] only boolean
    // More profile rules
    

    This is equivalent to the following:

    Profile: MyPatientProfile
    Parent: Patient
    Id: my-patient-profile
    Title: "My Patient Profile"
    Description: "An example patient profile."
    * ^status = #draft
    * ^experimental = true
    * ^publisher = "Elbonian Medical Society"
    * deceased[x] only boolean
    // More profile rules
    
  • Use rule sets to define two different national profiles, using a common clinical profile:

    Profile: USBreastRadiologyObservationProfile
    Parent: BreastRadiologyObservationProfile
    Id: us-breast-radiology
    Title: "US Breast Radiology Profile"
    Description: "Breast Radiology Profile with US-specific constraints"
    * insert USObservationRuleSet
    
    Profile: FranceBreastRadiologyObservationProfile
    Parent: BreastRadiologyObservationProfile
    Id: france-breast-radiology
    Title: "France Breast Radiology Profile"
    Description: "Breast Radiology Profile with France-specific constraints"
    * insert FranceObservationRuleSet
    
Inserting Parameterized Rule Sets

To insert a parameterized rule set, use the rule set name with a list of one or more parameter values:

* insert {RuleSet}(value1, value2, value3...)

As indicated, the list of values is enclosed with parentheses () and separated by commas ,. If you need to put literal ) or , characters inside values, escape them with a backslash: \) and \,, respectively. White space separating values is optional, and removed before the value is applied to the rule set definition.

TU

Alternatively, a parameter value may be surrounded by double square brackets [[ ]]. Literal ) and , characters within the double square brackets do not need to be escaped with a backslash*. Use of double brackets makes sense when a parameter requires multiple escape characters.

*The only exception to this is when the author wants to include ]], or ]]) as part of the parameter value. In this case, the ) or , following the ]] must be escaped with a backslash. For example, to include ]], as part of a parameter value within double square brackets, use ]]\,. This needs to be done even if there is whitespace between the ]] and , or ). For example, to include ]] ) as part of a parameter within double square brackets, use ]] \). Additionally, note that the full value must be surrounded with double square brackets in order for this type of processing to occur.

The values provided are substituted into the named rule set to create the rules that will be applied. The number of values provided must match the number of parameters specified in the rule set definition.

Any FSH syntax errors that arise as a result of the value substitution are handled the same way as FSH syntax errors in the declaration of a rule set without parameters. The value substitution is performed without checking the types of the values being substituted or the semantic validity of the resulting rules. Any invalid rules resulting from inserting a parameterized rule set will be detected at the same time as invalid rules resulting from inserting a simple rule set.

Examples:

  • Use the parameterized rule set, Name, to populate an instance of Patient with multiple names (note that the curly brackets in this example are literal, not syntax expressions):

    RuleSet: Name(first, last)
    * name[+].given = "{first}"
    * name[=].family = "{last}"
    
    Instance: MrSmith
    InstanceOf: Patient
    Title: "Mr. Smith"
    Description: "The patient Robert Smith"
    // some rules
    * insert Name(Robert, Smith)
    * insert Name(Rob, Smith)
    * insert Name(Bob, Smith)
    // more rules
    

    When the rule set is expanded and soft indices are resolved, this is equivalent to:

    Instance: MrSmith
    InstanceOf: Patient
    Title: "Mr. Smith"
    Description: "The patient Robert Smith"
    // some rules
    * name[0].given = "Robert"
    * name[0].family = "Smith"
    * name[1].given = "Rob"
    * name[1].family = "Smith"
    * name[2].given = "Bob"
    * name[2].family = "Smith"
    // more rules
    

TU

  • Use the parameterized rule set, AddVariableToTestScript, to add variable definitions to an instance of TestScript:

    RuleSet: AddVariableToTestScript(name, expression)
    * variable[+].name = "{name}"
    * variable[=].expression = "{expression}"
    
    Instance: MyTest
    InstanceOf: TestScript
    Title: "My Test Script"
    Description: "A small test with a few FHIRPath expressions"
    // some rules
    * insert AddVariableToTestScript( firstObservation, [[component.all(valueSampledData.exists())]] )
    * insert AddVariableToTestScript (testResponse, [[resource.repeat(item).answer.value.extension.value.aggregate($this+$total,0)]])
    // more rules
    

    When the rule set is expanded and soft indices are resolved, this is equivalent to:

    Instance: MyTest
    InstanceOf: TestScript
    Title: "My Test Script"
    Description: "A small test with a few FHIRPath expressions"
    // some rules
    * variable[0].name = "firstObservation"
    * variable[0].expression = "component.all(valueSampledData.exists())"
    * variable[1].name = "testResponse"
    * variable[1].expression = "resource.repeat(item).answer.value.extension.value.aggregate($this+$total,0)"
    // more rules
    
Inserting Rule Sets with Path Context

Rule sets can be inserted in the context of a path. The context is specified by giving the path prior to the insert rule:

* <element> insert {RuleSet}(value1, value2, value3...)

Alternately, the context can be given by indenting the insert rule under another rule that provides a path context (see indented rules). The path context from the rule which the insert rule is indented below will be applied to all rules being inserted.

When the rule set is expanded, the path of the element is prepended to the path of all rules in the rule set.

When defining a Code System, rule sets can be inserted in the context of a concept. The context is specific by giving the concept (or hierarchy of concepts, for child codes) prior to the insert rule:

* <concept> insert {RuleSet}(value1, value2, value3...)

Examples:

  • Insert a rule set into a profile specifying an element:

    RuleSet: NameRules
    * family MS
    * given MS
    
    Profile: MyPatientProfile
    Parent: Patient
    // skip some keywords and rules
    * name insert NameRules
    * deceased[x] only boolean
    // More profile rules
    

    An equivalent way to write the profile is:

    Profile: MyPatientProfile
    Parent: Patient
    // skip some keywords and rules
    * name 
      * insert NameRules
    * deceased[x] only boolean
    // More profile rules
    

    Both of the above are equivalent to:

    Profile: MyPatientProfile
    Parent: Patient
    // skip some keywords and rules
    * name.family MS
    * name.given MS
    * deceased[x] only boolean
    // More profile rules
    
  • Insert a rule set into a code system specifying a concept:

    RuleSet: DesignationRules
    * ^designation[0].use = $SCT#900000000000003001 "Fully specified name"
    * ^designation[0].language = #en
    
    CodeSystem: MyCodeSystem
    // skip some keywords and rules
    * #code-one "Code one"
    * #code-one insert DesignationRules
    * #code-one #child-code "Child code"
    * #code-one #child-code insert DesignationRules
    // more code system rules
    

    An equivalent way to write the code system is:

    CodeSystem: MyCodeSystem
    // skip some keywords and rules
    * #code-one "Code one"
      * insert DesignationRules
      * #child-code "Child code"
        * insert DesignationRules
    // more code system rules
    

    Both of the above are equivalent to:

    CodeSystem: MyCodeSystem
    // skip some keywords and rules
    * #code-one "Code one"
    * #code-one ^designation[0].use = $SCT#900000000000003001 "Fully specified name"
    * #code-one ^designation[0].language = #en
    * #code-one #child-code "Child code"
    * #code-one #child-code ^designation[0].use = $SCT#900000000000003001 "Fully specified name"
    * #code-one #child-code ^designation[0].language = #en
    // more code system rules
    

Local Code Rules

Local codes rules are used to define codes in code systems. Local code rules appear only in CodeSystem items. For more details on local code rules, see Defining Code Systems.

Mapping Rules

Mapping rules are used to define relationships between different specifications. Mapping rules appear only in Mapping items. For more details on mapping rules, see Defining Mappings.

Obeys Rules

Invariants are constraints that apply to one or more values in instances, expressed as FHIRPath or XPath expressions. An invariant can apply to an instance as a whole or a single element. Multiple invariants can be applied to an instance as a whole or to a single element. The syntax for applying invariants in profiles is:

* obeys {Invariant}

* obeys {Invariant1} and {Invariant2}...

* <element> obeys {Invariant}

* <element> obeys {Invariant1} and {Invariant2}...

The first case applies the invariant to the profile as a whole. The second case applies multiple invariants to the profile as a whole. The third case applies the invariant to a single element, and the fourth case applies multiple invariants to a single element.

The referenced invariant and its properties MUST be declared somewhere within the same FSH project, using the Invariant keyword. See Defining Invariants.

Examples:

  • Assign invariant to US Core Implantable Device (invariant applies to profile as a whole):

    * obeys us-core-9
    
  • Assign invariant to Patient.name in US Core Patient:

    * name obeys us-core-8
    

Path Rules

Path rules are used to set the context for subsequent indented rules.

* <element>

TU

Path rules can also be used to indicate the order for slices to appear in an Instance and to include optional fixed values of a path in an Instance. Path rules have no impact on all other FSH entity types; the only purpose of the path rule on those entities is to set context.

Examples:

  • Set a context of name for subsequent rules:

    * name
      * given MS
      * family MS
    

TU

  • Indicate the order for slices to appear in an Instance:

    Given a profile that has a required “lab” slice on category, such as:

    * category contains lab 1..1
    * category[lab] = $OBSCAT#laboratory
    

    an Instance of that profile can specify that the “lab” slice should come before other values on category by including the following path rule before other rules:

    * category[lab]
    * category[+] = $EX#example
    
  • Include optional fixed values of a path in an Instance:

    • Given a profile where name.family is optional and has a fixed value, such as:

      * name.family = "Smith"
      

      an Instance of that profile can include the fixed value “Smith” by including the following path rule:

      * name.family
      
    • Given a profile with an optional element that has child elements with required fixed values, such as:

      * name 0..*
      * name.family 1..1
      * name.family = "Smith"
      

      an Instance of that profile can include a name with the fixed value “Smith” by including the following path rule:

      * name
      

Type Rules

FSH rules can be used to restrict the datatype(s) of an element. The syntaxes are:

* <element> only {datatype}

* <element> only {datatype1} or {datatype2} or {datatype3}...

* <element> only Reference({Resource/Profile})

* <element> only Reference({Resource/Profile1} or {Resource/Profile2} or {Resource/Profile3}...)

* <element> only Canonical({Resource/Profile})

* <element> only Canonical({Resource/Profile1} or {Resource/Profile2} or {Resource/Profile3}...)

TU

FSH rules can also be used to restrict the target types of CodeableReference elements. The syntaxes are:

* <element> only CodeableReference({Resource/Profile})

* <element> only CodeableReference({Resource/Profile1} or {Resource/Profile2} or {Resource/Profile3}...)

Certain elements in FHIR offer a choice of datatypes using the [x] syntax. Choices also frequently appear in references. For example, Condition.recorder has the choice Reference(Practitioner or PractitionerRole or Patient or RelatedPerson). In both cases, choices can be restricted in two ways: reducing the number or choices, and/or substituting a more restrictive datatype or profile for one of the choices appearing in the parent profile or resource. In some cases, the right-hand side of a type rule may have a combination of datatype, Reference, Canonical, and TUCodeableReference targets.

Following standard profiling rules established in FHIR, the datatype(s) in a type rule MUST always be more restrictive than the original datatype. For example, if the parent datatype is Quantity, it can be replaced by SimpleQuantity, since SimpleQuantity is a profile on Quantity (hence more restrictive than Quantity itself), but cannot be replaced with Ratio, because Ratio is not a type of Quantity. Similarly, Condition.subject, defined as Reference(Patient or Group), can be constrained to Reference(Patient), Reference(Group), or Reference(us-core-patient), but cannot be restricted to Reference(RelatedPerson), since that is neither a Patient nor a Group.

Examples:

  • Restrict a Quantity type to SimpleQuantity:

    * valueQuantity only SimpleQuantity
    
  • Condition.onset[x] is a choice of dateTime, Age, Period, Range or string. To restrict onset[x] to dateTime:

    * onset[x] only dateTime
    
  • Restrict onset[x] to either Period or Range:

    * onset[x] only Period or Range
    
  • Restrict onset[x] to Age, AgeRange, or DateRange, assuming AgeRange and DateRange are profiles of FHIR’s Range datatype (thus permissible restrictions on Range):

    * onset[x] only Age or AgeRange or DateRange
    

TU

  • Restrict value[x] to the integer64 type (note: this datatype was introduced in FHIR R5):

    * value[x] only integer64
    
  • Restrict Observation.performer (nominally Reference(Practitioner | PractitionerRole | Organization | CareTeam | Patient | RelatedPerson)) to allow only Practitioner:

    * performer only Reference(Practitioner)
    
  • Restrict performer to either a Practitioner or a PractitionerRole:

    * performer only Reference(Practitioner or PractitionerRole)
    
  • Restrict performer to PrimaryCarePhysician or EmergencyRoomPhysician (assuming these are profiles on Practitioner):

    * performer only Reference(PrimaryCarePhysician or EmergencyRoomPhysician)
    
  • Restrict the Practitioner choice of performer to a PrimaryCarePhysician, without restricting other choices. Because the path specifically calls out the Practitioner choice, the result is that performer can reference a Practitioner resource that validates against the PrimaryCareProvider profile or any of the other choices (PractitionerRole, Organization, CareTeam, Patient, and RelatedPerson):

    * performer[Practitioner] only Reference(PrimaryCareProvider)
    
  • Restrict the performer Reference datatype to the LiteralReference profile and its target types to Practitioner or PractitionerRole. Note that the first rule restricts the Reference datatype and the second rule restricts the types it can refer to:

    * performer only LiteralReference
    * performer only Reference(PrimaryCarePhysician or EmergencyRoomPhysician)
    
  • Restrict PlanDefinition.action.definition[x], nominally a choice of uri or canonical(ActivityDefinition | PlanDefinition | Questionnaire), to allow only the canonical of an ActivityDefinition:

    * action.definition[x] only Canonical(ActivityDefinition)
    
  • Restrict action.definition[x] to a canonical of either an ActivityDefinition or a PlanDefinition:

    * action.definition[x] only Canonical(ActivityDefinition or PlanDefinition)
    

TU

  • Restrict MedicationRequest.reason, a choice of CodeableReference(Condition | Observation), to allow only a CodeableReference to an Observation

    * reason only CodeableReference(Observation)
    
  • Restrict CarePlan.activity.performedActivity to a CodeableReference of an Encounter or a Procedure:

    * activity.performedActivity only CodeableReference(Encounter or Procedure)
    

Appendix: Abbreviations

Abbreviation Description
ANTLR ANother Tool for Language Recognition
D Flag denoting draft status
FHIR Fast Healthcare Interoperability Resources
FSH FHIR Shorthand
IG Implementation Guide
JSON JavaScript Object Notation
$LNC Common FSH alias for LOINC code system (http://loinc.org)
LOINC Logical Observation Identifiers Names and Codes
NPI National Provider Identifier (US)
N Flag denoting normative element
MS Flag denoting a Must Support element
OID Object Identifier
$SCT Common FSH alias for SNOMED Clinical Terms
SU Flag denoting “include in summary”
TU Flag denoting trial use element
UCUM Unified Code for Units of Measure
$UCUM Common FSH alias for Unified Code for Units of Measure
URL Uniform Resource Locator
XML Extensible Markup Language

Appendix: FSH Grammar (informative)

SUSHI provides an implementation of a FSH language parser described in ANTLR v4. It includes elements of the FSH language marked as TU. The entity names defined in the grammar may not correspond to those used in the language specification. If there is a conflict between the language specification and the grammar defined in this Appendix, the language specification takes precedence. This grammar implementation is provided for informational purposes and is not normative.

The latest version of the parser grammar can be found here and here.

The latest version of the lexer grammar can be found here and here.