Brightsy AI provides two powerful content management features: Content for structured data and Sites for building web pages.
Content
Content is the foundation of structured data management, enabling you to define, store, and interact with custom data models.
Features & Capabilities
- Schema Definition: Create custom data structures using JSON Schema standard
- Field Validation: Enforce data integrity with type checking and validation rules
- UI Configuration: Customize how forms and data display appear to users
- Relationships: Define has-one and has-many relationships between record types
- Natural Language Search: Semantic search capabilities on enabled record types
- Advanced Querying: Complex filtering, sorting, and aggregation across records
- Vector Database Support: Enables Retrieval-Augmented Generation (RAG) applications
- Localization: Multi-language support for global content
Creating Record Types
See the Schema Reference for the full list of supported field types, formats, relationships, localization, and UI schema options.
{
"type": "object",
"required": ["name", "email"],
"properties": {
"name": {
"type": "string",
"title": "Name"
},
"email": {
"type": "string",
"format": "email",
"title": "Email Address"
},
"phone": {
"type": "string",
"title": "Phone Number"
}
}
}
UI Configuration
{
"name": {
"ui:autofocus": true
},
"email": {},
"phone": {
"ui:placeholder": "+1 (xxx) xxx-xxxx"
}
}
Search Metadata Extensions
Brightsy supports optional field-level schema metadata that influences semantic search behavior:
x-search-importance:"high" | "normal" | "low"
Use this to prioritize fields in embedding/search text construction.x-searchable:true | false
Usefalseto exclude noisy fields from semantic matching emphasis.
Example:
{
"type": "object",
"properties": {
"title": {
"type": "string",
"title": "Title",
"x-search-importance": "high"
},
"internal_notes": {
"type": "string",
"title": "Internal Notes",
"x-searchable": false
}
}
}
Note: these metadata keys are currently best configured in JSON schema mode or API/tool-based schema updates.