{"openapi":"3.1.0","info":{"title":"Just Right Place Contact API","version":"1.0.0","description":"Public contact endpoint for Just Right Place (JRP). Submit project inquiries and intro requests programmatically.","contact":{"name":"Just Right Place","url":"https://www.justright.pl","email":"contact@justright.pl"}},"servers":[{"url":"https://www.justright.pl"}],"paths":{"/api/contact":{"post":{"operationId":"submitContactInquiry","summary":"Submit a contact or intro request","description":"Accepts a JSON body with contact details. Returns { ok: true } on success.","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["email","message"],"properties":{"firstName":{"type":"string"},"lastName":{"type":"string"},"email":{"type":"string","format":"email"},"company":{"type":"string"},"phone":{"type":"string"},"message":{"type":"string"},"intent":{"type":"string","enum":["intro"]},"smsConsent":{"type":"boolean"},"emailConsent":{"type":"boolean"},"submittedAt":{"type":"string","format":"date-time"}}}}}},"responses":{"200":{"description":"Inquiry accepted","content":{"application/json":{"schema":{"type":"object","properties":{"ok":{"type":"boolean"}}}}}},"400":{"description":"Invalid request body","content":{"application/json":{"schema":{"type":"object","properties":{"ok":{"type":"boolean"},"error":{"type":"string"}}}}}},"403":{"description":"Bot verification failed","content":{"application/json":{"schema":{"type":"object","properties":{"ok":{"type":"boolean"}}}}}},"500":{"description":"Server error","content":{"application/json":{"schema":{"type":"object","properties":{"ok":{"type":"boolean"}}}}}}}}}}}