textBased.json 370 B

1234567891011121314151617181920212223
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema#",
  3. "type": "number",
  4. "oneOf": [
  5. {
  6. "standsFor": "Characters",
  7. "const": 1
  8. },
  9. {
  10. "standsFor": "Character Excluding Spaces",
  11. "const": 2
  12. },
  13. {
  14. "standsFor": "Words",
  15. "const": 3
  16. },
  17. {
  18. "standsFor": "Lines",
  19. "const": 4
  20. }
  21. ],
  22. "default": 1
  23. }