Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

58 rader
1007 B

  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": "biginteger"
  35. },
  36. "overview": {
  37. "type": "richtext"
  38. },
  39. "specification": {
  40. "type": "richtext"
  41. },
  42. "accessories": {
  43. "type": "richtext"
  44. },
  45. "film": {
  46. "collection": "file",
  47. "via": "related",
  48. "allowedTypes": [
  49. "images",
  50. "files",
  51. "videos"
  52. ],
  53. "plugin": "upload",
  54. "required": false
  55. }
  56. }
  57. }