We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently the enum marker type is not implemented in SimpleSchema, causing validation errors when users try to use it:
enum
failed to parse field schema for mode: invalid marker key 'enum': unknown marker type: enum
Example usage that fails:
mode: string | enum="debug,info,warn,error" default="info"
The implementation can start here, where the enum marker is defined but not implemented yet:
kro/pkg/simpleschema/markers.go
Lines 40 to 49 in fe88501
The text was updated successfully, but these errors were encountered:
@a-hilaly i would like to work on this issue. can i take it up
Sorry, something went wrong.
@KekmaTime I just assigned it to you, let us know if you run into any issues!
KekmaTime
No branches or pull requests
Feature Description
Currently the
enum
marker type is not implemented in SimpleSchema, causing validation errors when users try to use it:Example usage that fails:
The implementation can start here, where the enum marker is defined but not implemented yet:
kro/pkg/simpleschema/markers.go
Lines 40 to 49 in fe88501
The text was updated successfully, but these errors were encountered: