composite.json 228 B

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