Files
http-client-app-plan/fixtures/workspaces/demo/.http-client/mocks/demo.mock.json
T

34 lines
635 B
JSON

{
"schemaVersion": 1,
"updatedAt": "2026-06-07T00:00:00Z",
"rules": [
{
"id": "demo-list-users",
"name": "Demo list users",
"enabled": true,
"priority": 10,
"match": {
"method": "GET",
"path": "/api/users",
"pathMode": "exact"
},
"response": {
"statusCode": 200,
"headers": {
"Content-Type": "application/json"
},
"bodyType": "json",
"body": {
"users": [
{
"id": 42,
"name": "Zoe"
}
]
},
"delayMs": 0
}
}
]
}