- 
  Notifications
 You must be signed in to change notification settings 
- Fork 504
-
Hi!
Is it possible to validate nested object properties?
If we have:
{
"obj":[{ "property": true }]
}
How can I check if "property equals true?
This is not working for me...
{
 conditions: {
 all: [
 {
 fact: 'obj[0].property',
 operator: 'equal',
 value: true
 }
 ]
 }
}
Beta Was this translation helpful? Give feedback.
All reactions
Replies: 0 comments
 
 Sign up for free
 to join this conversation on GitHub.
 Already have an account?
 Sign in to comment