Skip to content

Instantly share code, notes, and snippets.

@franzwilding
Created August 17, 2018 13:25
Show Gist options
  • Save franzwilding/dc298e411eba7302932c388b667a67eb to your computer and use it in GitHub Desktop.
Save franzwilding/dc298e411eba7302932c388b667a67eb to your computer and use it in GitHub Desktop.
{
"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