Concepts
Background: citation the humanities
TBA
Behaviors of citable resources
The CITE architecture can be described by four kinds of behavior, corresponding in Julia to four traits or interfaces.
- identification. Scholarly resources are identified using the syntax of the IETF URN specification, and have a human-readable label. This is expressed by implementing the CitableTrait.
- comparison. Citable resources can be compared using the URN logic of equality, containment and similarity. This is expressed by implementing the UrnComparisonTrait.
- serialization. Citable resources can be losslessly serialized to plain-text representation in CEX format and instantiated from the same plain-text representation. This is expressed by implementing the CexTrait.
- iteration. Collections of citable content can be processed sequentially. This is expressed by implementing the iterators interface from Julia’s Iteratorsmodule.
Abstractions of essential types
Using these building blocks, the CitableBase further defines three core abstractions:
- an identifier uniquely identifies scholarly resources using the syntax of the IETF URN specification. This is represented by the Urnabstract type, and requires implementing theUrnComparisonTrait.
- a citable entity is a discrete object identified by a URN. This is represented by the Citableabstract type, and requires implementing theCitableTrait,UrnComparisonTrait, andCexTrait.
- a citable collection is a collection of content identifiable by URN. Unlike identifiers and citable entities, they do not fall within a single type hierarchy, and are not represented by subtyping an abstract type. Instead, they are identified by the CitableCollectionTrait, and implement theUrnComparisonTrait,CexTraitandIterators.
CitableCorpus package
Some citable collections might additionally implement the CitableTrait, in effect making them simultaneously a discrete citable obect (the collection as a whole), and a collection with citable content. The CitableCorpus package illustrates these distinctions handily. Its CitablePassage is a citable object representing a single passage of text. The CitableDocument is both a citable object with its own URN and label, and a collection of citable passages. The CitableCorpus is a pure citable collection of citable documents and citable passages, but does not have its own distinct identifier and label: it is purely a container type.