{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ApiCall", "title": "ApiCall", "properties": { "connection_id": { "type": "string" }, "created_at": { "format": "date-time", "type": "string" }, "endapi_response_time": { "type": "number" }, "environment": { "default": "Production", "type": "string" }, "error": { "type": "string" }, "external_xref": { "type": "string" }, "id": { "type": "string" }, "integration_type": { "type": "string" }, "ip_address": { "type": "string" }, "is_billable": { "type": "boolean" }, "method": { "type": "string" }, "name": { "type": "string" }, "path": { "type": "string" }, "size": { "type": "number" }, "status": { "type": "string" }, "type": { "enum": [ "login", "webhook", "inbound", "mcp" ], "type": "string", "x-speakeasy-unknown-values": "allow" }, "unified_response_time": { "type": "number" }, "user_agent": { "type": "string" }, "webhook_id": { "type": "string" }, "workspace_id": { "type": "string" } }, "required": [ "integration_type", "name", "path", "status", "type", "method" ], "type": "object" }