Created
August 17, 2018 13:25
-
-
Save franzwilding/dc298e411eba7302932c388b667a67eb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"validations": [ | |
{ | |
"expression": "data.title != ''", | |
"message": "Title is required", | |
"path": "title" | |
}, | |
{ | |
"expression": "data.company_name != '' OR (data.firstname != '' AND data.lastname != '')", | |
"message": "Either company name or firstname and Lastname must be filled out." | |
}, | |
{ | |
"expression": "data.project_key matches '/[a-z]+[a-z_0-9]*/'" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment