Voxco · Schema

UpdateCode

Class contains information about code and its properties to update. Only not-null properties will be updated, i.e. for properties with null value the code saves original value.

Survey SoftwareMarket ResearchCATIOmnichannelText AnalyticsData CollectionPanel Management

Properties

Name Type Description
key integer Key of code
description string Description of code
inputId string Input ID value of code
outputId string Output ID value of code
regexPattern string Regular expression pattern which may be used for assisting human coders or for automatic coding.
color string Color for the code in CSS hexadecimal six digit format, e.g. #FF0000 for red. If the code color is the default value of #000000 (black) this field will not be present in the response.
View JSON Schema on GitHub

JSON Schema

UpdateCode.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "UpdateCode",
  "type": "object",
  "properties": {
    "key": {
      "type": "integer",
      "description": "Key of code",
      "format": "int32",
      "nullable": true
    },
    "description": {
      "type": "string",
      "description": "Description of code",
      "nullable": true
    },
    "inputId": {
      "type": "string",
      "description": "Input ID value of code",
      "nullable": true
    },
    "outputId": {
      "type": "string",
      "description": "Output ID value of code",
      "nullable": true
    },
    "regexPattern": {
      "type": "string",
      "description": "Regular expression pattern which may be used for assisting human coders or for automatic coding.",
      "nullable": true
    },
    "color": {
      "type": "string",
      "description": "Color for the code in CSS hexadecimal six digit format, e.g. #FF0000 for red.\r\n\r\nIf the code color is the default value of #000000 (black) this field will not be present in the response.",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "description": "Class contains information about code and its properties to update. \r\nOnly not-null properties will be updated, i.e. for properties with null value the code saves original value."
}