# DELETE v1/schemas/{id}

{% hint style="danger" %}
**Beta Feature:** This feature is currently in beta and restricted to approved users. If you're are interested in trying it, please [contact support](https://gaffa.dev/support) and we can enable this feature for your account.
{% endhint %}

The following endpoint allows you to delete a schema from your account.

## Delete a data schema

> Deletes a data schema by its ID.

```json
{"openapi":"3.0.1","info":{"title":"Gaffa API Open API Definition","version":"1.0.0"},"servers":[{"url":"https://api.gaffa.dev"}],"security":[{"API Key":[]}],"components":{"securitySchemes":{"API Key":{"type":"apiKey","name":"X-API-Key","in":"header"}}},"paths":{"/v1/schemas/{id}":{"delete":{"tags":["Data Schemas"],"summary":"Delete a data schema","description":"Deletes a data schema by its ID.","operationId":"deleteDataSchema","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"204":{"description":"No description"}}}}}}
```
