You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the 1.15 update, the arrayItem property is introduced so we can get rid of the foo.$ field. I found this doesn't work for subschemas. I get the following error for a subschema defining an urlCollection arrayItem:
Error: "urlCollection" is Array type but the schema does not include a "urlCollection.$" definition for the array items"
It looks like it doesn't see the arrayItems field. I made the update as outlined in the blog:
It does however work fine for my root schema, but in the nested schemas, I have to continue using the old foo.$ method.
The text was updated successfully, but these errors were encountered:
In the 1.15 update, the arrayItem property is introduced so we can get rid of the
foo.$
field. I found this doesn't work for subschemas. I get the following error for a subschema defining an urlCollectionarrayItem
:Error: "urlCollection" is Array type but the schema does not include a "urlCollection.$" definition for the array items"
It looks like it doesn't see the arrayItems field. I made the update as outlined in the blog:
It does however work fine for my root schema, but in the nested schemas, I have to continue using the old
foo.$
method.The text was updated successfully, but these errors were encountered: