$this->type]; if ($this->description !== null) { $array['description'] = $this->description; } return $array; } /** * Validate a value against this type definition. */ public function validate(mixed $value, string $path = ''): void { // Unknown type accepts any value } }