Interface CollectionExpressionEntry

A Collection Expression Entry links a Manifestation or Expression to the collection the entity is a member of.

interface CollectionExpressionEntry {
    collection: CollectionExpression;
    numberInSeries?: string;
}

Properties

Links to the Collection expression.

numberInSeries?: string

The position of this entity in the collection/series.

Currently extracted from numbering assigned to Manifestations, which may collect more than one expression.

The value can take one of the following forms:

  • a single number (e.g. "1", "2"). This is the most common case.
  • a range (e.g. "1-2") that covers multiple parts of the series.
  • a decimal number for cases where a single logical part has been split into multiple physical parts (e.g. "1.2" or "2022.1").