BooleanSchemaDefinition extends AbstractSchemaDefinition
FinalYes
Schema definition for boolean fields in elicitation requests.
Tags
Table of Contents
Properties
- $default : bool|null
- $description : string|null
- $title : string
Methods
- __construct() : mixed
- fromArray() : self
- jsonSerialize() : array{type: string, title: string, description?: string, default?: bool}
- buildBaseJson() : array<string, mixed>
- Build the base JSON structure with type, title, and optional description.
- validateTitle() : void
- Validate that title exists and is a string in the data array.
Properties
$default read-only
public
bool|null
$default
= null
$description read-only
public
string|null
$description
= null
$title read-only
public
string
$title
Methods
__construct()
public
__construct(string $title[, string|null $description = null ][, bool|null $default = null ]) : mixed
Parameters
- $title : string
-
Human-readable title for the field
- $description : string|null = null
-
Optional description/help text
- $default : bool|null = null
-
Optional default value
fromArray()
public
static fromArray(array{title: string, description?: string, default?: bool} $data) : self
Parameters
- $data : array{title: string, description?: string, default?: bool}
Return values
selfjsonSerialize()
public
jsonSerialize() : array{type: string, title: string, description?: string, default?: bool}
Return values
array{type: string, title: string, description?: string, default?: bool}buildBaseJson()
Build the base JSON structure with type, title, and optional description.
protected
buildBaseJson(string $type) : array<string, mixed>
Parameters
- $type : string
Return values
array<string, mixed>validateTitle()
Validate that title exists and is a string in the data array.
protected
static validateTitle(array<string, mixed> $data, string $schemaType) : void
Parameters
- $data : array<string, mixed>
- $schemaType : string