<?php
declare(strict_types=1);
require __DIR__ . '/vendor/autoload.php';
use cebe\openapi\Reader;
$openapi = Reader::readFromJsonFile(realpath('openapi.json'));
assert($openapi->components->schemas['Test']->properties['A']->nullable == true, 'Property A is not null');
Minimal repoduce:
Test case