Sharding strategy definition
{ "$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-sharding-strategy-schema.json", "title": "ShardingStrategy", "description": "Sharding strategy definition", "type": "object", "properties": { "type": { "type": "string", "enum": [ "standard", "complex", "hint", "none" ], "description": "Strategy type" }, "shardingColumn": { "type": "string", "description": "Column used for sharding" }, "shardingAlgorithmName": { "type": "string", "description": "Sharding algorithm reference" } } }