Skip to content

Commit ec103c0

Browse files
committed
Make the JsonSchema record public
Resolves #36 Signed-off-by: Christian Tzolov <[email protected]>
1 parent a1e0d41 commit ec103c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mcp/src/main/java/io/modelcontextprotocol/spec/McpSchema.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -685,7 +685,7 @@ public record ListToolsResult( // @formatter:off
685685

686686
@JsonInclude(JsonInclude.Include.NON_ABSENT)
687687
@JsonIgnoreProperties(ignoreUnknown = true)
688-
record JsonSchema( // @formatter:off
688+
public record JsonSchema( // @formatter:off
689689
@JsonProperty("type") String type,
690690
@JsonProperty("properties") Map<String, Object> properties,
691691
@JsonProperty("required") List<String> required,

0 commit comments

Comments
 (0)