SomeObject:
type: object
required:
- someList
properties:
someList:
type: array
items:
$ref: '#/components/schemas/SomeNullableString'
...
SomeNullableString:
type: string
nullable: true
/**
* @return string|null[]
*/
public function getSomeList(): array
{
return $this->someList;
}