Apache ShardingSphere · JSON Structure

Apache Shardingsphere Database Request Structure

Request to create a logical database

Type: object Properties: 1 Required: 1
DatabaseDistributed SQLRead-Write SplittingShardingSQLApacheOpen Source

DatabaseRequest is a JSON Structure definition published by Apache ShardingSphere, describing 1 property, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name

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-request-structure.json",
  "description": "Request to create a logical database",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Database name"
    }
  },
  "required": [
    "name"
  ],
  "name": "DatabaseRequest"
}