Database

ShardingSphere logical database

DatabaseDistributed SQLRead-Write SplittingShardingSQLApacheOpen Source

Properties

Name Type Description
name string Database name
dataSources array Registered data source names
View JSON Schema on GitHub

JSON Schema

apache-shardingsphere-database-schema.json Raw ↑
{
  "$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-database-schema.json",
  "title": "Database",
  "description": "ShardingSphere logical database",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Database name"
    },
    "dataSources": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Registered data source names"
    }
  }
}