Rob Bast
11/12/2024, 4:29 PMfoo -> optional, foo.bar -> string
but then it always complains that bar was not provided in the document (even if foo is not present)Jason Bosco
11/12/2024, 8:59 PMfoo.bar -> string
explicitly, you want to also set optional: true
on foo.bar
. Explicitly defined sub properties do not inherit from the parent object definitionRob Bast
11/14/2024, 7:56 AM