usingDefinition

Imports a data model into the library. The optional version clause pins the model to a specific version, and the optional called clause provides a local alias for the model name.

Examples

Import FHIR model

using FHIR

Import FHIR with a specific version

using FHIR version '4.0.1'

Import with a local alias

using QDM version '5.6' called QDM
Railroad Diagram
100%
using qualifiedIdentifier version versionSpecifier called localIdentifier

scroll to zoom · drag to pan · click green rules or blue tokens to navigate

EBNF

usingDefinition
  : 'using' qualifiedIdentifier ('version' versionSpecifier)? ('called' localIdentifier)?
  ;

Used In