knowledge_point.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "$schema": "https://json-schema.org/draft/2020-12/schema",
  3. "title": "Knowledge Point",
  4. "description": "执业药师考试知识点条目",
  5. "type": "object",
  6. "properties": {
  7. "point_id": {
  8. "type": "string",
  9. "description": "知识点唯一ID,格式 KP-{subject}-{chapter}-{seq}"
  10. },
  11. "subject": {
  12. "type": "string",
  13. "enum": ["yao1", "yao2", "fagui", "zonghe"],
  14. "description": "考试科目代码"
  15. },
  16. "chapter_id": {
  17. "type": "string",
  18. "description": "章节ID"
  19. },
  20. "chapter_name": {
  21. "type": "string",
  22. "description": "章节名称"
  23. },
  24. "title": {
  25. "type": "string",
  26. "description": "知识点标题"
  27. },
  28. "content": {
  29. "type": "string",
  30. "description": "知识点详细内容"
  31. },
  32. "difficulty": {
  33. "type": "integer",
  34. "minimum": 1,
  35. "maximum": 5,
  36. "description": "难度等级 1-5"
  37. },
  38. "frequency": {
  39. "type": "string",
  40. "enum": ["高频", "中频", "低频", "未考"],
  41. "description": "历年考点频率"
  42. },
  43. "related_drugs": {
  44. "type": "array",
  45. "items": {"type": "string"},
  46. "description": "关联药品条目ID列表"
  47. },
  48. "source": {
  49. "type": "string",
  50. "description": "来源标注"
  51. },
  52. "key_points": {
  53. "type": "array",
  54. "items": {"type": "string"},
  55. "description": "关键考点提炼"
  56. }
  57. },
  58. "required": ["point_id", "subject", "chapter_id", "title", "content", "difficulty"]
  59. }