mediumHEALTH_NO_SERVICE_IDENTITY
Health has no service identity
Include a public-safe service or name field.
GET https://garden.platphormnews.com/api/health
HTTP 200
Content-Type: application/json
103 ms
Digest: sha256:e016255ae1a6a6b9b91bf8c9f7ef8dae5a7fdd62599d46975866d8866e167de6
Preview: {"status":"healthy","version":"1.0.0","timestamp":"2026-08-23T07:04:29.011Z","uptime":3,"services":[{"name":"web","status":"up","latency":0},{"name":"api","status":"up","latency":13}]}mediumOPENAPI_MISSING_OPERATION_ID
3 operations lack operationId
Add stable operationId values for client and MCP correlation.
GET https://garden.platphormnews.com/api/docs
HTTP 200
Content-Type: application/json
72 ms
Digest: sha256:f6349a78b45265bfeadd7b5c2a9ed84c5839a70d6a56925d9085e6070d672a80
Preview: {"openapi":"3.0.3","info":{"title":"Verdant Grounds API","description":"API documentation for Verdant Grounds landscaping services","version":"1.0.0","contact":{"name":"Verdant Grounds","email":"hello@verdantgrounds.com","url":"https://verdantgrounds.com"}},"servers":[{"url":"https://verdantgrounds.com","description":"Production server"}],"paths":{"/api/health":{"get":{"summary":"Health check","description":"Returns the health status of the API","responses":{"200":{"description":"Healthy response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HealthCheck"}}}}}}},"/api/v1/news":{"get":{"summary":"Get news feed","description":"Returns landscape and gardening news from various sources","parameters":[{"name":"limit","in":"query","description":"Number of items to return","schema":{"type":"integer","default":10}},{"name":"category","in":"query","description":"Filter by category","schema":{"type":"string"}}],"responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewsResponse"}}}}}}},"/api/v1/contact":{"post":{"summary":"Submit contact form","description":"Submits a contact form inquiry","requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ContactForm"}}}},"responses":{"200":{"description":"Form submitted successfully"},"400":{"description":"Validation error"}}}}},"components":{"schemas":{"HealthCheck":{"type":"object","properties":{"status":{"type":"string","enum":["healthy","degraded","unhealthy"]},"version":{"type":"string"},"timestamp":{"type":"string","format":"date-time"},"uptime":{"type":"number"},"services":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"status":{"type":"string","enum":["up","down"]},"latency":{"type":"number"}}}}}},"NewsItem":{"type":"object","properties":{"id":{"type":"string"},"title":{"type":"string"},"description":{"type":"string"},"url":{"type":"string","format":"uri"},"source":{"type":"string"},"publishedAt":{"type":