Voxco · Schema
PostResponsesResponse
Returns information about the disposition of the Responses added.
Survey SoftwareMarket ResearchCATIOmnichannelText AnalyticsData CollectionPanel Management
Properties
| Name | Type | Description |
|---|---|---|
| errorMessage | string | |
| codebookKey | integer | The key of the Codebook for this Question. |
| responsesAdded | integer | The count of Responses added to the Question. This is the number of responses in the PutResponsesRequest that had rid values that were not already present in this Question. |
| existingResponsesUnchanged | integer | The count of existing Responses unchanged. This is the number of responses in the PutResponsesRequest that had rid values that were already present in this Question. |
| responsesCoded | integer | The count of responses coded. |
| responsesCodedByTextMatch | integer | The count of responses coded by text match. This value will always be zero unless autoCodeTextMatch in the request is true. |
| responsesCodedByInputId | integer | The count of responses coded by input ID. This value will always be zero unless autoCodeInputId in the request is true. |
| responsesCodedByRegex | integer | The count of responses coded by regular expression. This value will always be zero unless autoCodeByRegex in the request is true. |
| addedResponses | array | The responses added to the question as a result of the POST operation. |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "PostResponsesResponse",
"required": [
"addedResponses",
"codebookKey",
"existingResponsesUnchanged",
"responsesAdded",
"responsesCoded",
"responsesCodedByInputId",
"responsesCodedByRegex",
"responsesCodedByTextMatch"
],
"type": "object",
"properties": {
"errorMessage": {
"type": "string",
"nullable": true
},
"codebookKey": {
"type": "integer",
"description": "The key of the Codebook for this Question.",
"format": "int32"
},
"responsesAdded": {
"type": "integer",
"description": "The count of Responses added to the Question.\r\n\r\nThis is the number of responses in the PutResponsesRequest that had rid values that were not already present in this Question.",
"format": "int32"
},
"existingResponsesUnchanged": {
"type": "integer",
"description": "The count of existing Responses unchanged.\r\n\r\nThis is the number of responses in the PutResponsesRequest that had rid values that were already present in this Question.",
"format": "int32"
},
"responsesCoded": {
"type": "integer",
"description": "The count of responses coded.\r\n",
"format": "int32"
},
"responsesCodedByTextMatch": {
"type": "integer",
"description": "The count of responses coded by text match.\r\n\r\nThis value will always be zero unless autoCodeTextMatch in the request is true.",
"format": "int32"
},
"responsesCodedByInputId": {
"type": "integer",
"description": "The count of responses coded by input ID.\r\n\r\nThis value will always be zero unless autoCodeInputId in the request is true.",
"format": "int32"
},
"responsesCodedByRegex": {
"type": "integer",
"description": "The count of responses coded by regular expression.\r\n\r\nThis value will always be zero unless autoCodeByRegex in the request is true.",
"format": "int32"
},
"addedResponses": {
"type": "array",
"items": {
"$ref": "#/components/schemas/AddedResponseWithCodingInfo"
},
"description": "The responses added to the question as a result of the POST operation."
}
},
"additionalProperties": false,
"description": "Returns information about the disposition of the Responses added."
}