WP10_DEVICE_KNOWLEDGE_GOLDEN_SET.json 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. {
  2. "set_id": "wp10-device-knowledge-v1",
  3. "version": 1,
  4. "status": "template_pending_enterprise_binding",
  5. "purpose": "验证设备资产搜索、授权证据问答、拒答和业务域隔离。",
  6. "binding_requirements": [
  7. "将示例设备 UID、源 ID、位置、责任人和故障替换为企业验收数据。",
  8. "为每个业务域配置 ingestion_sources.permission_scope.business_domains。",
  9. "在企业合规模型环境中执行问答案例并由设备业务专家复核。",
  10. "不得用模拟数据通过企业 UAT。"
  11. ],
  12. "cases": [
  13. {
  14. "id": "WP10-S01",
  15. "type": "search",
  16. "title": "按设备名称检索",
  17. "query": "{{device_name}}",
  18. "actor_scope": ["{{domain_a_uid}}"],
  19. "expected": {
  20. "object_type": "DeviceAsset",
  21. "object_uid": "{{device_uid}}",
  22. "content_contains": ["设备名称:{{device_name}}"]
  23. }
  24. },
  25. {
  26. "id": "WP10-S02",
  27. "type": "search",
  28. "title": "按平台 UID 检索",
  29. "query": "{{device_uid}}",
  30. "actor_scope": ["{{domain_a_uid}}"],
  31. "expected": {
  32. "object_uid": "{{device_uid}}",
  33. "content_contains": ["平台 UID:{{device_uid}}"]
  34. }
  35. },
  36. {
  37. "id": "WP10-S03",
  38. "type": "search",
  39. "title": "按源系统 ID 检索",
  40. "query": "{{source_device_id}}",
  41. "actor_scope": ["{{domain_a_uid}}"],
  42. "expected": {
  43. "object_uid": "{{device_uid}}",
  44. "content_contains": ["源 ID:", "{{source_device_id}}"]
  45. }
  46. },
  47. {
  48. "id": "WP10-S04",
  49. "type": "search",
  50. "title": "按位置检索",
  51. "query": "{{device_location}}",
  52. "actor_scope": ["{{domain_a_uid}}"],
  53. "expected": {
  54. "object_uid": "{{device_uid}}",
  55. "content_contains": ["位置:{{device_location}}"]
  56. }
  57. },
  58. {
  59. "id": "WP10-S05",
  60. "type": "search",
  61. "title": "按责任人检索",
  62. "query": "{{responsible_person}}",
  63. "actor_scope": ["{{domain_a_uid}}"],
  64. "expected": {
  65. "object_uid": "{{device_uid}}",
  66. "content_contains": ["责任人:{{responsible_person}}"]
  67. }
  68. },
  69. {
  70. "id": "WP10-S06",
  71. "type": "search",
  72. "title": "按故障检索",
  73. "query": "{{fault_title}}",
  74. "actor_scope": ["{{domain_a_uid}}"],
  75. "expected": {
  76. "object_uid": "{{device_uid}}",
  77. "content_contains": ["故障:{{fault_title}}", "{{fault_source_id}}"]
  78. }
  79. },
  80. {
  81. "id": "WP10-Q07",
  82. "type": "ask",
  83. "title": "责任人证据问答",
  84. "query": "{{device_name}} 的责任人是谁?",
  85. "actor_scope": ["{{domain_a_uid}}"],
  86. "expected": {
  87. "answer_status": "grounded",
  88. "answer_contains": ["{{responsible_person}}"],
  89. "citation_object_uid": "{{device_uid}}",
  90. "citation_point_key": "DeviceAsset/{{device_uid}}/summary"
  91. }
  92. },
  93. {
  94. "id": "WP10-Q08",
  95. "type": "ask",
  96. "title": "故障证据问答",
  97. "query": "{{device_name}} 有哪些已记录故障?",
  98. "actor_scope": ["{{domain_a_uid}}"],
  99. "expected": {
  100. "answer_status": "grounded",
  101. "answer_contains": ["{{fault_title}}"],
  102. "citation_object_uid": "{{device_uid}}",
  103. "citation_point_key": "DeviceAsset/{{device_uid}}/summary"
  104. }
  105. },
  106. {
  107. "id": "WP10-A09",
  108. "type": "authorization",
  109. "title": "未授权业务域不得泄漏",
  110. "query": "{{domain_b_source_device_id}}",
  111. "actor_scope": ["{{domain_a_uid}}"],
  112. "expected": {
  113. "evidence_count": 0,
  114. "answer": null,
  115. "answer_status": "no_answer"
  116. }
  117. },
  118. {
  119. "id": "WP10-R10",
  120. "type": "refusal",
  121. "title": "证据不足时拒答",
  122. "query": "{{device_name}} 明年的精确故障时间是什么?",
  123. "actor_scope": ["{{domain_a_uid}}"],
  124. "expected": {
  125. "answer": null,
  126. "answer_status": "no_answer",
  127. "citations": []
  128. }
  129. }
  130. ]
  131. }