17 lines
590 B
JSON
17 lines
590 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"title": "Card Index Metadata",
|
|
"description": "人读模型卡索引元数据 schema。",
|
|
"type": "object",
|
|
"required": ["index_version", "last_updated", "required_columns"],
|
|
"properties": {
|
|
"index_version": {"type": "string", "description": "卡片索引版本。"},
|
|
"last_updated": {"type": "string", "description": "最后更新时间。"},
|
|
"required_columns": {
|
|
"type": "array",
|
|
"description": "card_index.md 表格必须包含的列名。",
|
|
"items": {"type": "string"}
|
|
}
|
|
}
|
|
}
|