dlp_DatasetCreation

APIs.ioEngineeringPlatform

Properties

Name Type Description
dataset object
encoding_version integer Encoding version to use for dataset
max_cells integer
secret string The secret to use for Exact Data Match datasets. This is not present in Custom Wordlists.
version integer The version to use when uploading the dataset.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-dlp-datasetcreation-schema.json Raw ↑
{
  "$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"
}