redis-om-python
redis-om-python copied to clipboard
JsonModel does not support a field of list of str with validation
for example: tags: List[str] = Field(min_length=1)
error: "In this Preview release, list and tuple fields can only contain strings. Problem field: tags. See docs: TODO"
note: tags: List[str] = Field(index=True) Does work.