Jesús Pérez 0396e4037b
Some checks failed
Nickel Type Check / Nickel Type Checking (push) Has been cancelled
Rust CI / Security Audit (push) Has been cancelled
Rust CI / Check + Test + Lint (nightly) (push) Has been cancelled
Rust CI / Check + Test + Lint (stable) (push) Has been cancelled
chore: add ontology and reflection
2026-03-13 00:21:04 +00:00

20 lines
473 B
Plaintext

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,
}