Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

54 строки
892 B

  1. {
  2. "kind": "collectionType",
  3. "collectionName": "apparels",
  4. "info": {
  5. "name": "Apparel"
  6. },
  7. "options": {
  8. "increments": true,
  9. "timestamps": true,
  10. "draftAndPublish": true
  11. },
  12. "attributes": {
  13. "name": {
  14. "type": "string"
  15. },
  16. "description": {
  17. "type": "richtext"
  18. },
  19. "price": {
  20. "type": "biginteger"
  21. },
  22. "stock": {
  23. "type": "biginteger"
  24. },
  25. "part_code": {
  26. "type": "string"
  27. },
  28. "category": {
  29. "type": "enumeration",
  30. "enum": [
  31. "RConcept",
  32. "Asia",
  33. "Basic",
  34. "Merchandise",
  35. "Maxi",
  36. "RainSuit",
  37. "motoGP",
  38. "OffRoad"
  39. ]
  40. },
  41. "img": {
  42. "model": "file",
  43. "via": "related",
  44. "allowedTypes": [
  45. "images",
  46. "files",
  47. "videos"
  48. ],
  49. "plugin": "upload",
  50. "required": false
  51. }
  52. }
  53. }