bruno_validate_environment
Validate environment file structure and variables in Bruno collections to ensure proper configuration and prevent API testing errors.
Instructions
Validate an environment file structure and variables
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| collectionPath | Yes | Path to the Bruno collection | |
| environmentName | Yes | Name of the environment to validate (e.g., "dev", "staging", "production") | 
Input Schema (JSON Schema)
{
  "properties": {
    "collectionPath": {
      "description": "Path to the Bruno collection",
      "type": "string"
    },
    "environmentName": {
      "description": "Name of the environment to validate (e.g., \"dev\", \"staging\", \"production\")",
      "type": "string"
    }
  },
  "required": [
    "collectionPath",
    "environmentName"
  ],
  "type": "object"
}