Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Subset not working with includes #230

Open
sbliven opened this issue Oct 24, 2023 · 1 comment
Open

Subset not working with includes #230

sbliven opened this issue Oct 24, 2023 · 1 comment

Comments

@sbliven
Copy link

sbliven commented Oct 24, 2023

The subset validator accepts both single items and lists when used with primitives. However it does not validate single objects when included.

schema.yaml

primative_list: subset(str())
primative_single: subset(str())
complex_list: subset(include('person'))
complex_single: subset(include('person'))
---
person:
  first: str()
  last: str()

test.yaml

primative_list:
- foo
- bar
primative_single: foo
complex_list:
- first: joe
  last: dread
- first: sam
  last: scott

# Should validate but doesn't
complex_single:
  first: fred
  last: jones

Errors

complex_single.last: Required field missing
complex_single.first: Required field missing

This seems potentially related to #133 and #217, which also involve errors when combining validators.

@fclante
Copy link

fclante commented Jun 28, 2024

Hey This is a big thing. Please prioritize this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants