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

62 lines
1.1 KiB

  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. "to": {
  15. "type": "string",
  16. "regex": "\\+?([ -]?\\d+)+|\\(\\d+\\)([ -]\\d+)",
  17. "required": false
  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. "state": {
  31. "type": "string",
  32. "private": false
  33. },
  34. "body": {
  35. "type": "string"
  36. },
  37. "keterangan": {
  38. "type": "string"
  39. },
  40. "isForwarded": {
  41. "type": "boolean",
  42. "default": false
  43. },
  44. "chat_key": {
  45. "model": "chats"
  46. },
  47. "from": {
  48. "type": "string"
  49. },
  50. "messageId": {
  51. "type": "string"
  52. },
  53. "timestamp": {
  54. "type": "datetime"
  55. },
  56. "session_datum_key": {
  57. "model": "session-data",
  58. "via": "message"
  59. }
  60. }
  61. }