wa_strapi
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
878 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. "attachment": {
  20. "collection": "file",
  21. "via": "related",
  22. "allowedTypes": [
  23. "files",
  24. "images",
  25. "videos"
  26. ],
  27. "plugin": "upload",
  28. "required": false
  29. },
  30. "template_key": {
  31. "model": "message-template"
  32. },
  33. "state": {
  34. "type": "string",
  35. "private": false
  36. },
  37. "raw_text": {
  38. "type": "string"
  39. },
  40. "session_datum_key": {
  41. "model": "session-data"
  42. },
  43. "keterangan": {
  44. "type": "string"
  45. }
  46. }
  47. }