Interface DeepSeekJsonSchema


public sealed interface DeepSeekJsonSchema
A sealed interface representing a DeepSeek-compatible JSON Schema definition, supporting object/array/string/enum/anyOf types and the ability to mark fields as required. Usage example:
 DeepSeekJsonSchema eventSchema = DeepSeekJsonSchema.objectSchema()
     .property("name", DeepSeekJsonSchema.stringSchema("Event name"), true)
     .property("date", DeepSeekJsonSchema.stringSchema("Event date"), true)
     .additionalProperties(false);