Request to add a data source
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/apache-shardingsphere/refs/heads/main/json-schema/apache-shardingsphere-data-source-request-schema.json", "title": "DataSourceRequest", "description": "Request to add a data source", "type": "object", "properties": { "name": { "type": "string", "description": "Data source name" }, "url": { "type": "string", "description": "JDBC connection URL" }, "username": { "type": "string" }, "password": { "type": "string" }, "maxPoolSize": { "type": "integer" } }, "required": [ "name", "url", "username", "password" ] }