lib/multiwoven/integrations/source/http_model/config/spec.json in multiwoven-integrations-0.15.1 vs lib/multiwoven/integrations/source/http_model/config/spec.json in multiwoven-integrations-0.15.2

- old
+ new

@@ -2,34 +2,35 @@ "documentation_url": "https://docs.multiwoven.com/integrations/source/http-model-endpoint", "stream_type": "user_defined", "connector_query_type": "ai_ml", "connection_specification": { "$schema": "http://json-schema.org/draft-07/schema#", - "title": "Http Model Endpoint", + "title": "HTTP Model Endpoint", "type": "object", "required": ["url_host"], "properties": { "url_host": { "type": "string", "title": "URL", "order": 0 }, "headers": { - "title": "Http Headers", + "title": "HTTP Headers", + "description": "Custom headers to include in the HTTP request. Useful for authentication, content type specifications, and other request metadata.", "order": 1, "additionalProperties": { "type": "string" } }, "config": { "title": "", "type": "object", "properties": { "timeout": { - "type": "integer", - "minimum": 0, - "default": 30, - "title": "Http Timeout", + "type": "string", + "default": "30", + "title": "HTTP Timeout", + "description": "The maximum time, in seconds, to wait for a response from the server before the request is canceled.", "order": 0 } }, "order": 2 },