honeycomb · Schema

EnvironmentCreateRequest

Properties

Name Type Description
name string The display name for the environment.
description string An optional description for the environment.
color string An optional color for the environment.
View JSON Schema on GitHub

JSON Schema

honeycomb-environmentcreaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EnvironmentCreateRequest",
  "title": "EnvironmentCreateRequest",
  "type": "object",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "The display name for the environment."
    },
    "description": {
      "type": "string",
      "description": "An optional description for the environment."
    },
    "color": {
      "type": "string",
      "description": "An optional color for the environment."
    }
  }
}