Apache ShardingSphere · JSON Structure

Apache Shardingsphere Database Structure

ShardingSphere logical database

Type: object Properties: 2
DatabaseDistributed SQLRead-Write SplittingShardingSQLApacheOpen Source

Database is a JSON Structure definition published by Apache ShardingSphere, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name dataSources

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-shardingsphere/refs/heads/main/json-structure/apache-shardingsphere-database-structure.json",
  "description": "ShardingSphere logical database",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Database name"
    },
    "dataSources": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Registered data source names"
    }
  },
  "name": "Database"
}