Harmonized Content Atoms
Granular knowledge blocks extracted from N-sources and prioritized based on the Liquid Persona. Each atom is mapped to a universal schema regardless of source system.
interface HarmonizedContentAtom {
id: string; // source:external_id
source: string;
type: "product" | "editorial" | "asset" | "social_proof";
elements: {
element_type: "text" | "media" | "gallery" | "data_grid";
role?: string;
value?: string;
url?: string;
data?: Record<string, any>;
}[];
relevance: {
score: number;
reasoning: string;
};
}{
"source": "Aura Blockchain",
"type": "provenance",
"elements": [
{ "element_type": "text", "role": "title", "value": "Blockchain Passport" },
{ "element_type": "data_grid", "data": { "origin": "Florence", "year": "2024" } }
],
"relevance": { "score": 0.98, "reasoning": "User values authenticity." }
}