E004 - Field type mismatch (string expected)¶
Cause¶
A field that must be a string was given a different type — a number, array, object, or null.
Example¶
{ title: 42, slides: [] } // 'title' must be a string
How to fix¶
Quote the value as a string: title: "42".