Hi everyone. I'm new to ThriftDB. What is the correct way to write a schema that contains a ListType? The documentation doesn't seem to explain clearly. I tried the following:
{
"__class__": "StructSchema",
"testlist" : {
"__class__": "ListType",
"member_datatype": {
"__class__": "StringType"
}
}
}
The above returns the error:
{
"__class__": "ClientErrorResponse",
"message": "Validation error: AttributeDescriptor wasn't expecting key: 'member_datatype'"
}