wa_strapi
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

51 行
845 B

  1. {
  2. "kind": "collectionType",
  3. "collectionName": "bots",
  4. "info": {
  5. "name": "Bot",
  6. "description": ""
  7. },
  8. "options": {
  9. "increments": true,
  10. "timestamps": true,
  11. "draftAndPublish": true
  12. },
  13. "attributes": {
  14. "conditions": {
  15. "type": "enumeration",
  16. "enum": [
  17. "Day",
  18. "Time",
  19. "Query"
  20. ]
  21. },
  22. "trigger": {
  23. "type": "string"
  24. },
  25. "start_date": {
  26. "type": "datetime"
  27. },
  28. "end_date": {
  29. "type": "datetime"
  30. },
  31. "periodic": {
  32. "type": "boolean"
  33. },
  34. "message_template_key": {
  35. "model": "message-template",
  36. "via": "bot"
  37. },
  38. "template_query": {
  39. "type": "json"
  40. },
  41. "apply_to": {
  42. "collection": "chats",
  43. "via": "bots",
  44. "dominant": true
  45. },
  46. "name": {
  47. "type": "string"
  48. }
  49. }
  50. }