Voxco · Schema

AICoderCreateLinkResponse

Response data for AICoderGetLinks method.

Survey SoftwareMarket ResearchCATIOmnichannelText AnalyticsData CollectionPanel Management

Properties

Name Type Description
errorMessage string
links array Array of AI Coder links.
View JSON Schema on GitHub

JSON Schema

AICoderCreateLinkResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "AICoderCreateLinkResponse",
  "type": "object",
  "properties": {
    "errorMessage": {
      "type": "string",
      "nullable": true
    },
    "links": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/AICoderLink"
      },
      "description": "Array of AI Coder links.",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "description": "Response data for AICoderGetLinks method."
}