add basic nats server module

This commit is contained in:
Joel Wetzell
2026-03-01 13:02:55 -06:00
parent 87fcc63068
commit 4f7820af5e
5 changed files with 261 additions and 3 deletions

View File

@@ -207,6 +207,38 @@
"required": ["id", "type", "params"],
"additionalProperties": false
},
{
"type": "object",
"title": "NATSServerModule",
"properties": {
"id": {
"type": "string",
"minLength": 1
},
"type": {
"const": "nats.server"
},
"params": {
"type": "object",
"properties": {
"ip": {
"type": "string",
"default": "0.0.0.0"
},
"port": {
"type": "integer",
"minimum": 1,
"maximum": 65535,
"default": 4222
}
},
"required": [],
"additionalProperties": false
}
},
"required": ["id", "type", "params"],
"additionalProperties": false
},
{
"type": "object",
"title": "PSNClientModule",