# Validating With Profiles

cbValidation 2.x series introduced the ability to validate using field `profiles`.  This will allow you to define all your constraints but also define field profiles where you can define only certain fields to be validated if the profile name is used. &#x20;

## Defining Profiles

This is using the `this.constraintProfiles` struct literal:

```javascript
this.constraintProfiles = {
	"new" = "fname,lname,email,password",
	"update" = "fname,lname,email",
	"passUpdate" = "password,confirmpassword"
}
```

The **key** is the **name** of the profile and the **value** is a list of the fields to validate if the profile is targeted for validation.

## Validating Profiles

Every validation method: `validate(), validateOrFail()` has a `profiles` argument. You can then pass one or more to the argument so you can validate 1 or more profiles:

```javascript
var results = validateModel( target=model, profiles="update" )
var results = validateModel( target=model, profiles="update,passUpdate" )
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://coldbox-validation.ortusbooks.com/v3.x-1/overview/validating-constraints/validating-with-profiles.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
