All pages
Powered by GitBook
1 of 1

Schema Registry

put

Set the default compatibility mode

Body
compatibilitystringRequired
Responses
204Success
400
The request input was invalid
application/json
401
Authentication error
application/json
402
The purchased Lenses license does not provide access to this feature
application/json
403
Authorisation error
application/json
404
The requested resource cannot be found
application/json
500
An internal server error has occurred
application/json
put
PUT /api/v1/environments/{name}/proxy/api/v1/sr/default/config HTTP/1.1
Host: 
Content-Type: application/json
Accept: */*
Content-Length: 24

{
  "compatibility": "text"
}

No content

get

Get the default compatibility mode

Responses
200Success
application/json
400
The request input was invalid
application/json
401
Authentication error
application/json
402
The purchased Lenses license does not provide access to this feature
application/json
403
Authorisation error
application/json
404
The requested resource cannot be found
application/json
500
An internal server error has occurred
application/json
get
GET /api/v1/environments/{name}/proxy/api/v1/sr/default/config HTTP/1.1
Host: 
Accept: */*
{
  "compatibility": "text"
}
get

Get the set of schema formats used in this specific collection of subjects

Responses
200Success
application/json
400
The request input was invalid
application/json
401
Authentication error
application/json
402
The purchased Lenses license does not provide access to this feature
application/json
403
Authorisation error
application/json
404
The requested resource cannot be found
application/json
500
An internal server error has occurred
application/json
get
GET /api/v1/environments/{name}/proxy/api/v1/sr/default/formats HTTP/1.1
Host: 
Accept: */*
{
  "formats": [
    "text"
  ]
}
put

Set/unset a subject's compatibility mode

Path parameters
subject_namestringRequired

The subject name

Body
compatibilitystringRequired
Responses
204Success
400
The request input was invalid
application/json
401
Authentication error
application/json
402
The purchased Lenses license does not provide access to this feature
application/json
403
Authorisation error
application/json
404
The requested resource cannot be found
application/json
500
An internal server error has occurred
application/json
put
PUT /api/v1/environments/{name}/proxy/api/v1/sr/default/subject/{subject_name}/config HTTP/1.1
Host: 
Content-Type: application/json
Accept: */*
Content-Length: 24

{
  "compatibility": "text"
}

No content