25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

25 satır
420 B

  1. {
  2. "kind": "collectionType",
  3. "collectionName": "subscriptions",
  4. "info": {
  5. "name": "Subscription",
  6. "description": ""
  7. },
  8. "options": {
  9. "increments": true,
  10. "timestamps": true,
  11. "draftAndPublish": true
  12. },
  13. "attributes": {
  14. "email": {
  15. "type": "email",
  16. "required": true,
  17. "unique": true
  18. },
  19. "is_subscribed": {
  20. "type": "boolean",
  21. "default": true
  22. }
  23. }
  24. }