honeycomb · Schema
CalculatedField
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier for the calculated field. |
| alias | string | The alias name used to reference this calculated field in queries. |
| expression | string | The expression used to compute the calculated field value. |
| description | string | A description of the calculated field. |
| created_at | string | ISO8601 formatted time the calculated field was created. |
| updated_at | string | ISO8601 formatted time the calculated field was last updated. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CalculatedField",
"title": "CalculatedField",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the calculated field."
},
"alias": {
"type": "string",
"description": "The alias name used to reference this calculated field in queries."
},
"expression": {
"type": "string",
"description": "The expression used to compute the calculated field value."
},
"description": {
"type": "string",
"description": "A description of the calculated field."
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "ISO8601 formatted time the calculated field was created."
},
"updated_at": {
"type": "string",
"format": "date-time",
"description": "ISO8601 formatted time the calculated field was last updated."
}
}
}