v61

latestOpenAPI 3.1.0Apache 2.0raw.githubusercontent.com2026-08-018131,3812.6 MB
Event Gateway Schema Registries

Create Schema Registry

Creates a new schema registry associated with the specified Event Gateway.

post/v1/event-gateways/{gatewayId}/schema-registries

Request body

namestring required

The unique name of the schema registry.

descriptionstring

A human-readable description of the virtual cluster.

type'confluent' required

The type of the schema registry.

labelsLabels

Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.

Keys must be of length 1-63 characters, and cannot start with "kong", "konnect", "mesh", "kic", or "_".

Example request

{
  "config": {
    "authentication": {
      "password": "${vault.env['MY_ENV_VAR']}"
    }
  },
  "labels": {
    "env": "test"
  }
}

Response

Created

namestring required

The unique name of the schema registry.

descriptionstring

A human-readable description of the virtual cluster.

typestring required

The type of the schema registry.

configobject

The configuration of the schema registry.

labelsLabels

Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.

Keys must be of length 1-63 characters, and cannot start with "kong", "konnect", "mesh", "kic", or "_".

idstring uuid required

The unique identifier of the schema registry.

created_atstring date-time required

An ISO-8601 timestamp representation of entity creation date.

updated_atstring date-time required

An ISO-8601 timestamp representation of entity update date.

Example response

{
  "labels": {
    "env": "test"
  },
  "created_at": "2022-11-04T20:10:06.927Z",
  "updated_at": "2022-11-04T20:10:06.927Z"
}