Dinesh Uprety
@dineshuprety ·
Public
Build multi-type JSON schemas
PHPLaravel 13 API example based on official Laravel documentation. Source: https://laravel.com/framework/docs/changelog#add-multi-type-union-support-to-illuminatejsonschema
PHP
CodeSnap // free canvas
Build multi-type JSON schemas
<?php
use Illuminate\JsonSchema\JsonSchema;
$identifier = JsonSchema::union([
'string',
'number',
])->nullable();
// Further reading: https://laravel.com/framework/docs/changelog#add-multi-type-union-support-to-illuminatejsonschema