20 lines
473 B
Plaintext
Raw Permalink Normal View History

2026-03-13 00:21:04 +00:00
let qa_entry_type = {
id | String,
question | String,
answer | String,
actor | String | default = "human",
created_at | String | default = "",
tags | Array String | default = [],
related | Array String | default = [], # ontology node IDs or ADR refs
verified | Bool | default = false,
} in
let qa_store_type = {
entries | Array qa_entry_type | default = [],
} in
{
QaEntry = qa_entry_type,
QaStore = qa_store_type,
}