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
EBNF
usingDefinition
: 'using' qualifiedIdentifier ('version' versionSpecifier)? ('called' localIdentifier)?
;