Noe Databases
Noe databases are flexible, schema-less databases that store data in JSON format. Ideal for rapid prototyping and simple applications.
Dynamic Schema
You define the fields yourself — available types:
- string — short text
- text — longer text
- integer — whole number
- number — floating-point number
- boolean — yes/no
- datetime / date / time — date and time
Each field can be marked as required.
Features
- Multi-table — a database can contain multiple tables with different schemas
- Automatic indexes — up to 3 string, 2 integer, and 2 datetime fields are indexed for fast searching
- API — you can expose public methods (list, create, update, delete, get, search) with field-level access control
- Filtering — set filters, default values, and access restrictions (e.g., IP-based scope)
- App integration — a database can be connected to a Noe app
- Friendly URLs — readable addresses instead of IDs