{
    "status": 200,
    "message": "Available API Endpoints",
    "data": {
        "apiVersion": "1.0",
        "baseUrl": "/api",
        "endpoints": [
            {
                "resource": "users",
                "url": "/api/users",
                "urlWithId": "/api/users/{id}",
                "supportedMethods": [
                    "GET",
                    "POST",
                    "PUT",
                    "DELETE",
                    "OPTIONS"
                ],
                "description": [
                    "GET \u2192 List all or get one (with ID)",
                    "POST \u2192 Create new",
                    "PUT \u2192 Update existing (requires ID)",
                    "DELETE \u2192 Remove (requires ID)",
                    "OPTIONS \u2192 List allowed methods"
                ]
            },
            {
                "resource": "freezeDryers",
                "url": "/api/freezeDryers",
                "urlWithId": "/api/freezeDryers/{id}",
                "supportedMethods": [
                    "GET",
                    "POST",
                    "PUT",
                    "DELETE",
                    "OPTIONS"
                ],
                "description": [
                    "GET \u2192 List all or get one (with ID)",
                    "POST \u2192 Create new",
                    "PUT \u2192 Update existing (requires ID)",
                    "DELETE \u2192 Remove (requires ID)",
                    "OPTIONS \u2192 List allowed methods"
                ]
            },
            {
                "resource": "freezeDryers/status",
                "url": "/api/freezeDryers/status",
                "urlWithId": "/api/freezeDryers/status/{id}",
                "supportedMethods": [
                    "GET",
                    "OPTIONS"
                ],
                "description": [
                    "GET \u2192 List all or get one (with ID)",
                    "OPTIONS \u2192 List allowed methods"
                ]
            }
        ]
    }
}