Framework Mode - Default and conditional responses
Folder Structure
postman-project/ ├── collections/ │ └── api-collection.json # Main Postman collection with requests and tests ├── environments/ │ ├── dev.postman_environment.json # Dev environment variables │ ├── staging.postman_environment.json │ └── prod.postman_environment.json ├── scripts/ │ ├── pre-request-scripts.js # Shared pre-request scripts │ └── test-scripts.js # Shared test scripts for assertions ├── mocks/ │ └── default-response.json # Default mock response definitions ├── README.md └── postman.config.json # Optional config for CI integration