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.

35 rader
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. }