{"openapi":"3.0.3","info":{"title":"Zenty InfoSec Hub API","version":"1.0.0","description":"RESTful API for Zenty InfoSec - Multi-Tenant Autonomous Cybersecurity & GRC Platform (CTAR.tech)","contact":{"name":"CTAR.tech InfoSec Team","url":"https://ctar.tech","email":"api@ctar.tech"}},"servers":[{"url":"https://infosec.ctar.tech/api","description":"Production Serverless API"}],"paths":{"/incidents":{"get":{"summary":"List all tenant security incidents","parameters":[{"name":"severity","in":"query","schema":{"type":"string","enum":["P1","P2","P3","P4"]}},{"name":"status","in":"query","schema":{"type":"string","enum":["OPEN","INVESTIGATING","MITIGATED","CLOSED"]}}],"responses":{"200":{"description":"Array of incidents returned successfully"}}},"post":{"summary":"Report a new security incident","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["title","severity","category","description"],"properties":{"title":{"type":"string"},"severity":{"type":"string","enum":["P1","P2","P3","P4"]},"category":{"type":"string"},"description":{"type":"string"}}}}}},"responses":{"201":{"description":"Incident created and dispatched to on-call"}}}},"/policies":{"get":{"summary":"List approved compliance policies","responses":{"200":{"description":"List of signed policy documents"}}}},"/assets":{"get":{"summary":"Retrieve monitored multi-cloud asset inventory","responses":{"200":{"description":"List of tracked cloud and infrastructure assets"}}}}}}