Vault Entry
#{subject.entryIndex}
- {data ? (
-
- ) : (
-
- )}
+ {propositionalForm ? (
+
+ {propositionalForm}
+
+ ) : null}
+
+ {metadata && Object.keys(metadata).length > 0 ? (
+
+
+ Raw metadata
+
+
+ {stableJson(metadata)}
+
+
+ ) : null}
);
}
diff --git a/workbench-ui/src/app/evidenceContext.tsx b/workbench-ui/src/app/evidenceContext.tsx
index 62aebdaf..64d16aa8 100644
--- a/workbench-ui/src/app/evidenceContext.tsx
+++ b/workbench-ui/src/app/evidenceContext.tsx
@@ -62,7 +62,13 @@ export interface LogosPackSubjectData
export interface VaultEntrySubjectData {
entry_index?: number;
+ epistemic_status?: string;
epistemic_state?: string;
+ // The full open metadata dict the reader passes through. Already carried at
+ // runtime (selectEntry sets the complete VaultEntry); typed here so the
+ // inspector can surface it. Curated rows key off fields that actually exist;
+ // the raw drawer renders the rest.
+ metadata?: Record