Properties
| Name | Type | Description |
|---|---|---|
| columns | array | |
| created_at | string | |
| description | string | The description of the dataset |
| encoding_version | integer | |
| id | string | |
| name | string | |
| num_cells | integer | |
| secret | boolean | |
| status | object | |
| updated_at | string | |
| uploads | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/dlp_Dataset",
"title": "dlp_Dataset",
"properties": {
"columns": {
"items": {
"$ref": "#/components/schemas/dlp_DatasetColumn"
},
"type": "array"
},
"created_at": {
"format": "date-time",
"type": "string"
},
"description": {
"description": "The description of the dataset",
"nullable": true,
"type": "string"
},
"encoding_version": {
"format": "int32",
"minimum": 0,
"type": "integer"
},
"id": {
"format": "uuid",
"type": "string"
},
"name": {
"type": "string"
},
"num_cells": {
"format": "int64",
"type": "integer"
},
"secret": {
"type": "boolean"
},
"status": {
"$ref": "#/components/schemas/dlp_DatasetUploadStatus"
},
"updated_at": {
"format": "date-time",
"type": "string"
},
"uploads": {
"items": {
"$ref": "#/components/schemas/dlp_DatasetUpload"
},
"type": "array"
}
},
"required": [
"name",
"id",
"status",
"num_cells",
"created_at",
"updated_at",
"uploads",
"secret",
"encoding_version",
"columns"
],
"type": "object"
}