MarketplaceAssistantRequest schema from WSO2 API Manager
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/wso2/refs/heads/main/json-schema/devportal-api-marketplace-assistant-request-schema.json", "title": "MarketplaceAssistantRequest", "description": "MarketplaceAssistantRequest schema from WSO2 API Manager", "required": [ "query", "history" ], "type": "object", "properties": { "query": { "type": "string", "description": "natural langugae query given by the user.", "example": "Hi" }, "history": { "type": "array", "items": { "$ref": "#/components/schemas/ChatMessage" } } } }