Attributes
Attributes are the foundational data field definitions in Omnismith. They define what information can be stored in entity records, how data is validated, and how metrics are tracked over time.
1. Attribute Types (Functional Classification)
Section titled “1. Attribute Types (Functional Classification)”When creating an attribute, you choose one of four primary functional types:
| Attribute Type | Description | Primary Use Case | Storage & Analytics Behavior |
|---|---|---|---|
| Dimension | Discrete properties and descriptive text. | Names, SKUs, Categories, Descriptions. | Stored in standard relational tables with an Audit Change Log tracking all edits over time. |
| Metric | Numeric values that change over time. | CPU load, Account Balance, Latency, Storage size. | Stored in high-performance TimescaleDB tables. Exposes time-series aggregation queries (min, max, avg, sum). |
| List | Fields with a predefined set of selectable options. | Priority (Low, Medium, High), Status (Open, In Progress, Closed). | Options are managed dynamically. Useful for strict form validation and filter chips. |
| Reference | Pointer links that connect one entity to another template. | Support Ticket → Customer, Order → Product. | Establishes relational links across entity records with target display attribute resolution. |
2. Supported Data Types
Section titled “2. Supported Data Types”Every attribute specifies a data type that enforces strict validation rules on values entered via the UI or API:
- String: Standard UTF-8 text strings (e.g. Hostname, Customer Name, Serial Code).
- Number: Integers or floating-point decimal numbers (e.g. Price, Temperature, Stock Quantity).
- Boolean: Binary flags (
true/false) representing status toggles (e.g.Active,Is VIP). - Date: Calendar date formatted as
YYYY-MM-DD(e.g. Expiration Date, Birth Date). - DateTime: ISO 8601 precise timestamp (e.g.
2026-07-20T20:15:00Z). - File: Attachment reference for uploaded documents (PDFs, spreadsheets).
- Image: Media attachment reference for images (PNG, JPEG).
3. Creating & Managing Attributes in the UI
Section titled “3. Creating & Managing Attributes in the UI”- Navigate to Data Modeling → Attributes in the sidebar navigation launcher.
- Click + Create Attribute (or select an existing attribute to edit).
- Configure Basic Settings:
- Name: Human-readable field title (e.g.
Response Latency). - Attribute Type: Choose between Dimension, Metric, List, or Reference.
- Data Type: Select the underlying field type (String, Number, Boolean, Date, DateTime, File, Image).
- Name: Human-readable field title (e.g.
- Type-Specific Configurations:
- If List: Add predefined option items with custom labels and values.
- If Reference: Select the Target Template and the Target Display Attribute used to render linked records in dropdowns.
- Click Save Changes.

💡 Developer Architecture Note
Section titled “💡 Developer Architecture Note”[!NOTE] Schema Reuse & Performance: Attributes are global to a Project workspace. A single attribute (e.g.
StatusorCreated At) can be attached to multiple Templates without duplicating field definitions.
- Dimensions: Filtered using standard string/equality search indexes.
- Metrics: Partitioned in hyper-table chunks for millisecond analytics queries.
- OpenAPI: Attributes are automatically queryable via the OpenAPI runtime endpoint
/api/v1/attribute.
Next Steps
Section titled “Next Steps”[!TIP]
- Learn how to group attributes into reusable schemas in Templates.
- Configure complex entity relationships in References.
- View metric charts and change logs in Entity Operations → History & Chart.