NodeFox logoNodeFox

Contracts and Workspace Defaults

Schema & Settings

Define shared data contracts, model defaults, and environment conventions to keep workflows consistent across teams and projects while NodeFox is in beta. Schema and settings discipline is what turns one-off workflow demos into repeatable operational systems that multiple teams can trust.

Save Schema
SchemaProduct Catalog
Properties
namestring
pricenumber
categoryenum
Add property
Generated Schema
{
"type": "object",
"properties": {
"name": { "type": "string" },
"price": { "type": "number" },
"category": { "type": "string" }
}
}
3 properties
Schema Valid
New Schema

Schemas

Create and manage JSON schemas for your conversations and data validation.

Product Catalog
Validated product records for storefront sync.
"name": { "type": "string" },
"sku": { "type": "string" },
"price": { "type": "number" }
7 fieldsstring ×2number ×1enum ×1
Updated 2 days ago
Edit
Support Ticket
Inbound ticket payload for the triage agent.
"subject": { "type": "string" },
"priority": ["low","med","high"]
"status": { "enum": […] }
6 fieldsstring ×3enum ×2integer ×1
Updated 5 hours ago
Edit
Lead Capture
Marketing form output validated before CRM write.
"email": { "type": "string" },
"company": { "type": "string" },
"optedIn": { "type": "boolean" }
5 fieldsstring ×4boolean ×1
Updated 1 hour ago
Edit
Invoice Line Item
Tool payload contract for the billing node.
"quantity": { "type": "integer" },
"unitPrice": { "type": "number" },
"tax": { "type": "object" }
8 fieldsnumber ×3object ×2string ×2
Updated 3 days ago
Edit

Schema-first workflow reliability

Use schemas to validate inputs, outputs, and tool payloads throughout the graph. Clear contracts reduce runtime surprises, make collaboration easier, and let non-authors understand what each branch expects before execution reaches high-impact actions.

Settings
Conversation Defaults
AI Suggest
Security
Editor
Appearance
Logging
Auto-save
Budget
Conversation Defaults

Default provider, model, and temperature for newly created conversation nodes.

Provider
Gemini
Model
gemini-2.5-flash
Temperature
0.00

Shared defaults for faster authoring

Centralize workspace-level settings for model configuration, behavior defaults, and operational preferences so teams can move quickly without inconsistent setup. This also reduces drift across environments when multiple builders maintain the same workflow family over time.

Standardize before scale introduces chaos

Use schemas and settings to keep workflows predictable as your team and surface area grow, and to make approval, auditing, and incident diagnosis far more straightforward.