2014-06-03 22:45:18 +03:00
|
|
|
{
|
|
|
|
"type":"object",
|
|
|
|
"$schema": "http://json-schema.org/draft-04/schema",
|
|
|
|
"title" : "VCMI map object type format",
|
|
|
|
"description" : "Description of map object type, used only as sub-schema of object",
|
|
|
|
"required": [ ],
|
|
|
|
"additionalProperties" : true, // may have type-dependant properties
|
|
|
|
|
|
|
|
"properties":{
|
|
|
|
"index": {
|
|
|
|
"type":"number",
|
|
|
|
},
|
|
|
|
"name": {
|
|
|
|
"type":"string",
|
|
|
|
},
|
|
|
|
|
|
|
|
"base": {
|
2014-06-04 11:25:13 +03:00
|
|
|
"type" : "object"
|
2014-06-03 22:45:18 +03:00
|
|
|
},
|
|
|
|
"types": {
|
|
|
|
"type":"object",
|
|
|
|
"additionalProperties": {
|
|
|
|
"$ref" : "vcmi:objectTemplate"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|