DatabaseRequest

Request to create a logical database

DatabaseDistributed SQLRead-Write SplittingShardingSQLApacheOpen Source

Properties

Name Type Description
name string Database name
View JSON Schema on GitHub

JSON Schema

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