We keep our Avro schemas in Confluent's Schema Registry. It would be great if we could point the schema_uri to the registry's API, but the registry returns the Avro schema as a nested JSON object with the key schema:
HTTP/1.1 200 OK
Content-Type: application/vnd.schemaregistry.v1+json
{
"schema": "{\"type\": \"string\"}"
}
Thoughts on what would be the best way to support this?
We keep our Avro schemas in Confluent's Schema Registry. It would be great if we could point the
schema_urito the registry's API, but the registry returns the Avro schema as a nested JSON object with the keyschema:Thoughts on what would be the best way to support this?