Voxco · Schema

GetScriptsResponse

Response for Coder/Exports (GET verb) method

Survey SoftwareMarket ResearchCATIOmnichannelText AnalyticsData CollectionPanel Management

Properties

Name Type Description
errorMessage string
scripts array List of scripts
View JSON Schema on GitHub

JSON Schema

GetScriptsResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "GetScriptsResponse",
  "type": "object",
  "properties": {
    "errorMessage": {
      "type": "string",
      "nullable": true
    },
    "scripts": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ScriptDefinition"
      },
      "description": "List of scripts",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "description": "Response for Coder/Exports (GET verb) method"
}