Set the default compatibility mode
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 the default compatibility mode
GET /api/v1/environments/{name}/proxy/api/v1/sr/default/config HTTP/1.1 Host: Accept: */*
{ "compatibility": "text" }
Get the set of schema formats used in this specific collection of subjects
GET /api/v1/environments/{name}/proxy/api/v1/sr/default/formats HTTP/1.1 Host: Accept: */*
{ "formats": [ "text" ] }
Set/unset a subject's compatibility mode
The subject name
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" }