Skip to main content

Schema Registry API

Space-scoped schema registry for managing data contracts and schema definitions.

Endpoints Overview

MethodEndpointDescription
GET/{slug}/schema-registryList schemas
POST/{slug}/schema-registryCreate schema
GET/{slug}/schema-registry/{id}Get schema
PATCH/{slug}/schema-registry/{id}Update schema
DELETE/{slug}/schema-registry/{id}Delete schema

Create Schema

POST /{slug}/schema-registry
{
"name": "Customer Events v2",
"schema_type": "avro",
"schema_definition": { ... },
"description": "Customer event stream schema"
}

Update Schema

PATCH /{slug}/schema-registry/{schema_id}

Partial update — only specified fields are modified.


Error Responses

StatusDescription
404Schema not found