honeycomb · Schema
EnvironmentUpdateRequest
Properties
| Name | Type | Description |
|---|---|---|
| name | string | An updated display name for the environment. |
| description | string | An updated description for the environment. |
| color | string | An updated color for the environment. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/EnvironmentUpdateRequest",
"title": "EnvironmentUpdateRequest",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "An updated display name for the environment."
},
"description": {
"type": "string",
"description": "An updated description for the environment."
},
"color": {
"type": "string",
"description": "An updated color for the environment."
}
}
}