> For the complete documentation index, see [llms.txt](https://coldbox-validation.ortusbooks.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://coldbox-validation.ortusbooks.com/v3.x-1/overview/validating-constraints/validating-with-profiles.md).

# 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
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

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

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
