Keboola · Schema

TestResultRow

Generated table row, part of the test result.

Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery

Properties

Name Type Description
columns array Generated columns.
View JSON Schema on GitHub

JSON Schema

keboola-testresultrow.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "TestResultRow",
  "type": "object",
  "properties": {
    "columns": {
      "type": "array",
      "items": {
        "$ref": "#/definitions/TestResultColumn"
      },
      "description": "Generated columns.",
      "example": [
        {
          "name": "id",
          "value": "12345"
        }
      ]
    }
  },
  "description": "Generated table row, part of the test result.",
  "example": {
    "columns": [
      {
        "name": "id",
        "value": "12345"
      }
    ]
  },
  "required": [
    "columns"
  ]
}