{
    "path": "https://api.example.com/v1",
    "users": {
        "path": "/users",
        "get": {
            "method": "GET"
        },
        "post": {
            "method": "POST"
        },
        "getById": {
            "method": "GET",
            "path": "/{id}"
        },
        "putById": {
            "method": "PUT",
            "path": "/{id}"
        },
        "deleteById": {
            "method": "DELETE",
            "path": "/{id}"
        }
    },
    "posts": {
        "path": "/posts",
        "get": {
            "method": "GET"
        }
    }
}