Voxco · Schema

SegmentCode

A descriptor class for code segment

Survey SoftwareMarket ResearchCATIOmnichannelText AnalyticsData CollectionPanel Management

Properties

Name Type Description
codeKey integer Key of applied code
start integer Start index of segment
length integer Segment length
View JSON Schema on GitHub

JSON Schema

SegmentCode.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "SegmentCode",
  "required": [
    "codeKey",
    "length",
    "start"
  ],
  "type": "object",
  "properties": {
    "codeKey": {
      "type": "integer",
      "description": "Key of applied code",
      "format": "int32"
    },
    "start": {
      "type": "integer",
      "description": "Start index of segment",
      "format": "int32"
    },
    "length": {
      "type": "integer",
      "description": "Segment length",
      "format": "int32"
    }
  },
  "additionalProperties": false,
  "description": "A descriptor class for code segment"
}