Properties
| Name | Type | Description |
|---|---|---|
| description | string | The description of the dataset |
| encoding_version | integer | Dataset encoding version Non-secret custom word lists with no header are always version 1. Secret EDM lists with no header are version 1. Multicolumn CSV with headers are version 2. Omitting this fiel |
| name | string | |
| secret | boolean | Generate a secret dataset. If true, the response will include a secret to use with the EDM encoder. If false, the response has no secret and the dataset is uploaded in plaintext. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/dlp_NewDataset",
"title": "dlp_NewDataset",
"properties": {
"description": {
"description": "The description of the dataset",
"nullable": true,
"type": "string"
},
"encoding_version": {
"description": "Dataset encoding version\n\nNon-secret custom word lists with no header are always version 1.\nSecret EDM lists with no header are version 1.\nMulticolumn CSV with headers are version 2.\nOmitting this field provides the default value 0, which is interpreted\nthe same as 1.",
"format": "int32",
"minimum": 0,
"type": "integer"
},
"name": {
"type": "string"
},
"secret": {
"description": "Generate a secret dataset.\n\nIf true, the response will include a secret to use with the EDM encoder.\nIf false, the response has no secret and the dataset is uploaded in plaintext.",
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
}