Keboola · Schema

TestResultTable

Generated table rows, part of the test result.

Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery

Properties

Name Type Description
rows array Generated rows.
sinkId string
tableId string
View JSON Schema on GitHub

JSON Schema

keboola-testresulttable.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "TestResultTable",
  "type": "object",
  "properties": {
    "rows": {
      "type": "array",
      "items": {
        "$ref": "#/definitions/TestResultRow"
      },
      "description": "Generated rows.",
      "example": [
        {
          "columns": [
            {
              "name": "id",
              "value": "12345"
            }
          ]
        }
      ]
    },
    "sinkId": {
      "type": "string",
      "example": "github-pr-table-sink",
      "minLength": 1,
      "maxLength": 48
    },
    "tableId": {
      "type": "string",
      "example": "in.c-bucket.table"
    }
  },
  "description": "Generated table rows, part of the test result.",
  "example": {
    "sinkId": "github-pr-table-sink",
    "tableId": "in.c-bucket.table",
    "rows": [
      {
        "columns": [
          {
            "name": "id",
            "value": "12345"
          }
        ]
      }
    ]
  },
  "required": [
    "sinkId",
    "tableId",
    "rows"
  ]
}