honeycomb · Schema

MarkerSettingCreateRequest

Properties

Name Type Description
type string The marker type this setting applies to.
color string The color used to display markers of this type.
View JSON Schema on GitHub

JSON Schema

honeycomb-markersettingcreaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MarkerSettingCreateRequest",
  "title": "MarkerSettingCreateRequest",
  "type": "object",
  "required": [
    "type"
  ],
  "properties": {
    "type": {
      "type": "string",
      "description": "The marker type this setting applies to."
    },
    "color": {
      "type": "string",
      "description": "The color used to display markers of this type."
    }
  }
}