Skip to main content
This page describes the schema for domain objects that organize related data sources.

DomainModel

id
ID!
required
Unique identifier for the domain.
version
Int!
required
Version number of the domain for change tracking.
name
String!
required
Human-readable name for the domain.
description
String
Optional description explaining the purpose and contents of the domain.
databases
[DatabaseModel!]!
required
List of databases included in this domain. See DatabaseModel.
datasets
[Dataset!]!
required
Datasets (file-based data sources) associated with this domain, including S3, Azure Blob Storage, SharePoint, and Wisdom-managed datasets.
knowledge
[Knowledge!]!
required
Domain-specific knowledge entries. See Knowledge.
domainSystemInstructions
String
Custom system instructions for AI interactions within this domain.
fyStartMonth
Int
Fiscal year start month (1-12) for financial calculations.
timezone
String
Timezone used for date and time calculations in this domain.
vizConfig
VizConfig!
required
Visualization configuration settings. See VizConfig.
codegenConfig
CodegenConfig!
required
Code generation configuration settings. See CodegenConfig.
joins
[TableJoin!]!
required
List of join relationships between tables in this domain.
webSearchConfig
DomainWebSearchConfig
Web search configuration for this domain. See DomainWebSearchConfig.
canvasConfig
CanvasConfig!
required
Canvas configuration settings. See CanvasConfig.
rlsConfig
DomainRLSConfig
Row-level security configuration for this domain. See DomainRLSConfig.
updatedAt
DateTime
ISO timestamp when the domain was last modified.
creatorName
String
Full name of the user who created this domain.
isSystemGenerated
Boolean!
required
Whether this domain was automatically generated by the system.

Create Domain

Create new domains for organizing data sources

Duplicate Domain

Duplicate an existing domain

DatabaseModel

Database structure within a domain

Knowledge

Domain knowledge entries

VizConfig

Visualization configuration

CodegenConfig

Code generation configuration

Connection

Connection schema and properties