{ "info": { "name": "Sample Postman Collection", "description": "A simple collection for testing imports", "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json" }, "item": [ { "name": "Get Users", "request": { "method": "GET", "header": [], "url": { "raw": "https://jsonplaceholder.typicode.com/users", "protocol": "https", "host": ["jsonplaceholder", "typicode", "com"], "path": ["users"] } } }, { "name": "Create User", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" } ], "body": { "mode": "raw", "raw": "{\n \"name\": \"John Doe\",\n \"email\": \"john@example.com\"\n}" }, "url": { "raw": "https://jsonplaceholder.typicode.com/users", "protocol": "https", "host": ["jsonplaceholder", "typicode", "com"], "path": ["users"] } } } ] }