When I register a new schema under the subject which name starts with a number, I get 404 response.
Request:
POST https://avro-schema-registry.salsify.com/subjects/1startswithnumber/versions
Content-Type: application/json
Authorization: Basic YXZybzphdnJv
{
"schema": "{\"type\":\"string\"}"
}
Response:
404 Not Found
With the subject starting with character, it works:
Request:
POST https://avro-schema-registry.salsify.com/subjects/startswithcharacter/versions
Content-Type: application/json
Authorization: Basic YXZybzphdnJv
{
"schema": "{\"type\":\"string\"}"
}
Response:
In comparison, Confluent Schema Registry accepts subjects with names starting with numbers.