Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

35 righe
601 B

  1. {
  2. "kind": "collectionType",
  3. "collectionName": "latest_news",
  4. "info": {
  5. "name": "Latest News"
  6. },
  7. "options": {
  8. "increments": true,
  9. "timestamps": true,
  10. "draftAndPublish": true
  11. },
  12. "attributes": {
  13. "title": {
  14. "type": "string",
  15. "required": true,
  16. "unique": true
  17. },
  18. "description": {
  19. "type": "richtext",
  20. "required": true
  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. }
  34. }