boolean.json 207 B

1234567891011121314
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema#",
  3. "type": "number",
  4. "oneOf": [
  5. {
  6. "standsFor": false,
  7. "const": 0
  8. },
  9. {
  10. "standsFor": true,
  11. "const": 1
  12. }
  13. ]
  14. }