Vapi · Schema

InsightRunResponse

AIVoiceAgentsRealtimeCPaaS

Properties

Name Type Description
id string
insightId string
orgId string
createdAt string
updatedAt string
View JSON Schema on GitHub

JSON Schema

vapi-insightrunresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InsightRunResponse",
  "title": "InsightRunResponse",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "insightId": {
      "type": "string"
    },
    "orgId": {
      "type": "string"
    },
    "createdAt": {
      "format": "date-time",
      "type": "string"
    },
    "updatedAt": {
      "format": "date-time",
      "type": "string"
    }
  },
  "required": [
    "id",
    "insightId",
    "orgId",
    "createdAt",
    "updatedAt"
  ]
}