{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Device Driver Manifest", "type": "object", "required": ["vendor", "model", "transport", "version"], "properties": { "vendor": { "type": "string", "minLength": 1 }, "model": { "type": "string", "minLength": 1 }, "transport": { "type": "string", "enum": ["file", "tcp", "http"] }, "capabilities": { "type": "array", "items": { "type": "string" } }, "version": { "type": "string" } }, "additionalProperties": true }