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

41 lines
704 B

  1. {
  2. "kind": "collectionType",
  3. "collectionName": "checkouts",
  4. "info": {
  5. "name": "Checkout"
  6. },
  7. "options": {
  8. "increments": true,
  9. "timestamps": true,
  10. "draftAndPublish": true
  11. },
  12. "attributes": {
  13. "product_name": {
  14. "type": "string"
  15. },
  16. "product_img": {
  17. "model": "file",
  18. "via": "related",
  19. "allowedTypes": [
  20. "images",
  21. "files",
  22. "videos"
  23. ],
  24. "plugin": "upload",
  25. "required": false
  26. },
  27. "product_color": {
  28. "type": "string"
  29. },
  30. "product_quantity": {
  31. "type": "string"
  32. },
  33. "product_total": {
  34. "type": "biginteger"
  35. },
  36. "transaction_id": {
  37. "type": "string"
  38. }
  39. }
  40. }