.
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"$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
|
||||
}
|
||||
Reference in New Issue
Block a user