echo.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "about": {
  3. "trial": false,
  4. "author": {
  5. "name": "EMQ",
  6. "email": "contact@emqx.io",
  7. "company": "EMQ Technologies Co., Ltd",
  8. "website": "https://www.emqx.io"
  9. },
  10. "helpUrl": {
  11. "en_US": "https://github.com/lf-edge/ekuiper/blob/master/docs/en_US/sqls/custom_functions.md",
  12. "zh_CN": "https://github.com/lf-edge/ekuiper/blob/master/docs/zh_CN/sqls/custom_functions.md"
  13. },
  14. "description": {
  15. "en_US": "",
  16. "zh_CN": ""
  17. }
  18. },
  19. "name": "echo",
  20. "functions": [{
  21. "name": "echo",
  22. "example": "echo(col1)",
  23. "hint": {
  24. "en_US": "The parameter value is output as it is.",
  25. "zh_CN": "原样输出参数值。"
  26. },
  27. "args": [
  28. {
  29. "name": "inputData",
  30. "hidden": true,
  31. "optional": false,
  32. "control": "text",
  33. "type": "string",
  34. "hint": {
  35. "en_US": "Input data",
  36. "zh_CN": "输入数据"
  37. },
  38. "label": {
  39. "en_US": "Input data",
  40. "zh_CN": "输入数据"
  41. }
  42. }
  43. ],
  44. "outputs": [
  45. {
  46. "label": {
  47. "en_US": "Output",
  48. "zh_CN": "输出"
  49. },
  50. "value": "echo"
  51. }
  52. ],
  53. "node": {
  54. "category": "abc",
  55. "icon": "iconPath",
  56. "label": {
  57. "en_US": "countPlusOne",
  58. "zh_CN": "countPlusOne"
  59. }
  60. }
  61. }]
  62. }