ontoref/reflection/schemas/insight.ncl
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

24 lines
404 B
Plaintext

let domain_type = [|
'Language,
'Runtime,
'Architecture,
'Tooling,
'Pattern,
'Debugging,
'Security,
'Performance,
|] in
let insight_type = {
id | String,
domain | domain_type,
applies_to | Array String | default = [],
tags | Array String | default = [],
reusable | Bool | default = true,
} in
{
Domain = domain_type,
Insight = insight_type,
}