BooleanSchema

data class BooleanSchema(val title: String? = null, val description: String? = null, val default: Boolean? = null) : PrimitiveSchemaDefinition(source)

Defines a boolean-typed property in an elicitation schema.

Constructors

Link copied to clipboard
constructor(title: String? = null, description: String? = null, default: Boolean? = null)

Properties

Link copied to clipboard

Optional default value.

Link copied to clipboard

Optional description for the field.

Link copied to clipboard

Optional display title for the field.

Link copied to clipboard

JSON Schema type discriminator, always "boolean".