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.

settings.json 363B

1234567891011121314151617181920
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema#",
  3. "title": "settings",
  4. "link": "settings",
  5. "$ref": "settingsPlusMemos",
  6. "oneOf": [
  7. {
  8. "required": ["memos"],
  9. "minProperties": 2,
  10. "maxProperties": 2
  11. },
  12. {
  13. "not": {
  14. "required": ["memos"]
  15. },
  16. "minProperties": 1,
  17. "maxProperties": 1
  18. }
  19. ]
  20. }