Portal Community

Active Groups

FormCategoryIDGroup NameOwner AppID RangeAI GenerationForms
130GuardRailsBizFirst.Ai.ProcessSecurity13000–13099Enabled7
140NodePoliciesBizFirst.Ai.ProcessSecurity14000–14099Enabled~12

GuardRails Group (FormCategoryID 130)

The GuardRails group manages AI safety policies — rate limiting, content filters, topic restrictions, and access controls. It is the reference implementation for the Form Group pattern.

-- GuardRails forms in Atlas_FormCategories
INSERT INTO [dbo].[Atlas_FormCategories]
    ([FormCategoryID], [CategoryName], [OwnerApp], [FormIdRangeStart], [FormIdRangeEnd], [AiGenerationEnabled], [TenantOverrideable])
VALUES
    (130, 'GuardRails', 'BizFirst.Ai.ProcessSecurity', 13000, 13099, 1, 1);

Current forms in the GuardRails group:

FormIDFormCodeFormTypeIDPrimaryUsageNodeUsage
13000GuardRail_List1 (List)guardrailsnull
13001GuardRail_Edit2 (Property)guardrailsguardrail-edit
13002GuardRail_View2 (Property)guardrailsguardrail-view
13003GuardRail_RateLimit_Edit2 (Property)guardrailsguardrail-rate-limit
13004GuardRail_ContentFilter_Edit2 (Property)guardrailsguardrail-content-filter
13005GuardRail_TopicBlock_Edit2 (Property)guardrailsguardrail-topic-block
13006GuardRail_AccessControl_Edit2 (Property)guardrailsguardrail-access-control
13007GuardRail_Audit4 (Dashboard)guardrailsnull

NodePolicies Group (FormCategoryID 140)

The NodePolicies group manages execution permissions for workflow nodes — which nodes a tenant can use, capability grants, and audit policies. It also belongs to ProcessSecurity.

INSERT INTO [dbo].[Atlas_FormCategories]
    ([FormCategoryID], [CategoryName], [OwnerApp], [FormIdRangeStart], [FormIdRangeEnd], [AiGenerationEnabled], [TenantOverrideable])
VALUES
    (140, 'NodePolicies', 'BizFirst.Ai.ProcessSecurity', 14000, 14099, 1, 1);

Reserved Ranges for Upcoming Groups

FormCategoryIDPlanned GroupID RangeStatus
150WorkDesk15000–15099Reserved
160InstallHub16000–16099Reserved
170MarketHub17000–17099Reserved
180Passport18000–18099Reserved
190Octopus19000–19099Reserved
200AppStudio20000–20099Reserved
Reference Implementation The GuardRails group is the canonical reference for how a Form Group should be structured. When creating a new group, examine the GuardRails SQL data files at BizFirstFiV3DB/dbo/Data/AtlasForms/GuardRails/ to understand file layout, INSERT patterns, and naming conventions before writing your own.