Framework Mode - Schema validation basics
Folder Structure
postman-project/ ├── collections/ │ └── api-collection.json # Postman collection with requests and tests ├── environments/ │ ├── dev.postman_environment.json │ ├── staging.postman_environment.json │ └── prod.postman_environment.json ├── schemas/ │ └── response-schema.json # JSON Schema files for response validation ├── tests/ │ └── schema-validation-tests.js # Optional external test scripts if using Newman + JS ├── reports/ │ └── test-report.html # Generated test reports ├── newman-config.json # Newman run configuration └── README.md