wa_strapi
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

37 行
621 B

  1. {
  2. "kind": "collectionType",
  3. "collectionName": "message_templates",
  4. "info": {
  5. "name": "Message_Template",
  6. "description": ""
  7. },
  8. "options": {
  9. "increments": true,
  10. "timestamps": true,
  11. "draftAndPublish": true
  12. },
  13. "attributes": {
  14. "body": {
  15. "type": "text",
  16. "required": true
  17. },
  18. "state": {
  19. "type": "string"
  20. },
  21. "name": {
  22. "type": "string"
  23. },
  24. "body_vars": {
  25. "type": "string"
  26. },
  27. "message": {
  28. "via": "template_key",
  29. "model": "message"
  30. },
  31. "bot": {
  32. "via": "message_template_key",
  33. "model": "bot"
  34. }
  35. }
  36. }