34 lines
635 B
JSON
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
|
|
}
|
|
}
|
|
]
|
|
}
|