> ## Documentation Index
> Fetch the complete documentation index at: https://productlasso.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete schema

> Permanently delete a schema.

## Path parameters

<ParamField path="schema_id" type="string" required>
  The unique identifier of the schema to delete.
</ParamField>

## Response

Returns `204 No Content` on success.

<Warning>
  Deleting a schema does not delete tables that were created with it. Those tables retain their column definitions.
</Warning>

<RequestExample>
  ```typescript TypeScript theme={null}
  await client.schemas.delete("schema_abc123");
  ```

  ```python Python theme={null}
  client.schemas.delete("schema_abc123")
  ```

  ```bash cURL theme={null}
  curl -X DELETE "https://hub.banditshq.com/api/v1/schemas/schema_abc123" \
    -H "Authorization: Bearer lasso_..."
  ```
</RequestExample>
