Skip to main content

Split Schema — Deprecated

The /split-schema endpoint has been merged into the unified /schema endpoint. Use /schema with a split_id parameter instead.

Migration

Replace your /split-schema calls with /schema using split_id: Before:
POST /split-schema
{
  "split_id": "uuid",
  "split_schema_config": { ... }
}
After:
POST /schema
{
  "split_id": "uuid",
  "split_schema_config": { ... }
}
The request body is identical — just change the URL from /split-schema to /schema. See the Schema Extraction docs for full details on both single and split modes.