From c56a123576b790528a9e4a030f1c0679b11c6665 Mon Sep 17 00:00:00 2001 From: Ilya Mashchenko Date: Thu, 14 Mar 2024 20:22:42 +0200 Subject: go.d.plugin: jsonschema allow array/object to be null (#17166) --- src/go/collectors/go.d.plugin/modules/phpfpm/config_schema.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/go/collectors/go.d.plugin/modules/phpfpm/config_schema.json') diff --git a/src/go/collectors/go.d.plugin/modules/phpfpm/config_schema.json b/src/go/collectors/go.d.plugin/modules/phpfpm/config_schema.json index 60cc0ae528..23928430f4 100644 --- a/src/go/collectors/go.d.plugin/modules/phpfpm/config_schema.json +++ b/src/go/collectors/go.d.plugin/modules/phpfpm/config_schema.json @@ -41,7 +41,10 @@ "type": "string" }, "headers": { - "type": "object", + "type": [ + "object", + "null" + ], "additionalProperties": { "type": "string" } -- cgit v1.2.3