您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

77 行
1.3 KiB

  1. {
  2. "kind": "collectionType",
  3. "collectionName": "products",
  4. "info": {
  5. "name": "Product",
  6. "description": ""
  7. },
  8. "options": {
  9. "increments": true,
  10. "timestamps": true,
  11. "draftAndPublish": true
  12. },
  13. "attributes": {
  14. "name": {
  15. "type": "string",
  16. "required": true,
  17. "unique": true
  18. },
  19. "description": {
  20. "type": "richtext"
  21. },
  22. "img": {
  23. "collection": "file",
  24. "via": "related",
  25. "allowedTypes": [
  26. "files",
  27. "images",
  28. "videos"
  29. ],
  30. "plugin": "upload",
  31. "required": true
  32. },
  33. "price": {
  34. "type": "float"
  35. },
  36. "overview": {
  37. "type": "richtext"
  38. },
  39. "specification": {
  40. "type": "richtext"
  41. },
  42. "accessories": {
  43. "type": "richtext"
  44. },
  45. "stock": {
  46. "type": "biginteger"
  47. },
  48. "film": {
  49. "type": "richtext"
  50. },
  51. "categories": {
  52. "type": "enumeration",
  53. "enum": [
  54. "matic",
  55. "maxi",
  56. "naked",
  57. "sport",
  58. "offroad",
  59. "moped",
  60. "monsterenergy",
  61. "cbu",
  62. "atv",
  63. "powerproduct"
  64. ]
  65. },
  66. "business_partner": {
  67. "model": "business-partner",
  68. "via": "products"
  69. },
  70. "couriers": {
  71. "collection": "courier",
  72. "via": "products",
  73. "dominant": true
  74. }
  75. }
  76. }