Skip to content
HomePagesHomePages template kit

FormatIdentity

What identifies a format independent of its geometry.

What identifies a format independent of its geometry. id is the stable reference identity a deliverable stores, unique within the template; label is picker display text; category is curated browsing metadata; preset is a provenance tag naming the library entry this format’s geometry matches — picker-only display, never pipeline-read.

Import from @homepages/template-kit.

export interface FormatIdentity {
readonly id: string;
readonly label: string;
readonly category: ContentCategory;
readonly preset?: string;
}