{
processId:int32;
name:string;
threads:[DbgThreadLimited];
}```
This is in the .fbs file, and when I use `flatcc -w -v debugger.fbs` it returns an error `debugger.fbs:101:5: error: 'name': struct member member can only be of struct scalar, or fixed size scalar array type`
Are strings not supported? or do I need to use [uint8_t:size]?