Golden data sets

Create a Column in a Golden Data Set

POST
/v2/datasets/{dataset_api_id}/columns
x-api-key<token>

Authenticate using API Key in request header

In: header

Path Parameters

dataset_api_id*string

Unique identifier of the dataset

Request Body

application/json

name*string

Name of the column. Must match ^[A-Za-z0-9_-]+$ and cannot be 'key'

description?|

Description of the column

type*string

Type of the column

Value in"file" | "string" | "json"

Response Body

application/json

curl -X POST "https://api.bem.ai/v2/datasets/string/columns" \  -H "Content-Type: application/json" \  -d '{    "name": "string",    "type": "file"  }'
{
  "column": {
    "name": "string",
    "description": "string",
    "type": "file"
  },
  "error": "string"
}