Configuration for multiple components
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ComponentConfiguration", "title": "ComponentConfiguration", "type": "object", "description": "Configuration for multiple components", "required": [ "components" ], "properties": { "components": { "type": "array", "items": { "$ref": "#/components/schemas/Component" } } } }