mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-28 08:48:48 +02:00
28 lines
532 B
JSON
28 lines
532 B
JSON
{
|
|
"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": {
|
|
"type" : "object"
|
|
},
|
|
"types": {
|
|
"type":"object",
|
|
"additionalProperties": {
|
|
"$ref" : "vcmi:objectTemplate"
|
|
}
|
|
}
|
|
}
|
|
}
|