Voxco · Schema

AICoderCodeStudyStatusOfTaskResponse

Contains current status of analyzing study task

Survey SoftwareMarket ResearchCATIOmnichannelText AnalyticsData CollectionPanel Management

Properties

Name Type Description
errorMessage string
isCompleted boolean True if the task is completed, otherwise false
project object
View JSON Schema on GitHub

JSON Schema

AICoderCodeStudyStatusOfTaskResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "AICoderCodeStudyStatusOfTaskResponse",
  "type": "object",
  "properties": {
    "errorMessage": {
      "type": "string",
      "nullable": true
    },
    "isCompleted": {
      "type": "boolean",
      "description": "True if the task is completed, otherwise false"
    },
    "project": {
      "$ref": "#/components/schemas/AICoderProjectAPI"
    }
  },
  "additionalProperties": false,
  "description": "Contains current status of analyzing study task"
}