Glossary

Contents

◷ Reading Time: 1 minute

Glossary

A glossary is a dictionary that defines all of the business terms and their domains. Or it references a Glossary source within other rule documents.

Parameters

  1. name
    1. Description: Sets the name for a glossary to reference
    2. Mandatory: Yes (when it is the container for defining Terms)
    3. Type: String

Internal Commands

Term, GlossarySource

Sample

<Glossary name="Rating">
   <Term name="Price" expression="car.Price" domain="Numeric" />
   <Term name="Car is listed in HTPA" expression="probList.Contains(car.Made+'-'+car.Model)" domain="Boolean" />
   <Term name="Theft Rating" expression="car.TheftCategory=$value" domain="Options">
      <Option value="High" />
      <Option value="Low" />
      <Option value="Moderate" />
   </Term>
   <Term name="Car is Convertible" expression="car.Convertible" domain="Boolean" />
</Glossary>

Updated on November 27, 2025

Was this article helpful?

Related Articles