{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CollectionInput", "title": "CollectionInput", "type": "object", "required": [ "title" ], "properties": { "title": { "type": "string", "description": "Display title of the collection" }, "description": { "type": "string", "description": "Description of the collection" }, "apis": { "type": "array", "items": { "type": "string" }, "description": "List of API identifiers to include in the collection" } } }