| 1234567891011121314151617181920212223242526272829 |
- {
- "type":"object",
- "$schema": "http://json-schema.org/draft-04/schema",
- "title" : "VCMI map object format",
- "description" : "Description of map object class",
- "required": [ "handler" ],
- "additionalProperties" : false,
- "properties":{
- "index": {
- "type":"number"
- },
- "lastReservedIndex" : {
- "type":"number"
- },
- "handler": {
- "type":"string"
- },
- "base": {
- "type" : "object"
- },
- "types": {
- "type":"object",
- "additionalProperties": {
- "$ref" : "objectType.json"
- }
- }
- }
- }
|