2014-06-03 22:45:18 +03:00
|
|
|
{
|
|
|
|
"type":"object",
|
|
|
|
"$schema": "http://json-schema.org/draft-04/schema",
|
|
|
|
"title" : "VCMI map object format",
|
|
|
|
"description" : "Description of map object class",
|
2023-01-11 00:48:51 +02:00
|
|
|
"required": [ "handler", "name" ],
|
2014-06-03 22:45:18 +03:00
|
|
|
"additionalProperties" : false,
|
|
|
|
|
|
|
|
"properties":{
|
|
|
|
"index": {
|
2018-10-30 23:30:56 +02:00
|
|
|
"type":"number"
|
2014-06-03 22:45:18 +03:00
|
|
|
},
|
2023-01-01 20:51:56 +02:00
|
|
|
"lastReservedIndex" : {
|
|
|
|
"type":"number"
|
|
|
|
},
|
2014-06-03 22:45:18 +03:00
|
|
|
"handler": {
|
2018-10-30 23:30:56 +02:00
|
|
|
"type":"string"
|
2014-06-03 22:45:18 +03:00
|
|
|
},
|
|
|
|
"base": {
|
2014-06-04 11:25:13 +03:00
|
|
|
"type" : "object"
|
2014-06-03 22:45:18 +03:00
|
|
|
},
|
2023-01-11 00:48:51 +02:00
|
|
|
"name": {
|
|
|
|
"type":"string"
|
|
|
|
},
|
2014-06-03 22:45:18 +03:00
|
|
|
"types": {
|
|
|
|
"type":"object",
|
|
|
|
"additionalProperties": {
|
2018-10-30 23:30:56 +02:00
|
|
|
"$ref" : "objectType.json"
|
2014-06-03 22:45:18 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|