{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "job.schema.json", "title": "Tibi job config", "type": "object", "additionalProperties": false, "patternProperties": { "^x-": {} }, "properties": { "cron": { "type": "string" }, "type": { "const": "javascript" }, "file": { "type": "string" }, "timeout": { "type": "integer", "minimum": 0 }, "meta": { "type": "object", "additionalProperties": true } }, "required": [ "type", "file" ] }