wa_strapi
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

41 Zeilen
679 B

  1. {
  2. "kind": "collectionType",
  3. "collectionName": "session_data",
  4. "info": {
  5. "name": "Session_Data",
  6. "description": ""
  7. },
  8. "options": {
  9. "increments": true,
  10. "timestamps": true,
  11. "draftAndPublish": true
  12. },
  13. "attributes": {
  14. "name": {
  15. "type": "string"
  16. },
  17. "device_manufacturer": {
  18. "type": "string"
  19. },
  20. "device_model": {
  21. "type": "string"
  22. },
  23. "platform": {
  24. "type": "string"
  25. },
  26. "os_version": {
  27. "type": "string"
  28. },
  29. "session_data": {
  30. "type": "json"
  31. },
  32. "phonenumber": {
  33. "type": "string",
  34. "required": true
  35. },
  36. "sessionId": {
  37. "type": "string"
  38. }
  39. }
  40. }