highscoreCreatures.json 603 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "type": "object",
  3. "$schema": "http://json-schema.org/draft-04/schema",
  4. "title": "Highscore Creature format",
  5. "description" : "Json format for defining highscore for creatures in VCMI",
  6. "properties": {
  7. "creatures": {
  8. "type": "array",
  9. "items": {
  10. "type": "object",
  11. "required": [
  12. "creature"
  13. ],
  14. "properties": {
  15. "min": {
  16. "type": "integer"
  17. },
  18. "max": {
  19. "type": "integer"
  20. },
  21. "creature": {
  22. "type": "string"
  23. }
  24. },
  25. "additionalProperties": false
  26. }
  27. }
  28. },
  29. "required": [
  30. "creatures"
  31. ],
  32. "additionalProperties": false
  33. }