You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
425 B

  1. {
  2. "kind": "collectionType",
  3. "collectionName": "categories",
  4. "info": {
  5. "name": "category"
  6. },
  7. "options": {
  8. "increments": true,
  9. "timestamps": true,
  10. "draftAndPublish": true
  11. },
  12. "attributes": {
  13. "name": {
  14. "type": "string",
  15. "required": true,
  16. "unique": true
  17. },
  18. "restaurants": {
  19. "collection": "restaurant",
  20. "via": "categories",
  21. "dominant": true
  22. }
  23. }
  24. }