Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

60 řádky
1.0 KiB

  1. {
  2. "kind": "collectionType",
  3. "collectionName": "transaction_hinos",
  4. "info": {
  5. "name": "TransactionHino"
  6. },
  7. "options": {
  8. "increments": true,
  9. "timestamps": true,
  10. "draftAndPublish": true
  11. },
  12. "attributes": {
  13. "order_id": {
  14. "type": "string"
  15. },
  16. "product_name": {
  17. "type": "string"
  18. },
  19. "product_img": {
  20. "model": "file",
  21. "via": "related",
  22. "allowedTypes": [
  23. "images",
  24. "files",
  25. "videos"
  26. ],
  27. "plugin": "upload",
  28. "required": false
  29. },
  30. "product_quantity": {
  31. "type": "biginteger"
  32. },
  33. "product_price": {
  34. "type": "biginteger"
  35. },
  36. "product_color": {
  37. "type": "string"
  38. },
  39. "product_courier": {
  40. "type": "string"
  41. },
  42. "cust_name": {
  43. "type": "string"
  44. },
  45. "cust_telp": {
  46. "type": "biginteger"
  47. },
  48. "cust_address": {
  49. "type": "text"
  50. },
  51. "note": {
  52. "type": "text"
  53. },
  54. "status": {
  55. "model": "status",
  56. "via": "transaction_hinos"
  57. }
  58. }
  59. }