Format file

This commit is contained in:
Era Dorta 2026-03-02 00:51:51 +01:00
parent a65c228c9b
commit cab77e0c08

View File

@ -14,7 +14,13 @@ class JsonOpenApiController {
@GetMapping("/models")
@Operation(summary = "Signal JSON model schema catalog")
@ApiResponse(responseCode = "200", description = "Catalog of Signal JSON model schemas", content = @Content(mediaType = "application/json", schema = @Schema(implementation = JsonSchemaCatalog.class)))
@ApiResponse(
responseCode = "200", description = "Catalog of Signal JSON model schemas",
content = @Content(
mediaType = "application/json",
schema = @Schema(implementation = JsonSchemaCatalog.class)
)
)
JsonSchemaCatalog getModels() {
return new JsonSchemaCatalog();
}