ServiceNow Fluent

  • Release version: Zurich
  • Updated March 12, 2026
  • 3 minutes to read
  • Summarize
    Summarized using AI
    This content was generated using new OpenAI-powered functionality. Results are provided on an as is basis and are not guaranteed to be accurate or complete.

    Summary of ServiceNow Fluent

    ServiceNow Fluent is a declarative, domain-specific language (DSL) based on TypeScript designed for defining application metadata files (sysmetadata) in ServiceNow. It enables developers to define metadata like tables, roles, ACLs, business rules, and Automated Test Framework tests using concise code rather than form or builder UI tools. Applications developed or converted with the ServiceNow IDE or SDK support Fluent, which also offers two-way synchronization between source code and instance metadata.

    Show full answer Show less

    Key Features

    • Declarative Metadata Definition: Use ServiceNow Fluent APIs in .now.ts files to define application metadata such as tables, client scripts, and business rules programmatically.
    • Two-way Synchronization: Changes to metadata in the ServiceNow AI Platform UI sync to source code, and code changes sync back to the instance metadata, ensuring consistency.
    • Extensive API Support: Fluent provides APIs for many metadata types, including a Record API for metadata without dedicated APIs. Some metadata types, like Metadata Snapshots and UX Assets, remain as XML files and are not converted.
    • Integration with Server-side and Client-side Scripts: Server-side scripts (e.g., Business Rules) can import and use JavaScript modules, while client scripts can include external scripts for reuse.
    • Code Management Directives: Use directives such as @fluent-ignore, @fluent-disable-sync, and @fluent-disable-sync-for-file to manage Fluent diagnostics and synchronization behavior selectively.

    Practical Use Case

    Developers can define tables with columns, client scripts that run on record load, and business rules triggered on record updates—all in code. For example, a table with deadline, state (with choice values), and task columns can be created alongside a client script that shows a message when a record loads, and a business rule that logs state changes.

    What Customers Can Expect

    • Streamlined application metadata management through code, improving development efficiency and version control.
    • Seamless synchronization between metadata changes made in the platform UI and source code, maintaining alignment across development environments.
    • Support for reuse and modular scripting by importing external JavaScript modules in server- and client-side scripts.
    • Clear guidance on managing synchronization and diagnostics to avoid conflicts or unwanted updates.

    Next Steps

    To start using ServiceNow Fluent, customers should leverage the ServiceNow IDE or SDK and consult the Fluent API reference and SDK examples repository for supported metadata types and sample code. This will enable rapid application development and efficient metadata management within ServiceNow instances.

    Define application metadata in source code using the ServiceNow Fluent domain-specific programming language.

    Overview of ServiceNow Fluent

    ServiceNow Fluent is a declarative, domain-specific language (DSL) based on TypeScript for defining the metadata files [sys_metadata] that make up applications and includes APIs for the different types of metadata, such as tables, roles, ACLs, business rules, and Automated Test Framework tests.

    Developers define this metadata in a few lines of code instead of through a form or builder tool user interface. Applications created or converted with the ServiceNow IDE or ServiceNow SDK support development in ServiceNow Fluent.

    ServiceNow Fluent supports two-way synchronization, which allows changes to metadata to be synced from other ServiceNow AI Platform user interfaces into source code and changes to source code to be synced back to metadata across the instance.

    To get started using the ServiceNow IDE or ServiceNow SDK, see the ServiceNow IDE or ServiceNow SDK documentation.

    ServiceNow Fluent APIs

    ServiceNow Fluent includes APIs for many types of metadata. You can use the Record API to define application metadata that doesn't have a dedicated API. For the latest list of supported APIs and examples, see the ServiceNow Fluent API reference and ServiceNow SDK examples repository on GitHub.

    Note:
    A limited number of metadata types, such as Metadata Snapshots [sys_metadata_link] and UX Assets [sys_ux_lib_asset], can't be represented as ServiceNow Fluent code and aren't transformed. These metadata types remain as metadata XML files in the metadata directory of your application.

    ServiceNow Fluent usage

    In files with the .now.ts extension, use objects in the ServiceNow Fluent APIs to define metadata in the application. You must also include the required imports for the APIs from @servicenow/sdk/core. For objects with server-side scripts, such as the BusinessRule object, you can import and use code from JavaScript modules.

    The following example includes the definitions of a table, client script, and business rule in the application. The client script uses a script from the client-script.js file. The business rule uses a function from the script.js JavaScript module.
    import '@servicenow/sdk/global'
    import { BusinessRule, ClientScript, DateColumn, StringColumn, Table } from '@servicenow/sdk/core'
    import { showStateUpdate } from '../server/script.js'
    
    //creates todo table, with three columns (deadline, status and task)
    export const x_snc_example_to_do = Table({
        name: 'x_snc_example_to_do',
        schema: {
            deadline: DateColumn({ label: 'Deadline' }),
            state: StringColumn({
                label: 'State',
                choices: {
                    ready: { label: 'Ready' },
                    completed: { label: 'Completed' },
                    inProgress: { label: 'In Progress' },
                },
            }),
            task: StringColumn({ label: 'Task', maxLength: 120 }),
        },
    })
    
    //creates a client script that pops up 'Table loaded successfully!!' message everytime todo record is loaded
    ClientScript({
        $id: Now.ID['cs0'],
        name: 'my_client_script',
        table: 'x_snc_example_to_do',
        active: true,
        appliesExtended: false,
        global: true,
        uiType: 'all',
        description: 'Custom client script generated by Now SDK',
        isolateScript: false,
        type: 'onLoad',
        script: Now.include('../client/client-script.js'),
    })
    
    //creates a business rule that pops up state change message whenever a todo record is updated
    BusinessRule({
        $id: Now.ID['br0'],
        action: ['update'],
        table: 'x_snc_example_to_do',
        script: showStateUpdate,
        name: 'LogStateChange',
        order: 100,
        when: 'after',
        active: true,
    })
    The client script referenced from the ClientScript object:
    function onLoad() {
        g_form.addInfoMessage("Table loaded successfully!!")
    }
    The JavaScript module referenced from the BusinessRule object:
    import { gs } from '@servicenow/glide'
    
    export function showStateUpdate(current, previous) { 
        const currentState = current.getValue('state')
        const previousState = previous.getValue('state')
    
        gs.addInfoMessage(`state updated from "${previousState}" to "${currentState}"`)
    }

    After building the application, this source code generates the following application metadata files on the instance.

    Figure 1. Application metadata generated from ServiceNow Fluent code
    Application files generated from the example code.
    Tip:
    You can use the following directives in a code comment to help manage your code:
    • @fluent-ignore: Suppresses ServiceNow Fluent diagnostic warnings and errors in the following line of code.
    • @fluent-disable-sync: Turns off syncing changes to a ServiceNow Fluent object. Use before a call expression (for example, Record({ ... })) to turn off syncing for that object and its child objects. Only use this directive if you want to ignore changes made outside of the source code to the object and never update it when syncing.
    • @fluent-disable-sync-for-file: Turns off syncing changes to a ServiceNow Fluent file (.now.ts). Use in the first line of the file to turn off syncing for all code in the file. Only use this directive if you want to ignore changes made outside of the source code to the file and never update it when syncing.