player-schema.json 498 B

1234567891011121314151617181920
  1. {
  2. "type": "object",
  3. "properties": {
  4. "route": {
  5. "type": "array",
  6. "items": {
  7. "type": "object",
  8. "properties": {
  9. "from": {"type": "string"},
  10. "to": {"type": "string"},
  11. "transportation": {"type": "string"}
  12. },
  13. "required": ["from", "to", "transportation"]
  14. },
  15. "minItems": 1
  16. }
  17. },
  18. "required": ["route"]
  19. }