wa_strapi
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 rivejä
949 B

  1. {
  2. "kind": "collectionType",
  3. "collectionName": "messages",
  4. "info": {
  5. "name": "message",
  6. "description": ""
  7. },
  8. "options": {
  9. "increments": true,
  10. "timestamps": true,
  11. "draftAndPublish": true
  12. },
  13. "attributes": {
  14. "send_to": {
  15. "type": "string",
  16. "regex": "\\+?([ -]?\\d+)+|\\(\\d+\\)([ -]\\d+)",
  17. "required": true
  18. },
  19. "body_var": {
  20. "type": "json",
  21. "required": false
  22. },
  23. "attachment": {
  24. "collection": "file",
  25. "via": "related",
  26. "allowedTypes": [
  27. "files",
  28. "images",
  29. "videos"
  30. ],
  31. "plugin": "upload",
  32. "required": false
  33. },
  34. "template_key": {
  35. "model": "message-template"
  36. },
  37. "state": {
  38. "type": "string",
  39. "private": false
  40. },
  41. "raw_text": {
  42. "type": "string"
  43. },
  44. "session_datum_key": {
  45. "model": "session-data"
  46. },
  47. "keterangan": {
  48. "type": "string"
  49. }
  50. }
  51. }