Revert "Fix wrong memorystore nats schema"

This reverts commit 856ccbb969.
This commit is contained in:
Aditya Ujeniya
2025-10-28 08:50:33 +01:00
parent 44e98e8f2f
commit ea7660ddb3

View File

@@ -51,8 +51,6 @@ const configSchema = `{
}, },
"nats": { "nats": {
"description": "Configuration for accepting published data through NATS.", "description": "Configuration for accepting published data through NATS.",
"type": "array",
"items": {
"type": "object", "type": "object",
"properties": { "properties": {
"address": { "address": {
@@ -73,8 +71,6 @@ const configSchema = `{
}, },
"subscriptions": { "subscriptions": {
"description": "Array of various subscriptions. Allows to subscibe to different subjects and publishers.", "description": "Array of various subscriptions. Allows to subscibe to different subjects and publishers.",
"type": "array",
"items": {
"type": "object", "type": "object",
"properties": { "properties": {
"subscribe-to": { "subscribe-to": {
@@ -90,6 +86,4 @@ const configSchema = `{
} }
} }
} }
}
}
}` }`