v28

latestOpenAPI 3.1.0raw.githubusercontent.com2026-06-263064641.4 MB
Event Gateway Schema Registries

Update Schema Registry

Updates an existing schema registry associated with the specified Event Gateway.

put/v1/event-gateways/{gatewayId}/schema-registries/{schemaRegistryId}

Request body

namestring required

The unique name of the schema registry.

descriptionstring

A human-readable description.

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

Updated schema registry object.

namestring required

The unique name of the schema registry.

descriptionstring

A human-readable description.

typestring required

The type of the schema registry.

configobject nullable

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"
}