{ "title": "JSON schema for Outblocks database table files", "$schema": "http://json-schema.org/draft-04/schema", "$ref": "#/definitions/OutblocksTable", "definitions": { "OutblocksTable": { "title": "OutblocksTable", "type": "object", "additionalProperties": false, "properties": { "fields": { "$ref": "#/definitions/Fields" } } }, "Fields": { "title": "Fields", "type": "object", "additionalProperties": true, "patternProperties": { "^[_a-zA-Z][a-zA-Z0-9_-]*$": { "type": "object", "properties": { "type": { "description": "The type of the field.", "type": "string" }, "default": { "description": "Default value of the field." } }, "required": [ "type" ] } } } } }