{ "$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" }