Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

25 wiersze
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. }