wa_strapi
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

50 rindas
842 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. "time_based",
  18. "query_based"
  19. ]
  20. },
  21. "trigger": {
  22. "type": "string"
  23. },
  24. "start_date": {
  25. "type": "datetime"
  26. },
  27. "end_date": {
  28. "type": "datetime"
  29. },
  30. "periodic": {
  31. "type": "boolean"
  32. },
  33. "message_template_key": {
  34. "model": "message-template",
  35. "via": "bot"
  36. },
  37. "template_query": {
  38. "type": "json"
  39. },
  40. "apply_to": {
  41. "collection": "chats",
  42. "via": "bots",
  43. "dominant": true
  44. },
  45. "name": {
  46. "type": "string"
  47. }
  48. }
  49. }