jsonschema.json 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. {
  2. "description":"AI应用场景演示配置JSON",
  3. "type":"object",
  4. "required":[
  5. "pageLayout",
  6. "reasoningResults"
  7. ],
  8. "properties":{
  9. "pageLayout":{
  10. "type":"string",
  11. "enum":[
  12. "DEFAULT"
  13. ],
  14. "description":"页面布局 * DEFAULT:默认",
  15. "default":"DEFAULT"
  16. },
  17. "reasoningResults":{
  18. "nullable":false,
  19. "type":"array",
  20. "description":"推理结果展示定义数组",
  21. "items":{
  22. "description":"推理结果展示形式定义",
  23. "type":"object",
  24. "required":[
  25. "displayForm"
  26. ],
  27. "oneOf":[
  28. {
  29. "title":"PROP_GRID:属性表格",
  30. "properties":{
  31. "displayForm":{
  32. "type":"string",
  33. "nullable":false,
  34. "default":"PROP_GRID"
  35. },
  36. "title":{
  37. "type":"string",
  38. "description":"标题",
  39. "maxLength":100
  40. },
  41. "dataMapping":{
  42. "type":"array",
  43. "items":{
  44. "description":"属性表格数据映射",
  45. "type":"object",
  46. "required":[
  47. "markCoordXpath"
  48. ],
  49. "properties":{
  50. "labelXpath":{
  51. "type":"string",
  52. "description":"属性label获取路径配置"
  53. },
  54. "value":{
  55. "description":"数据值配置",
  56. "type":"object",
  57. "required":[
  58. "xpath"
  59. ],
  60. "properties":{
  61. "xpath":{
  62. "type":"string",
  63. "description":"值获取路径"
  64. },
  65. "format":{
  66. "type":"string",
  67. "description":"格式化设置"
  68. },
  69. "uiType":{
  70. "type":"string",
  71. "enum":[
  72. "PROGRESS_BAR",
  73. "VALUE"
  74. ],
  75. "description":"数值展现形式 * PROGRESS_BAR: 展示进度条 * VALUE: 展示值",
  76. "default":"VALUE"
  77. }
  78. }
  79. }
  80. }
  81. }
  82. }
  83. }
  84. },
  85. {
  86. "title":"TABLE:表格",
  87. "properties":{
  88. "displayForm":{
  89. "type":"string",
  90. "nullable":false,
  91. "default":"TABLE"
  92. },
  93. "title":{
  94. "type":"string",
  95. "description":"标题",
  96. "maxLength":100
  97. },
  98. "dataMapping":{
  99. "type":"array",
  100. "items":{
  101. "description":"数据值配置",
  102. "type":"object",
  103. "required":[
  104. "xpath"
  105. ],
  106. "properties":{
  107. "columnName":{
  108. "type":"string",
  109. "description":"列名"
  110. },
  111. "xpath":{
  112. "type":"string",
  113. "description":"值获取路径"
  114. },
  115. "format":{
  116. "type":"string",
  117. "description":"格式化设置"
  118. },
  119. "uiType":{
  120. "type":"string",
  121. "enum":[
  122. "PROGRESS_BAR",
  123. "VALUE"
  124. ],
  125. "description":"数值展现形式 * PROGRESS_BAR: 展示进度条 * VALUE: 展示值",
  126. "default":"VALUE"
  127. }
  128. }
  129. }
  130. }
  131. }
  132. },
  133. {
  134. "title":"PIC_MARK:图片标注",
  135. "properties":{
  136. "displayForm":{
  137. "type":"string",
  138. "nullable":false,
  139. "default":"PIC_MARK"
  140. },
  141. "title":{
  142. "type":"string",
  143. "description":"标题",
  144. "maxLength":100
  145. },
  146. "dataMapping":{
  147. "type":"array",
  148. "items":{
  149. "description":"图片标注数据映射",
  150. "type":"object",
  151. "required":[
  152. "markCoordXpath"
  153. ],
  154. "properties":{
  155. "markTitleXpath":{
  156. "type":"string",
  157. "description":"标注标题数据获取路径"
  158. },
  159. "markCoordXpath":{
  160. "description":"标注坐标数据获取路径",
  161. "type":"object",
  162. "nullable":false,
  163. "required":[
  164. "startX",
  165. "startY"
  166. ],
  167. "properties":{
  168. "startX":{
  169. "type":"string",
  170. "nullable":false,
  171. "description":"起点X坐标"
  172. },
  173. "startY":{
  174. "type":"string",
  175. "nullable":false,
  176. "description":"起点Y坐标"
  177. },
  178. "endX":{
  179. "type":"string",
  180. "description":"终点X坐标"
  181. },
  182. "endY":{
  183. "type":"string",
  184. "description":"终点Y坐标"
  185. },
  186. "width":{
  187. "type":"string",
  188. "description":"宽度"
  189. },
  190. "height":{
  191. "type":"string",
  192. "description":"高度"
  193. }
  194. }
  195. }
  196. }
  197. }
  198. }
  199. }
  200. }
  201. ]
  202. }
  203. }
  204. }
  205. }