Skip to content
Snippets Groups Projects
Unverified Commit ea5e20eb authored by Ben Langfeld's avatar Ben Langfeld Committed by GitHub
Browse files

fix(schema): Correct schema for descriptions (#27260)

parent 9eb7a08c
No related branches found
No related tags found
No related merge requests found
......@@ -91,9 +91,21 @@ function addChildrenArrayInParents(): void {
type: 'object',
properties: {
description: {
type: 'string',
description:
'A custom description for this configuration object',
oneOf: [
{
type: 'array',
items: {
type: 'string',
description:
'A custom description for this configuration object',
},
},
{
type: 'string',
description:
'A custom description for this configuration object',
},
],
},
},
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment