I don’t know your API but you should check which fields are actually nullable or not. To be on the safe side, you can use the null coalescing operator:
'descriptionShort' => $organisation->fields->descriptionShort ?? null
I don’t know your API but you should check which fields are actually nullable or not. To be on the safe side, you can use the null coalescing operator:
'descriptionShort' => $organisation->fields->descriptionShort ?? null