When trying to implement a content-type with field-type "Short text", we are trying to use a validation that is not present in the terraform provider that we like to see added. This validation type "prohibitRegexp" is not present in the documentation for fields.validations either.
The JSON structure of this field looks like this:
{
"validations": [{
"prohibitRegexp": {
"pattern": "example.com",
"flags": "i"
},
}]
}
The input and output of this implementation is likely similar to the "regexp" field in the same validations field.
When trying to implement a content-type with field-type "Short text", we are trying to use a validation that is not present in the terraform provider that we like to see added. This validation type "prohibitRegexp" is not present in the documentation for fields.validations either.
The JSON structure of this field looks like this:
{ "validations": [{ "prohibitRegexp": { "pattern": "example.com", "flags": "i" }, }] }The input and output of this implementation is likely similar to the "regexp" field in the same validations field.