kafka schema registry json schema restproxy问题

im9ewurl  于 2021-06-04  发布在  Kafka
关注(0)|答案(1)|浏览(616)

我试图从rest代理发布json模式,但出现异常
curl-k-x post-h“content-type:application/vnd.schemaregistry.v1+json”--数据{“schema”:“{”type”:“object”,“properties”:{“firstname”:{“type”:“string”},“lastname”:{“type”:“string”},“age”:{“type”:“integer”}https://localhost:8081/subjects/schemaregistry.json-value/versions
json模式格式是否错误?请告知
错误:{“error\u code”:42201,“message”:“输入模式或其引用之一无效”}

oknrviil

oknrviil1#

{"schema":"{\"type\":\"object\",\"properties\":{\"firstname\":{\"type\":\"string\"},\"lastname\":{\"type\":\"string\"},\"age\":{\"type\":\"integer\"}}}", "schemaType":"JSON"}

“schematype”:“json”是发布json模式所必需的

相关问题