core/src/main/java/org/apache/rocketmq/schema/registry/core/api/v1/SchemaController.java [91:110]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        consumes = MediaType.APPLICATION_JSON_VALUE
        )
    @ResponseStatus(HttpStatus.OK)
    @ApiOperation(
        value = "Register a new schema",
        notes = "Return success if there were no errors registering the schema"
        )
    @ApiResponses(
        {
            @ApiResponse(
                code = HttpURLConnection.HTTP_OK,
                message = "The schema was registered"
            ),
            @ApiResponse(
                code = HttpURLConnection.HTTP_NOT_FOUND,
                message = "The requested schema cannot be registered"
            )
        }
        )
    public RegisterSchemaResponse registerSchema(
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



core/src/main/java/org/apache/rocketmq/schema/registry/core/api/v1/SchemaController.java [124:143]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        consumes = MediaType.APPLICATION_JSON_VALUE
        )
    @ResponseStatus(HttpStatus.OK)
    @ApiOperation(
        value = "Register a new schema",
        notes = "Return success if there were no errors registering the schema"
        )
    @ApiResponses(
        {
            @ApiResponse(
                code = HttpURLConnection.HTTP_OK,
                message = "The schema was registered"
            ),
            @ApiResponse(
                code = HttpURLConnection.HTTP_NOT_FOUND,
                message = "The requested schema cannot be registered"
            )
        }
        )
    public RegisterSchemaResponse registerSchema(
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



