Full

@Serializable
data class Full(val name: String, val schema: JsonObject) : LLMParams.Schema.JSON(source)

Represents a complete JSON schema structure.

This data class implements the JSON interface and provides a representation for a fully described JSON schema object, including its associated name and schema data.

Constructors

Link copied to clipboard
constructor(name: String, schema: JsonObject)

Properties

Link copied to clipboard
open override val name: String

The name identifier for the JSON schema structure.

Link copied to clipboard
open override val schema: JsonObject

The JSON schema definition as a JsonObject.