common.json 454 B

12345678910111213141516171819
  1. {
  2. "$schema": "http://json-schema.org/draft-06/schema#",
  3. "definitions": {
  4. "distance": {
  5. "type": "integer",
  6. "exclusiveMinimum": 0,
  7. "multipleOf": 5
  8. },
  9. "money": {
  10. "properties": {
  11. "pp": {"type": "integer", "minimum": 0},
  12. "gp": {"type": "integer", "minimum": 0},
  13. "sp": {"type": "integer", "minimum": 0},
  14. "cp": {"type": "integer", "minimum": 0}
  15. },
  16. "type": "object"
  17. }
  18. }
  19. }