Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

FOLIO primarily has two ways to represent sets the choice of a value from a set in back end APIs: enumerations and reference records (there are some exceptions, including unconstrained strings and hard coded sets).

Historically, it seems that properties used primarily as information for people (or for dynamic policies) e.g. instance status or material type, are  have been represented as reference records and states or types that the system needs to interpret semantically as enumerations e.g. item status, order type, order workflow status.

Recently, there has been increasing interest in representing the latter as reference records as well. This document is intended to outline the considerations for such an approach.

Challenges

How should FOLIO define a set of values which can be changed by a tenant over time and associate behaviour of the system to specific members of the set?

Should FOLIO follow a single convention for modelling sets of values?

Design

Enumerations

Enumerations are defined directly with the property that they constrain, for example, this is the definition for the possible item status names:

...

Code Block
titleItem Status Names
{
  "name":{
    "description":"Name of the status e.g. Available, Checked out, In transit",
    "type":"string",
    "enum":[
      "Available",
      "Awaiting pickup",
      "Awaiting delivery",
      "Checked out",
      "In process",
      "In transit",
      "Missing",
      "On order",
      "Paged",
      "Declared lost",
      "Order closed",
      "Claimed returned",
      "Withdrawn",
      "Lost and paid",
      "Aged to lost"
    ]
  }
}


Reference Records

Use of reference records is made up of two parts:

  • the set of reference records themselves (with their own API)
  • a property in the record that refers to a member of the reference records by ID

Instance type is an example of this, the API for the reference records is defined here and the referring property in an instance is defined here. There is a corresponding database table and foreign key respectively.

Characteristics

The two approaches have very different characteristics, particular in where they are defined, how they are referred to and how they can change.

...

  • Are referred to by name
  • Are defined by the implementation
  • Members may change independently of module version
  • Clients can dynamically get the members of the set
  • Can have additional descriptive properties (beyond the name) associated with them
  • Can be referenced by multiple properties

Comparison


Defined byReferred to byStability of valuesDescriptive properties
EnumerationsinterfacenameStatic/fixedNo
Reference Recordsimplementationiddynamic/can changeYes


Worked Example - Holdings Source

...

When using reference records, the need to identify a specific member of the set (e.g. the checked out status) presents the significant possibility of implementation coupling between modules. This could undermine the notion that an interface implementation is replaceablereplacement of interfaces within FOLIO.

If the set of reference records can be changed for a tenant (one of the powerful characteristics) then there needs to be an understand of how that effects other records or systems that refer to members of the set e.g. what happens if a status or type no longer exists?

...

  • How do client modules identify a specific member of the set in order to attach meaning or semantics to it?
  • What should happen if no reference record can be found using the chosen identification?

Summary

There are significant trade offs to both approaches, this becomes especially challenging when the members of the set both need to be changed by a tenant over time and have specific behaviour associated with them.

Related work

The Technical Council and Sys Ops SIG have been discussing how reference records should work, e.g. should users be able to change them? and how upgrades should affect them e.g. should a change to the modules default definition of reference records overwrite changes made by a user?

...