{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://vkk.local/schemas/kb-concept-frontmatter.schema.json",
  "title": "KB 概念文件 frontmatter",
  "description": "校验 knowledge/ 下非保留名概念文件（不含 index.md、log.md）的 YAML frontmatter 关系字段。变更目录 01～07 不在此 schema 强制范围。",
  "type": "object",
  "required": ["type", "related", "depends_on"],
  "properties": {
    "type": {
      "type": "string",
      "minLength": 1,
      "description": "OKF 生产者 type，见 kb-okf.md §3"
    },
    "title": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "timestamp": {
      "type": "string",
      "format": "date-time"
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "resource": {
      "type": "string"
    },
    "related": {
      "type": "array",
      "description": "语义关联的 wikilink 目标（无括号、无 .md 后缀）",
      "items": {
        "$ref": "#/$defs/wikilinkTarget"
      }
    },
    "depends_on": {
      "type": "array",
      "description": "硬依赖的 wikilink 目标（无括号、无 .md 后缀）",
      "items": {
        "$ref": "#/$defs/wikilinkTarget"
      }
    },
    "status": {
      "type": "string",
      "enum": ["current", "superseded"],
      "description": "时效状态；缺省视为 current。superseded 表示结论已被取代，检索默认降权"
    },
    "supersedes": {
      "type": "array",
      "description": "本文件取代的概念 wikilink 目标（无括号、无 .md 后缀）",
      "items": {
        "$ref": "#/$defs/wikilinkTarget"
      }
    },
    "keywords": {
      "type": "array",
      "description": "可选检索注记（A-MEM 风格关键词）",
      "items": {
        "type": "string"
      }
    }
  },
  "additionalProperties": true,
  "$defs": {
    "wikilinkTarget": {
      "type": "string",
      "minLength": 1,
      "pattern": "^[^\\[\\]|]+(\\|[^\\[\\]]+)?$",
      "not": {
        "pattern": "^https?://"
      },
      "description": "wikilink 路径；可选管道显示名（path|label），禁止 http(s) URL 与方括号"
    }
  }
}
