mapLayer.json 441 B

1234567891011121314151617181920
  1. {
  2. "type" : "object",
  3. "$schema" : "http://json-schema.org/draft-04/schema",
  4. "title" : "VCMI mapLayers format",
  5. "description" : "Format used to define new map layers in VCMI",
  6. "required" : [ "text" ],
  7. "additionalProperties" : false,
  8. "properties" : {
  9. "text" :
  10. {
  11. "type" : "string",
  12. "description" : "Human-readable name of the layer"
  13. },
  14. "index" :
  15. {
  16. "type" : "number",
  17. "description" : "Internal, do not use"
  18. }
  19. }
  20. }