Advertisement
Guest User

Untitled

a guest
Dec 12th, 2019
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.04 KB | None | 0 0
  1. [
  2. {
  3. "key": "reportDetails",
  4. "type": "ReportDetails",
  5. "accordion": {
  6. "label": "Report Details"
  7. },
  8. "components": [
  9. {
  10. "key": "reportDate",
  11. "type": "Date",
  12. "description": "Report Date"
  13. },
  14. {
  15. "key": "reportTitle",
  16. "type": "Text",
  17. "description": "Title"
  18. },
  19. {
  20. "key": "skfCaseNumber",
  21. "type": "Text",
  22. "description": "Local SKF report number"
  23. },
  24. {
  25. "key": "ConfidentialCheckBox",
  26. "type": "CheckBox",
  27. "description": "Is the report confidential?"
  28. }
  29. ]
  30. },
  31. {
  32. "key": "investigationDetails",
  33. "type": "InvestigationDetails",
  34. "accordion": {
  35. "label": "Investigation Details"
  36. },
  37. "components": [
  38. {
  39. "key": "rmaNumber",
  40. "type": "Text",
  41. "description": "SKF Return Material Authorization (RMA) number / Service request number"
  42. },
  43. {
  44. "key": "terNumber",
  45. "type": "Text",
  46. "description": "TER number (reference only)"
  47. },
  48. {
  49. "key": "purpose",
  50. "type": "AutoCompleteCreatable",
  51. "description": "Purpose of the investigation",
  52. "args": [
  53. {
  54. "options": [
  55. {
  56. "label": "Failure analysis",
  57. "value": "Failure analysis"
  58. },
  59. {
  60. "label": "Performance analysis",
  61. "value": "Performance analysis"
  62. },
  63. {
  64. "label": "Conformance analysis",
  65. "value": "Conformance analysis"
  66. },
  67. {
  68. "label": "SKF testing / investigation",
  69. "value": "SKF testing / investigation"
  70. }
  71. ]
  72. }
  73. ]
  74. },
  75. {
  76. "key": "scopeOfInvestigation",
  77. "type": "Text",
  78. "description": "Scope of investigation"
  79. }
  80. ]
  81. },
  82. {
  83. "key": "skfDetails",
  84. "type": "SkfDetails",
  85. "accordion": {
  86. "label": "SKF Details"
  87. },
  88. "components": [
  89. {
  90. "key": "skfCompany",
  91. "type": "CountryCompanyLocation",
  92. "description": "SKF Company"
  93. },
  94. {
  95. "type": "UserPicker",
  96. "key": "reportAuthor",
  97. "description": "Report Author",
  98. "args": [
  99. {
  100. "key": "name",
  101. "type": "AutoCompleteUser",
  102. "description": "Author name",
  103. "args": [
  104. {
  105. "apiPath": "/lists/users"
  106. }
  107. ]
  108. },
  109. {
  110. "key": "email",
  111. "type": "Text",
  112. "description": "Author e-mail"
  113. },
  114. {
  115. "key": "phone",
  116. "type": "Text",
  117. "description": "Author phone number"
  118. }
  119. ]
  120. },
  121. {
  122. "type": "UserPicker",
  123. "key": "coReportAuthor",
  124. "description": "Report Co-author",
  125. "args": [
  126. {
  127. "key": "name",
  128. "type": "AutoCompleteUser",
  129. "description": "Co-author Name",
  130. "args": [
  131. {
  132. "apiPath": "/lists/users"
  133. }
  134. ]
  135. },
  136. {
  137. "key": "email",
  138. "type": "Text",
  139. "description": "Co-author e-mail"
  140. },
  141. {
  142. "key": "phone",
  143. "type": "Text",
  144. "description": "Co-author phone number"
  145. }
  146. ]
  147. },
  148. {
  149. "type": "SubHeader",
  150. "key": "reportApprovedBy",
  151. "description": "Report Approved By"
  152. },
  153. {
  154. "type": "AutoCompleteCreatableUser",
  155. "key": "approversEmail",
  156. "description": "Approvers e-mail address",
  157. "args": [
  158. {
  159. "apiPath": "/lists/users"
  160. }
  161. ]
  162. },
  163. {
  164. "type": "SubHeader",
  165. "key": "distributionListHeader",
  166. "description": "Distribution list"
  167. },
  168. {
  169. "type": "AutoCompleteCreatableMultiple",
  170. "key": "distributionList",
  171. "description": "E-mail addresses for distribution list",
  172. "args": [
  173. {
  174. "apiPath": "/lists/users"
  175. },
  176. {
  177. "valueLabelParams": {
  178. "value": "email",
  179. "label": "email"
  180. }
  181. }
  182. ]
  183. },
  184. {
  185. "type": "SubHeader",
  186. "key": "delegationListHeader",
  187. "description": "Delegation list (enable read/write)"
  188. },
  189. {
  190. "type": "AutoCompleteCreatableMultiple",
  191. "key": "delegationList",
  192. "description": "E-mail addresses for delegation list",
  193. "args": [
  194. {
  195. "apiPath": "/lists/users"
  196. },
  197. {
  198. "valueLabelParams": {
  199. "value": "email",
  200. "label": "email"
  201. }
  202. }
  203. ]
  204. }
  205. ]
  206. },
  207. {},
  208. {}
  209. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement