Framework Mode - Request and response validation
Folder Structure
request-response-validation-framework/ ├── tests/ │ ├── api/ │ │ ├── test_user_endpoints.py │ │ └── test_order_endpoints.py │ └── utils/ │ └── validators.py ├── config/ │ ├── environments.yaml │ └── credentials.yaml ├── reports/ │ └── latest_report.html ├── conftest.py └── README.md
This structure separates tests, utilities, configuration, and reports clearly.