Schema type is invalid
The type defined in your schema is not a valid schema type. Common culprits:
- The type declaration is imported through
import
/require
from a different file, but the import declaration either references an incorrect name or the imported file does not have any export declaration - Something is returning
undefined
,null
orfalse
instead of the schema type declaration
Double check the types
array of your schema declaration at the specified index to figure out where the error stems from.