Skip to content

Format Type Reference

Purpose: Detailed format type parsing behavior and examples


Detailed parsing behavior for each format type.

PropertyValue
DescriptionSimple string value
Parsing BehaviorCaptures everything after the tag name as the value
Example@libar-docs-pattern CommandOrchestrator
NotesMost common format for single-value tags
PropertyValue
DescriptionConstrained to predefined values
Parsing BehaviorValidates value against allowed list; rejects invalid values
Example@libar-docs-status roadmap
NotesUsed for FSM states, priority levels, risk levels
PropertyValue
DescriptionString in quotes (preserves spaces)
Parsing BehaviorExtracts content between quotes; preserves internal whitespace
Example@libar-docs-usecase "When a user submits a form"
NotesUse for human-readable text with spaces
PropertyValue
DescriptionComma-separated values
Parsing BehaviorSplits on commas; trims whitespace from each value
Example@libar-docs-uses CommandBus, EventStore, Projection
NotesUsed for relationship tags and multi-value references
PropertyValue
DescriptionNumeric value
Parsing BehaviorParses as integer; NaN if invalid
Example@libar-docs-phase 14
NotesUsed for phase numbers and ordering
PropertyValue
DescriptionBoolean presence (no value needed)
Parsing BehaviorPresence of tag indicates true; absence indicates false
Example@libar-docs-core
NotesUsed for boolean markers like core, overview, decision

Back to Taxonomy Reference