{"id":30617269,"url":"https://github.com/yelandaokong/openknowledge2","last_synced_at":"2026-04-04T22:31:08.159Z","repository":{"id":290364382,"uuid":"974079684","full_name":"YELANDAOKONG/OpenKnowledge2","owner":"YELANDAOKONG","description":"[C#/Study] OpenKnowledge System, Open-Sources for everyone! ","archived":false,"fork":false,"pushed_at":"2025-08-26T04:00:31.000Z","size":472,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-26T06:07:25.886Z","etag":null,"topics":["ai","avalonia","csharp","desktop","examination","examination-system","linux","macos","open-source","study","windows"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/YELANDAOKONG.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-04-28T08:19:49.000Z","updated_at":"2025-08-26T04:00:35.000Z","dependencies_parsed_at":null,"dependency_job_id":"a205987b-b557-4ff8-aae9-08cfbd43ce2a","html_url":"https://github.com/YELANDAOKONG/OpenKnowledge2","commit_stats":null,"previous_names":["yelandaokong/openknowledge2"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/YELANDAOKONG/OpenKnowledge2","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YELANDAOKONG%2FOpenKnowledge2","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YELANDAOKONG%2FOpenKnowledge2/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YELANDAOKONG%2FOpenKnowledge2/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YELANDAOKONG%2FOpenKnowledge2/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/YELANDAOKONG","download_url":"https://codeload.github.com/YELANDAOKONG/OpenKnowledge2/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YELANDAOKONG%2FOpenKnowledge2/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272833342,"owners_count":25000874,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-30T02:00:09.474Z","response_time":77,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai","avalonia","csharp","desktop","examination","examination-system","linux","macos","open-source","study","windows"],"created_at":"2025-08-30T10:02:33.120Z","updated_at":"2025-12-30T21:34:33.608Z","avatar_url":"https://github.com/YELANDAOKONG.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# OpenKnowledge2\n\n\u003e [C#/Study] OpenKnowledge System, Open-Sources for everyone! \n\n---\n\n## 关于此项目\n\nOpenKnowledge 是一个完全开源的知识学习框架协议规范。\n\n此仓库存放的是 OpenKnowledge 的 C# 实现。\n\n![图片](README.png)\n\n\u003e **部分功能仍在开发中...**\n\n---\n\n## 格式\n\n由于暂时没有详细的规范文档来规范 Exam 数据格式，\n目前请参考 C# 代码的数据结构来了解相关数据结构。\n\n**当前代码实现并不是最完美的解决方案，请等待后续优化。**\n\n[协议规范文档（数据结构）](PROTOCOL.MD)\n\n\u003e **示例试卷格式 (JSON)**\n\n示例没有涵盖所有支持的题目类型；\n如果需要了解详细结构，请参考 C# 命名空间 `LibraryOpenKnowledge.Models` 下的文件。\n\n```json\n{\n  \"ExaminationVersion\": {\n    \"Major\": 3,\n    \"Minor\": 0,\n    \"Patch\": 1\n  },\n  \"ExaminationMetadata\": {\n    \"ExamId\": \"TEST-ID\",\n    \"Title\": \"TEST-TITLE\",\n    \"Description\": \"TEST-DESCRIPTION\",\n    \"Subject\": \"TEST-SUBJECT\",\n    \"Language\": \"zh-CN\",\n    \"TotalScore\": 100.0,\n    \"ReferenceMaterials\": []\n  },\n  \"ExaminationSections\": [\n    {\n      \"SectionId\": \"TEST-SECTION-ID\",\n      \"Title\": \"TEST-SECTION-TITLE\",\n      \"Description\": \"TEST-SECTION-DESCRIPTION\",\n      \"ReferenceMaterials\": [\n        {\n          \"Materials\": [\n            \"TEST-MATERIAL-1\",\n            \"TEST-MATERIAL-2\"\n          ],\n          \"Images\": null\n        }\n      ],\n      \"Score\": 100.0,\n      \"Questions\": [\n        {\n          \"QuestionId\": \"TEST-QUESTION-ID\",\n          \"Type\": 1,\n          \"Stem\": \"1 and 100 which is bigger?\",\n          \"Options\": [\n            {\n              \"Id\": \"A\",\n              \"Text\": \"1\"\n            },\n            {\n              \"Id\": \"B\",\n              \"Text\": \"100\"\n            }\n          ],\n          \"Score\": 10.0,\n          \"UserAnswer\": null,\n          \"Answer\": [\n            \"A\"\n          ],\n          \"ReferenceAnswer\": null,\n          \"ReferenceMaterials\": [],\n          \"IsAiJudge\": false,\n          \"Commits\": []\n        },\n        {\n          \"QuestionId\": \"TEST-QUESTION-ID-2\",\n          \"Type\": 1,\n          \"Stem\": \"1000 and 100 which is bigger?\",\n          \"Options\": [\n            {\n              \"Id\": \"A\",\n              \"Text\": \"1000\"\n            },\n            {\n              \"Id\": \"B\",\n              \"Text\": \"100\"\n            }\n          ],\n          \"Score\": 80.0,\n          \"UserAnswer\": null,\n          \"Answer\": [\n            \"B\"\n          ],\n          \"ReferenceAnswer\": null,\n          \"ReferenceMaterials\": [],\n          \"IsAiJudge\": false,\n          \"Commits\": []\n        },\n        {\n          \"QuestionId\": \"TEST-QUESTION-ID-3\",\n          \"Type\": 5,\n          \"Stem\": \"1 + 114514 + 2 * 3 = (?), with calculation processing\",\n          \"Options\": [],\n          \"Score\": 100.0,\n          \"UserAnswer\": null,\n          \"Answer\": [\n            \"114521\"\n          ],\n          \"ReferenceAnswer\": null,\n          \"ReferenceMaterials\": [],\n          \"IsAiJudge\": true,\n          \"Commits\": [\n            \"1 + 114514 + 2 * 3 = 1 + 114514 + 6\",\n            \"1 + 114514 + 2 * 3 = 114515 + 6\",\n            \"1 + 114514 + 2 * 3 = 114521\"\n          ]\n        }\n      ]\n    }\n  ]\n}\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyelandaokong%2Fopenknowledge2","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyelandaokong%2Fopenknowledge2","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyelandaokong%2Fopenknowledge2/lists"}