| 12345678910111213141516171819 |
- {
- "$schema": "http://json-schema.org/draft-06/schema#",
- "definitions": {
- "distance": {
- "type": "integer",
- "exclusiveMinimum": 0,
- "multipleOf": 5
- },
- "money": {
- "properties": {
- "pp": {"type": "integer", "minimum": 0},
- "gp": {"type": "integer", "minimum": 0},
- "sp": {"type": "integer", "minimum": 0},
- "cp": {"type": "integer", "minimum": 0}
- },
- "type": "object"
- }
- }
- }
|