{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/dlp_DatasetCreation", "title": "dlp_DatasetCreation", "properties": { "dataset": { "$ref": "#/components/schemas/dlp_Dataset" }, "encoding_version": { "description": "Encoding version to use for dataset", "format": "int32", "minimum": 0, "type": "integer" }, "max_cells": { "format": "int64", "minimum": 0, "type": "integer" }, "secret": { "description": "The secret to use for Exact Data Match datasets. This is not present in\nCustom Wordlists.", "format": "password", "type": "string" }, "version": { "description": "The version to use when uploading the dataset.", "format": "int64", "type": "integer" } }, "required": [ "version", "max_cells", "dataset", "encoding_version" ], "type": "object" }