{
    "global": {
        "id": 1
    },
    "@endpoints": [
        {
            "request": "GET /api/users/1",
            "response": {
                "body": {
                    "id": 1,
                    "title": "test {{global.id}}"
                }
            }
        },
        {
            "title": "get list",
            "request": "POST /api/users",
            "response": {
                "body": [
                    {
                        "id": 1,
                        "title": "test 1"
                    },
                    {
                        "id": 2,
                        "title": "test 2"
                    },
                    {
                        "id": 3,
                        "title": "test 3"
                    }
                ]
            }
        }
    ]
}