C3 AI Documentation Home

UI Built-in Role

The C3.UiSdLAccess role provides access to C3 AI UI components for developing application UI. It also allows users to load C3 AI application UI pages.

To learn more about UI components and development in the C3 Agentic AI Platform, see the C3 AI UI Development Guide.

Use the C3.UiSdlAccess role

Provide this role to users who develop application UI using C3 AI UI components, or users who need access to C3 AI application UI pages.

Instead of explicitly assigning users this role, you can also add C3.UiSdlAccess as a nested role to expand your own roles. Here is an example role file that has C3.UiSdlAccess as a nested role:

JSON
{
  "id": "MyRole",
  "nestedRoles": [
    "UiSdlAccess"
  ],
  "description": "Provides basic access to an application and its UI.",
  "permissions": [
    "allow:WindTurbine::fetch",
    "allow:WindTurbineEvent::fetch",
    "deny:WindTurbine::remove",
  ],
}

See also

Was this page helpful?