Skip to content

Commit

Permalink
Update cfproperty.json
Browse files Browse the repository at this point in the history
changed minLength to maxLength
  • Loading branch information
rayvarner authored Sep 17, 2024
1 parent 88bc2cb commit 7b63aac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/en/cfproperty.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
{"name":"cfc","description":"Name of referenced CFC","required":false,"default":"","type":"string","values":[]},
{"name":"joinColumn","description":"Use this attribute to define the join column for inheritance mapping.","required":false,"default":"","type":"string","values":[]},
{"name":"validate","description":"Takes the validator to be used for validating data when implicit setter for this property is called.","required":false,"default":"","type":"string","values":["string","boolean","integer","numeric","date","time","creditcard","email","eurodate","ssn","telephone","UUID","guid","zipcode"]},
{"name":"validateParams","description":"Takes the parameters required by the validator specified in the validate attribute. \n This should be specified in the implicit struct notation eg. validateparams=\"{min=18,max=60}\">.\n\nmin: Minimum value if validate is integer\/numeric\/\nmax: Maximum value if the validate is integer\/numeric\/\nminLength: Minimum length of the string if the validate is string\nminLength: Maximum length of the string if the validate is string\npattern: regex expression if the validator specified in validate attribute is regex","required":false,"default":"","type":"string","values":[]},
{"name":"validateParams","description":"Takes the parameters required by the validator specified in the validate attribute. \n This should be specified in the implicit struct notation eg. validateparams=\"{min=18,max=60}\">.\n\nmin: Minimum value if validate is integer\/numeric\/\nmax: Maximum value if the validate is integer\/numeric\/\nminLength: Minimum length of the string if the validate is string\nmaxLength: Maximum length of the string if the validate is string\npattern: regex expression if the validator specified in validate attribute is regex","required":false,"default":"","type":"string","values":[]},
{"name":"cacheUse","description":"Type of cache to use","required":false,"default":"","type":"string","values":["read-only","nonstrict-read-write","read-write","transactional"]},
{"name":"sqlType","description":"Use this attribute to specify the DB-specific SQLType that should be used for the column. This attribute is used for table creation only.\nIf this attribute is not specified, ColdFusion will automatically decide the SQLType based on the ormtype specified for this property.","required":false,"default":"","type":"string","values":[]},
{"name":"dbDefault","description":"This sets the default value of a column in the table when schema is exported.","required":false,"default":"","type":"string","values":[]},
Expand Down

0 comments on commit 7b63aac

Please sign in to comment.