honeycomb · Schema

DatasetCreateRequest

Properties

Name Type Description
name string The name of the dataset to create.
description string An optional description for the dataset.
View JSON Schema on GitHub

JSON Schema

honeycomb-datasetcreaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DatasetCreateRequest",
  "title": "DatasetCreateRequest",
  "type": "object",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the dataset to create."
    },
    "description": {
      "type": "string",
      "description": "An optional description for the dataset."
    }
  }
}