> ## Documentation Index
> Fetch the complete documentation index at: https://documentation.kodelabs.com/llms.txt
> Use this file to discover all available pages before exploring further.

# KODE glossary

> Definitions of common KODE Labs terms across Cloud BMS, Launchpad, Building BI, AssetOps, EnerG, FDD, FTT, and related products.

export const GlossaryLetterIndex = ({letters = []}) => <div className="glossary-letter-index">
    {letters.map((letter, index) => <span key={letter}>
        {index > 0 ? " · " : null}
        <a className="glossary-letter-link" data-letter={letter} href={"#" + String(letter).toLowerCase()}>
          {letter}
        </a>
      </span>)}
  </div>;

export const GlossarySlicer = ({defaultFilter = "All"}) => {
  const filters = ["All", "Building BI", "EnerG", "AssetOps", "Cloud BMS", "FDD", "FTT", "OSS", "Devices", "Points", "Graphics", "Documents", "Launchpad", "Mobile app", "Integrations", "Smart Building"];
  const decodeHrefSlug = value => {
    try {
      return decodeURIComponent(String(value || ""));
    } catch (error) {
      return String(value || "");
    }
  };
  const findById = id => {
    if (!id || typeof document === "undefined") return null;
    const decoded = decodeHrefSlug(id);
    return document.getElementById(decoded) || document.getElementById(id) || null;
  };
  const getContentRoot = () => document.querySelector(".glossary-app") || document.querySelector("#content") || document.querySelector(".mdx-content") || document.querySelector("article");
  const headingTitle = heading => {
    const clean = value => (value || "").replace(/\u00a0/g, " ").replace(/#+\s*$/g, "").replace(/\s+/g, " ").trim();
    const clone = heading.cloneNode(true);
    clone.querySelectorAll("a.icon-link, a[aria-hidden='true'], .anchor, button, svg").forEach(node => node.remove());
    clone.querySelectorAll("a[href^='#']").forEach(node => {
      const text = clean(node.textContent);
      if (!text || text === "#") node.remove();
    });
    const fromClone = clean(clone.textContent);
    if (fromClone) return fromClone;
    return clean(heading.textContent);
  };
  const productsFromNode = node => {
    const raw = node && node.dataset && node.dataset.products || "";
    if (!raw) return [];
    return raw.split("|").map(item => item.trim()).filter(Boolean);
  };
  const ensureTermMeta = () => {
    const root = getContentRoot();
    if (!root) return;
    Array.from(root.querySelectorAll("h3")).forEach(heading => {
      if (heading.dataset.glossaryReady === "true") return;
      const title = headingTitle(heading);
      if (!title) return;
      const nodes = [heading];
      let cursor = heading.nextElementSibling;
      while (cursor && !(/^H[23]$/).test(cursor.tagName)) {
        nodes.push(cursor);
        cursor = cursor.nextElementSibling;
      }
      const badgeRow = nodes.find(node => node.classList && node.classList.contains("glossary-badges"));
      const products = productsFromNode(badgeRow);
      heading.dataset.glossaryReady = "true";
      heading.dataset.term = title;
      heading.dataset.products = products.join("|");
      nodes.forEach(node => {
        node.dataset.glossaryTerm = title;
        node.dataset.products = products.join("|");
      });
    });
    Array.from(root.querySelectorAll("h2")).forEach(heading => {
      const text = headingTitle(heading);
      if ((/^[A-Z]$/).test(text)) {
        heading.dataset.glossaryLetter = text;
      }
      if (text === "Smart Building terminology") {
        heading.dataset.glossarySmart = "true";
      }
    });
  };
  const setNodesHidden = (nodes, hidden) => {
    nodes.forEach(node => {
      node.hidden = hidden;
      node.classList.toggle("is-hidden", hidden);
    });
  };
  const termBlocks = root => {
    const map = {};
    Array.from(root.querySelectorAll("[data-glossary-term]")).forEach(node => {
      const title = node.dataset.glossaryTerm;
      if (!title) return;
      if (!map[title]) map[title] = [];
      map[title].push(node);
    });
    return map;
  };
  const applyFilter = nextFilter => {
    if (typeof document === "undefined") return 0;
    ensureTermMeta();
    const root = getContentRoot();
    if (!root) return 0;
    const blocks = termBlocks(root);
    let visibleCount = 0;
    const visibleLetters = new Set();
    Object.keys(blocks).forEach(title => {
      const nodes = blocks[title];
      const products = productsFromNode(nodes[0]);
      const visible = nextFilter === "All" || products.includes(nextFilter) || nextFilter === "Smart Building" && products.includes("Smart Building");
      setNodesHidden(nodes, !visible);
      if (visible && nodes.length) {
        visibleCount += 1;
        const letter = title[0] ? title[0].toUpperCase() : "";
        if (letter) visibleLetters.add(letter);
      }
    });
    Array.from(root.querySelectorAll("h2[data-glossary-letter]")).forEach(heading => {
      let hasVisibleTerm = false;
      let cursor = heading.nextElementSibling;
      while (cursor && cursor.tagName !== "H2") {
        if (cursor.dataset && cursor.dataset.glossaryTerm && !cursor.hidden && !cursor.classList.contains("is-hidden")) {
          hasVisibleTerm = true;
          break;
        }
        cursor = cursor.nextElementSibling;
      }
      heading.hidden = !hasVisibleTerm;
      heading.classList.toggle("is-hidden", !hasVisibleTerm);
    });
    const smartHeading = root.querySelector("h2[data-glossary-smart='true']");
    if (smartHeading) {
      let hasSmart = false;
      let cursor = smartHeading.nextElementSibling;
      while (cursor) {
        if (cursor.dataset && cursor.dataset.glossaryTerm && !cursor.hidden && !cursor.classList.contains("is-hidden")) {
          hasSmart = true;
          break;
        }
        cursor = cursor.nextElementSibling;
      }
      const finalShow = nextFilter === "Smart Building" ? true : nextFilter === "All" ? hasSmart : false;
      smartHeading.hidden = !finalShow;
      smartHeading.classList.toggle("is-hidden", !finalShow);
    }
    document.querySelectorAll(".glossary-letter-link").forEach(link => {
      const letter = (link.getAttribute("data-letter") || "").toUpperCase();
      const enabled = nextFilter === "All" || visibleLetters.has(letter);
      link.classList.toggle("is-disabled", !enabled);
    });
    const tocRoot = document.querySelector("#table-of-contents") || document.querySelector("#table-of-contents-content") || document.querySelector("toc");
    if (tocRoot) {
      tocRoot.querySelectorAll("a[href^='#']").forEach(link => {
        try {
          const rawSlug = (link.getAttribute("href") || "").replace(/^#/, "");
          if (!rawSlug) return;
          const slug = decodeHrefSlug(rawSlug);
          let visible = true;
          if ((/^[a-z]$/i).test(slug)) {
            const heading = findById(slug.toLowerCase());
            visible = heading ? !heading.hidden : nextFilter === "All";
          } else if (slug === "smart-building-terminology") {
            const heading = root.querySelector("h2[data-glossary-smart='true']");
            visible = heading ? !heading.hidden : nextFilter === "All";
          } else {
            const byId = findById(slug);
            const byData = Array.from(root.querySelectorAll("h3[data-term]")).find(heading => heading.id === slug || heading.id === rawSlug);
            const heading = byId || byData || null;
            if (heading) visible = !heading.hidden;
          }
          const item = link.closest("toc-item") || link.closest("li") || link.parentElement;
          if (item && item !== tocRoot) {
            item.hidden = !visible;
            item.classList.toggle("glossary-toc-hidden", !visible);
          }
        } catch (error) {}
      });
    }
    return visibleCount;
  };
  const initial = filters.includes(defaultFilter) ? defaultFilter : "All";
  const [filter, setFilter] = useState(initial);
  const [count, setCount] = useState(null);
  useEffect(() => {
    setFilter(initial);
  }, [initial]);
  useEffect(() => {
    const run = () => {
      try {
        setCount(applyFilter(filter));
      } catch (error) {
        console.warn("GlossarySlicer applyFilter failed", error);
      }
    };
    run();
    if (typeof document === "undefined") return undefined;
    const raf = window.requestAnimationFrame(run);
    const root = getContentRoot() || document.body;
    const observer = new MutationObserver(() => run());
    observer.observe(root, {
      childList: true,
      subtree: true
    });
    return () => {
      window.cancelAnimationFrame(raf);
      observer.disconnect();
    };
  }, [filter]);
  const countLabel = count != null ? " (" + String(count) + ")" : "";
  const summary = filter === "All" ? "Showing all terms" + countLabel : "Filtered to " + filter + countLabel;
  return <div className="glossary-slicer not-prose">
      <div className="glossary-slicer-header">
        <p className="glossary-slicer-label">Filter by product</p>
        <p className="glossary-slicer-count">{summary}</p>
      </div>
      <div className="glossary-slicer-chips" role="toolbar" aria-label="Glossary product filters">
        {filters.map(name => {
    const active = filter === name;
    return <button key={name} type="button" className={active ? "glossary-chip glossary-chip-active" : "glossary-chip"} aria-pressed={active} onClick={() => setFilter(name)}>
              {name}
            </button>;
  })}
      </div>
    </div>;
};

<div className="glossary-app">
  <GlossarySlicer defaultFilter="FDD" />

  Lookup definitions for common KODE Labs terms. Jump to a letter, or search this page. Where a related guide exists, the term links to that documentation. For equipment and point abbreviations, see [Smart Building terminology](#smart-building-terminology).

  <GlossaryLetterIndex letters={["A", "B", "C", "D", "E", "F", "G", "H", "I", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W"]} />

  ## A

  ### Accruals

  <div className="glossary-badges" data-products="EnerG" data-term="Accruals">
    <span className="glossary-badge">EnerG</span>
  </div>

  In EnerG, estimates of usage or cost for months that lack final bills. EnerG borrows prior-year shapes, spreads usage across calendar months, and closes month-end gaps until utilities post final reads. See [Key concepts](/products/energ/get-started/key-concepts).

  ### Acknowledgement

  <div className="glossary-badges" data-products="FDD" data-term="Acknowledgement">
    <span className="glossary-badge">FDD</span>
  </div>

  Recognizing and responding to an alarm or event so the issue can be tracked to resolution. See [Events](/products/fdd/events).

  ### Active

  <div className="glossary-badges" data-products="FDD" data-term="Active">
    <span className="glossary-badge">FDD</span>
  </div>

  An alarm or event status that means the point has not returned to its normal state. Active events typically appear highlighted until the condition clears. See [Events](/products/fdd/events).

  ### Activity log

  <div className="glossary-badges" data-products="Points" data-term="Activity log">
    <span className="glossary-badge">Points</span>
  </div>

  A record of user-initiated adjustments and commands to equipment settings, including setpoint and variable changes with reasons and priorities. See [Commanding points](/products/kode-os/points/commanding-points).

  ### Adapter

  <div className="glossary-badges" data-products="OSS" data-term="Adapter">
    <span className="glossary-badge">OSS</span>
  </div>

  In [Optimized Start/Stop (OSS)](/products/kode-os/oss), the adapter customizes machine-learning optimization for HVAC systems by specifying devices and parameters such as zone temperature, cooling and heating setpoints, run status, and occupancy mode.

  ### Aggregated table

  <div className="glossary-badges" data-products="Building BI" data-term="Aggregated table">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, a table widget that folds source rows into one line per group and computes metrics such as sum, max, count, or last for each group.

  ### Alarm

  <div className="glossary-badges" data-products="FDD" data-term="Alarm">
    <span className="glossary-badge">FDD</span>
  </div>

  A device-reported occurrence that needs attention or resolution by building management. See [Events](/products/fdd/events).

  ### Alert

  <div className="glossary-badges" data-products="FDD" data-term="Alert">
    <span className="glossary-badge">FDD</span>
  </div>

  An alarm priority that ranks urgency and helps determine response order. See [Events](/products/fdd/events).

  ### Alert Center

  <div className="glossary-badges" data-products="EnerG" data-term="Alert Center">
    <span className="glossary-badge">EnerG</span>
  </div>

  In EnerG, a portfolio list of data-quality issues for utility meters such as gaps, overlaps, duplicates, and late or missing bills. See [Alert Center](/products/energ/data-quality/alert-center).

  ### API

  <div className="glossary-badges" data-products="Integrations" data-term="API">
    <span className="glossary-badge">Integrations</span>
  </div>

  API stands for Application Programming Interface. An API is a defined way for two software systems to exchange data and commands over a network. Instead of a person clicking through a vendor portal, KODE OS calls the vendor's API to discover devices, collect readings, or send actions.

  Most KODE OS integrations use REST APIs over HTTPS. Some use SOAP, webhooks, MQTT, SDKs, or building protocols such as BACnet and Modbus. See [What are Integrations?](/products/integrations/get-started/introduction) and the [Integrations catalog](/products/integrations/catalog).

  ### API Catalog

  <div className="glossary-badges" data-products="Integrations" data-term="API Catalog">
    <span className="glossary-badge">Integrations</span>
  </div>

  The in-product library of supported integrations inside Cloud BMS. Open `Data Sources`, then `API Catalog`, to search by vendor or system type and add a connector. The docs [Integrations catalog](/products/integrations/catalog) mirrors that library for browsing outside the product.

  ### Arcadia

  <div className="glossary-badges" data-products="EnerG" data-term="Arcadia">
    <span className="glossary-badge">EnerG</span>
  </div>

  An automated utility connection that signs in to provider portals and retrieves bills, usage, accounts, meters, and statements for EnerG on a schedule. See [Arcadia](/products/energ/data-sources/arcadia).

  ### Archived

  <div className="glossary-badges" data-products="FTT" data-term="Archived">
    <span className="glossary-badge">FTT</span>
  </div>

  In [FTT](/products/ftt/overview), archived test results mark a wrong or unnecessary routine so the data stays available but is treated as non-informative. See [Test results](/products/ftt/test-results).

  ### Area

  <div className="glossary-badges" data-products="AssetOps|Cloud BMS" data-term="Area">
    <span className="glossary-badge">AssetOps</span><span className="glossary-badge">Cloud BMS</span>
  </div>

  A space within a floor of a building that one or more building-system components affect. See [Areas](/products/kode-os/areas).

  In AssetOps, an area is also a building location (room, floor, or common space) used to place assets or target work orders when no asset is selected. See [Work orders](/products/assetops/work-orders/work-orders-overview).

  ### Assignees

  <div className="glossary-badges" data-products="FDD" data-term="Assignees">
    <span className="glossary-badge">FDD</span>
  </div>

  In an [FDD notification policy](/products/fdd/notification-policies), assignees are roles or users selected to receive notifications, with methods and escalation timings you can customize by role.

  ### Asset

  <div className="glossary-badges" data-products="AssetOps" data-term="Asset">
    <span className="glossary-badge">AssetOps</span>
  </div>

  In AssetOps, a physical device or equipment item in a building that needs monitoring, maintenance, or operational oversight. See [Assets](/products/assetops/quickstart/assets).

  ### Asset category

  <div className="glossary-badges" data-products="AssetOps" data-term="Asset category">
    <span className="glossary-badge">AssetOps</span>
  </div>

  In AssetOps, the required top-level grouping for every asset: Equipment, Architectural, or Furniture. Distinct from a work order category. See [Assets](/products/assetops/quickstart/assets).

  ### Asset discovery

  <div className="glossary-badges" data-products="AssetOps" data-term="Asset discovery">
    <span className="glossary-badge">AssetOps</span>
  </div>

  In AssetOps, the building-level process to import and onboard assets from a data source, including discovery runs, field mapping, and matching. See [Asset discovery](/products/assetops/assets/asset-discovery).

  ### Asset linking

  <div className="glossary-badges" data-products="AssetOps" data-term="Asset linking">
    <span className="glossary-badge">AssetOps</span>
  </div>

  In AssetOps asset discovery, merging newly discovered assets with existing building assets so one physical device keeps a single record. See [Asset discovery](/products/assetops/assets/asset-discovery).

  ### Asset status

  <div className="glossary-badges" data-products="AssetOps" data-term="Asset status">
    <span className="glossary-badge">AssetOps</span>
  </div>

  In AssetOps, the lifecycle state of an asset record: Active, Out of Service, or Decommissioned. See [Assets](/products/assetops/assets/assets).

  ### Asset type

  <div className="glossary-badges" data-products="AssetOps" data-term="Asset type">
    <span className="glossary-badge">AssetOps</span>
  </div>

  In AssetOps, a finer grouping under an asset category (for example AHU, VAV, or boiler). Asset types also scope task templates and schedules. See [Assets](/products/assetops/quickstart/assets).

  ### AssetOps

  <div className="glossary-badges" data-products="AssetOps" data-term="AssetOps">
    <span className="glossary-badge">AssetOps</span>
  </div>

  The KODE CMMS product for asset and maintenance operations across a portfolio, including work orders, schedules, assets, and shared resources. See [AssetOps overview](/products/assetops/quickstart/overview).

  ### Audit

  <div className="glossary-badges" data-products="Devices|Cloud BMS" data-term="Audit">
    <span className="glossary-badge">Devices</span><span className="glossary-badge">Cloud BMS</span>
  </div>

  A view of real-time and historical data for devices and points, used to monitor device status, point integrity, and building areas. See [Devices](/products/kode-os/devices/devices) and [Trends](/products/kode-os/trends).

  ### Authentication logs

  <div className="glossary-badges" data-products="Launchpad" data-term="Authentication logs">
    <span className="glossary-badge">Launchpad</span>
  </div>

  A security feature for Owners and Admins that lists account access details for workspace members. Individuals can view logs for their own account. See [Security settings](/products/launchpad/get-started/security-settings).

  ### Auto-fail

  <div className="glossary-badges" data-products="AssetOps" data-term="Auto-fail">
    <span className="glossary-badge">AssetOps</span>
  </div>

  In AssetOps, a schedule setting that marks generated work orders as failed if they are not completed within a configured number of days after the due date. See [Schedules](/products/assetops/schedules/schedules-overview).

  ### Auto-refresh

  <div className="glossary-badges" data-products="Building BI" data-term="Auto-refresh">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, a per-dashboard setting that controls how often the dashboard re-queries data.

  ## B

  ### Baseline

  <div className="glossary-badges" data-products="EnerG" data-term="Baseline">
    <span className="glossary-badge">EnerG</span>
  </div>

  In EnerG, a historical reference window—usually 12 or 24 months—that you measure savings, intensity, and compliance against. You need 12 consecutive months of complete billed data before a baseline qualifies. See [Key concepts](/products/energ/get-started/key-concepts).

  ### Batch update

  <div className="glossary-badges" data-products="Devices|Points" data-term="Batch update">
    <span className="glossary-badge">Devices</span><span className="glossary-badge">Points</span>
  </div>

  Making simultaneous changes to multiple devices or points instead of updating them one by one. See [Device batch update](/products/kode-os/devices/device-batch-update) and [Points batch update](/products/kode-os/points/points-batch-update).

  ### BACnet

  <div className="glossary-badges" data-products="Integrations" data-term="BACnet">
    <span className="glossary-badge">Integrations</span>
  </div>

  BACnet stands for Building Automation and Control Network. It is a standard protocol used by building systems to communicate with controllers, meters, and HVAC equipment over IP or serial networks. Some KODE OS integrations discover and collect BACnet objects dynamically. See [What are Integrations?](/products/integrations/get-started/introduction).

  ### BigQuery

  <div className="glossary-badges" data-products="Building BI" data-term="BigQuery">
    <span className="glossary-badge">Building BI</span>
  </div>

  A Building BI database backend used as a near-real-time backup and home for internal module tables such as FTT, FDD, and OSS. Virtual tables cannot be created on BigQuery in Building BI.

  ### BIM model

  <div className="glossary-badges" data-products="Graphics" data-term="BIM model">
    <span className="glossary-badge">Graphics</span>
  </div>

  A digital graphic representation of a building that integrates layouts, system components, and device graphics for design and management. See [Graphics](/products/kode-os/graphics/graphic-tool).

  ### Bool point

  <div className="glossary-badges" data-products="Points" data-term="Bool point">
    <span className="glossary-badge">Points</span>
  </div>

  A binary point state such as ON/OFF or TRUE/FALSE. See [Points](/products/kode-os/points/points).

  ### Breakdown dimension

  <div className="glossary-badges" data-products="Building BI" data-term="Breakdown dimension">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, a secondary dimension that splits a chart series, typically as the legend.

  ### Budget planning

  <div className="glossary-badges" data-products="EnerG" data-term="Budget planning">
    <span className="glossary-badge">EnerG</span>
  </div>

  In EnerG, a building workflow to create, edit, and activate annual energy budgets, then track predicted versus actual spend and variance. See [Budget planning](/products/energ/finance/budget-planning).

  ### Building

  <div className="glossary-badges" data-products="Cloud BMS" data-term="Building">
    <span className="glossary-badge">Cloud BMS</span>
  </div>

  A site integrated in Cloud BMS. See [Sites and map](/products/kode-os/sites-and-map).

  ### Building BI

  <div className="glossary-badges" data-products="Building BI" data-term="Building BI">
    <span className="glossary-badge">Building BI</span>
  </div>

  The analytics and visualization module in Cloud BMS for interactive dashboards, charts, collections, and portfolio insights. Building BI consolidates data from other KODE modules into a single pane of glass. See [Building BI](/products/building-bi/overview).

  ### Building level

  <div className="glossary-badges" data-products="AssetOps|Building BI" data-term="Building level">
    <span className="glossary-badge">AssetOps</span><span className="glossary-badge">Building BI</span>
  </div>

  A product scope limited to a single building.

  In Building BI, data is pre-filtered to that site for day-to-day operations. See [Building BI overview](/products/building-bi/overview#portfolio-and-building-scope).

  In AssetOps, building-level work covers day-to-day work orders, schedules, assets, teams, routing, and local completion-policy overrides. See [Usage and workflow](/products/assetops/quickstart/usage-workflow).

  ## C

  ### Calculated column

  <div className="glossary-badges" data-products="Building BI" data-term="Calculated column">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, single-row custom logic on a data source that creates a new virtual field from that row's values. It does not aggregate across rows. See [Calculated fields](/products/building-bi/reference/calculated-fields).

  ### Calculated metric

  <div className="glossary-badges" data-products="Building BI" data-term="Calculated metric">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, a multi-row aggregation such as SUM, AVG, or COUNT that recalculates based on chart grouping. See [Calculated fields](/products/building-bi/reference/calculated-fields).

  ### Calculated URL

  <div className="glossary-badges" data-products="Building BI" data-term="Calculated URL">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, a calculated field that turns data into an internal Cloud BMS or external navigation link. See [Calculated fields](/products/building-bi/reference/calculated-fields).

  ### Calendar month alignment

  <div className="glossary-badges" data-products="EnerG" data-term="Calendar month alignment">
    <span className="glossary-badge">EnerG</span>
  </div>

  In EnerG, spreading each billing period across calendar months using average daily consumption so irregular bill windows align for comparisons and closes. See [Key concepts](/products/energ/get-started/key-concepts).

  ### Calendar schedule

  <div className="glossary-badges" data-products="Integrations" data-term="Calendar schedule">
    <span className="glossary-badge">Integrations</span>
  </div>

  In Integrations, a schedule type for exceptions and one-time events such as holidays, maintenance windows, and temporary overrides. Calendar schedules override the regular weekly pattern for specific dates or ranges. See [Schedules](/products/integrations/capabilities/schedules).

  ### Canvas type

  <div className="glossary-badges" data-products="Building BI" data-term="Canvas type">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, the dashboard layout mode. A Fixed canvas locks a set width for stable rendering; a responsive or auto canvas adjusts to the viewer's screen.

  ### Capital planning

  <div className="glossary-badges" data-products="EnerG" data-term="Capital planning">
    <span className="glossary-badge">EnerG</span>
  </div>

  In EnerG, a building workflow to model energy conservation investments through baselines, rates, measures, scenarios, and projected savings. See [Capital planning](/products/energ/sustainability/capital-planning).

  ### Carbon emissions intensity

  <div className="glossary-badges" data-products="EnerG" data-term="Carbon emissions intensity">
    <span className="glossary-badge">EnerG</span>
  </div>

  In EnerG, site or portfolio emissions tied to area, occupancy, or revenue, depending on the reporting standard. See [Key concepts](/products/energ/get-started/key-concepts).

  ### Catalog

  <div className="glossary-badges" data-products="Integrations" data-term="Catalog">
    <span className="glossary-badge">Integrations</span>
  </div>

  A repository of available APIs, including endpoints, authentication methods, versioning, and usage limits. In KODE documentation, the Integrations catalog lists supported connectors by system type. See the [Integrations catalog](/products/integrations/catalog) and [API Catalog](#api-catalog).

  ### Category

  <div className="glossary-badges" data-products="AssetOps" data-term="Category">
    <span className="glossary-badge">AssetOps</span>
  </div>

  In AssetOps, a portfolio-level broad grouping for work orders (for example HVAC or plumbing), used with issue types for routing. See [Categories](/products/assetops/resources/categories).

  ### Change of value (COV)

  <div className="glossary-badges" data-products="Building BI" data-term="Change of value (COV)">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI time-series sources, a polling pattern that writes a new row only when a value changes beyond a threshold, with a maximum interval even when the value is unchanged.

  ### Chart template

  <div className="glossary-badges" data-products="Building BI" data-term="Chart template">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, a reusable template that captures a single chart or widget. Apply it from the chart library while editing a dashboard. See [Templates](/products/building-bi/templates).

  ### Circuit view

  <div className="glossary-badges" data-products="Cloud BMS" data-term="Circuit view">
    <span className="glossary-badge">Cloud BMS</span>
  </div>

  A graphical overview of system device placement and interactions within major systems. See [Systems](/products/kode-os/systems).

  ### ClickHouse

  <div className="glossary-badges" data-products="Building BI" data-term="ClickHouse">
    <span className="glossary-badge">Building BI</span>
  </div>

  The Building BI database backend optimized for high-volume real-time sensor data. It powers the Point Time Series Real-Time table.

  ### Collaborator

  <div className="glossary-badges" data-products="Building BI" data-term="Collaborator">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, a specific user granted edit access to a dashboard. Collaborator access is user-based, not role-based, and cannot remove the original owner. See [Collections](/products/building-bi/collections#collaborator-access).

  ### Collection

  <div className="glossary-badges" data-products="Building BI|Integrations" data-term="Collection">
    <span className="glossary-badge">Building BI</span><span className="glossary-badge">Integrations</span>
  </div>

  In Building BI, a role-based grouping of dashboards, similar to a folder. A dashboard must belong to a published collection before most users can see it. One dashboard can belong to multiple collections without duplication. See [Collections](/products/building-bi/collections).

  In Integrations, collection means gathering sensor or non-sensor data from a connector after devices and points are registered. See [Data collection](/products/integrations/capabilities/data-collection).

  ### Collection mode

  <div className="glossary-badges" data-products="Integrations" data-term="Collection mode">
    <span className="glossary-badge">Integrations</span>
  </div>

  How Cloud BMS interprets data returned by an integration entity. Modes are Snapshot (current state each cycle), Delta (only changes since the last cycle), and Historical (a bulk log of past values). Vendor pages list the mode in the Overview property table. See [Data collection](/products/integrations/capabilities/data-collection).

  ### Collection template

  <div className="glossary-badges" data-products="Building BI" data-term="Collection template">
    <span className="glossary-badge">Building BI</span>
  </div>

  A reusable Building BI template that captures an entire collection, including its dashboards and data-source dependencies. See [Templates](/products/building-bi/templates).

  ### Connector

  <div className="glossary-badges" data-products="Integrations" data-term="Connector">
    <span className="glossary-badge">Integrations</span>
  </div>

  The configured connection from Cloud BMS to one external system. Connectors live on the `Data Sources` page. You add one from the API Catalog, enter credentials, enable entities, and set polling where needed. Older UI labels may say datasource; prefer connector in documentation. See [Managing connectors](/products/integrations/get-started/managing-connectors) and [Quickstart](/products/integrations/get-started/quickstart).

  ### Color palette

  <div className="glossary-badges" data-products="Building BI" data-term="Color palette">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, an organization-defined set of complementary colors managed in Settings and applied to categorical chart series.

  ### Color scheme

  <div className="glossary-badges" data-products="Building BI" data-term="Color scheme">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, a KODE Labs-designed set of complementary colors for categorical chart values. Unlike a color palette, schemes are predefined by KODE rather than managed by the organization in Settings.

  ### Column

  <div className="glossary-badges" data-products="Building BI" data-term="Column">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, a field drawn from a data source. A column may be native to the source or calculated. See [Data sources](/products/building-bi/data-sources).

  ### Completion policy

  <div className="glossary-badges" data-products="AssetOps" data-term="Completion policy">
    <span className="glossary-badge">AssetOps</span>
  </div>

  In AssetOps, a rule that must be satisfied before a work order can move to For review or Complete—for example all tasks Done or N/A, time logged, or notes on non-compliance. See [Completion policies](/products/assetops/quickstart/settings-completion-policies).

  ### Completion SLA

  <div className="glossary-badges" data-products="AssetOps" data-term="Completion SLA">
    <span className="glossary-badge">AssetOps</span>
  </div>

  In AssetOps, the time target on a priority level for finishing a work order after it is created. See [Priority and SLA](/products/assetops/portfolio/priority-sla).

  ### Confidence band

  <div className="glossary-badges" data-products="Building BI" data-term="Confidence band">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, a shaded uncertainty range drawn around a line-chart series, defined by lower and upper boundary fields.

  ### Configuration

  <div className="glossary-badges" data-products="FDD" data-term="Configuration">
    <span className="glossary-badge">FDD</span>
  </div>

  FDD settings for events, notifications, and incident priorities. See [FDD configuration](/products/fdd/configuration).

  ### Conservation measure

  <div className="glossary-badges" data-products="EnerG" data-term="Conservation measure">
    <span className="glossary-badge">EnerG</span>
  </div>

  In EnerG Capital Planning, an individual energy or resource conservation project with savings, capital cost, and related inputs. Measures can be bundled into scenarios. See [Capital planning](/products/energ/sustainability/capital-planning).

  ### Corrective maintenance

  <div className="glossary-badges" data-products="AssetOps" data-term="Corrective maintenance">
    <span className="glossary-badge">AssetOps</span>
  </div>

  In AssetOps, maintenance that fixes faulty or non-functioning assets. It is typically tracked with generic work orders. See [Work orders](/products/assetops/quickstart/work-orders).

  ### Critical

  <div className="glossary-badges" data-products="FDD" data-term="Critical">
    <span className="glossary-badge">FDD</span>
  </div>

  An alarm priority for the highest urgency. See [Events](/products/fdd/events).

  ### Cross-filter

  <div className="glossary-badges" data-products="Building BI" data-term="Cross-filter">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, a temporary filter created by clicking a chart segment. The selection applies to other widgets on the page within the filter's scope. See [How filtering works](/products/building-bi/concepts/how-filtering-works).

  ### Custom view

  <div className="glossary-badges" data-products="Building BI" data-term="Custom view">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI Deployment Manager, a site-local editable copy of a deployed dashboard. Custom views stop receiving predefined auto-sync updates. See [Deployment manager](/products/building-bi/deployment-manager#predefined-and-custom-views).

  ## D

  ### Dashboard filter

  <div className="glossary-badges" data-products="Building BI" data-term="Dashboard filter">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, a filter that affects the entire dashboard at once. You can allow users to change the filter while viewing. See [Filter options](/products/building-bi/reference/filter-options).

  ### Dashboard template

  <div className="glossary-badges" data-products="Building BI" data-term="Dashboard template">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, a reusable template that captures an entire single dashboard. It is the usual starting point when applying a full dashboard layout elsewhere. See [Templates](/products/building-bi/templates).

  ### Dashboard view

  <div className="glossary-badges" data-products="Building BI|Cloud BMS" data-term="Dashboard view">
    <span className="glossary-badge">Building BI</span><span className="glossary-badge">Cloud BMS</span>
  </div>

  A visual overview of system points presented on charts. See [Systems](/products/kode-os/systems) and [Building BI dashboards](/products/building-bi/dashboards).

  ### Dashboards

  <div className="glossary-badges" data-products="Building BI|FDD" data-term="Dashboards">
    <span className="glossary-badge">Building BI</span><span className="glossary-badge">FDD</span>
  </div>

  Interfaces that display key metrics, visualizations, and performance indicators. In Building BI, a dashboard is a canvas with one or more pages of widgets and charts. Building BI replaces the legacy Cloud BMS `Dashboard` module. See [Building BI dashboards](/products/building-bi/dashboards) and [FDD dashboards](/products/fdd/dashboards).

  ### Data bar

  <div className="glossary-badges" data-products="Building BI" data-term="Data bar">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, an in-cell horizontal bar in a table that shows the magnitude of a numeric value. On a pivot table, bars appear only at the lowest hierarchy level.

  ### Data capture rate

  <div className="glossary-badges" data-products="EnerG" data-term="Data capture rate">
    <span className="glossary-badge">EnerG</span>
  </div>

  In EnerG waste analytics, how completely reported waste covers the streams you expect to track. See [Waste dashboards](/products/energ/analytics/portfolio-dashboards-waste).

  ### Data completeness

  <div className="glossary-badges" data-products="EnerG" data-term="Data completeness">
    <span className="glossary-badge">EnerG</span>
  </div>

  In EnerG, a 0–100% score of billed coverage from each meter's service start through today. Missing bills, gaps, or overlaps lower the score. See [Data completeness](/products/energ/data-quality/data-completeness).

  ### Data refresh interval

  <div className="glossary-badges" data-products="Building BI" data-term="Data refresh interval">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, a per-chart setup setting that controls how often that widget queries for new data.

  ### Data source

  <div className="glossary-badges" data-products="Building BI|EnerG|Integrations|Cloud BMS" data-term="Data source">
    <span className="glossary-badge">Building BI</span><span className="glossary-badge">EnerG</span><span className="glossary-badge">Integrations</span><span className="glossary-badge">Cloud BMS</span>
  </div>

  In Cloud BMS integrations, a data source is the configured connection to an external system. The preferred term is connector. In the product UI, connectors appear on the `Data Sources` page. See [Managing connectors](/products/integrations/get-started/managing-connectors) and [Data sources](/products/kode-os/data-sources).

  In [Building BI](/products/building-bi/data-sources), a data source is a dataset—table or view—that charts draw from. It is the origin of columns, metrics, and calculations, and is separate from Cloud BMS integration connectors.

  In EnerG, a data source is any path that brings utility or meter data into the product, such as Arcadia, CSV, manual entry, or KODE OS interval meters. See [Portfolio data sources](/products/energ/analytics/portfolio-data-sources).

  ### Deficiency

  <div className="glossary-badges" data-products="AssetOps" data-term="Deficiency">
    <span className="glossary-badge">AssetOps</span>
  </div>

  In AssetOps, an inspection finding or linked deficiency recorded against a work order when applicable. See [Work orders](/products/assetops/work-orders/work-orders-overview).

  ### Deployment audit

  <div className="glossary-badges" data-products="FTT" data-term="Deployment audit">
    <span className="glossary-badge">FTT</span>
  </div>

  A review of integration or FTT deployment progress across all buildings, with status insights and remaining tasks. See [FTT deployment](/products/ftt/deployment).

  ### Deployment manager

  <div className="glossary-badges" data-products="Building BI" data-term="Deployment manager">
    <span className="glossary-badge">Building BI</span>
  </div>

  A portfolio-only Building BI tool that deploys a dashboard or collection to many buildings and manages sync of predefined copies. See [Deployment manager](/products/building-bi/deployment-manager).

  ### Device

  <div className="glossary-badges" data-products="Devices" data-term="Device">
    <span className="glossary-badge">Devices</span>
  </div>

  An intelligent component of a building system that controls a function for one or more areas (for example, an AHU or VAV). See [Devices](/products/kode-os/devices/devices).

  ### Device types

  <div className="glossary-badges" data-products="Devices" data-term="Device types">
    <span className="glossary-badge">Devices</span>
  </div>

  Categories of devices integrated to manage and monitor building systems. See [Devices](/products/kode-os/devices/devices) and [Device templates](/products/kode-os/devices/device-templates).

  ### Dimension

  <div className="glossary-badges" data-products="Building BI" data-term="Dimension">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, a column used to categorize or group data on a chart, such as on the X-axis.

  ### Delta

  <div className="glossary-badges" data-products="Integrations" data-term="Delta">
    <span className="glossary-badge">Integrations</span>
  </div>

  In Integrations, a collection mode that stores only value changes since the last collection cycle. Delta reduces data volume for controllers that report change-of-value updates. See [Collection mode](#collection-mode) and [Data collection](/products/integrations/capabilities/data-collection).

  ### Discover schedules

  <div className="glossary-badges" data-products="Integrations|Cloud BMS" data-term="Discover schedules">
    <span className="glossary-badge">Integrations</span><span className="glossary-badge">Cloud BMS</span>
  </div>

  Identifying schedules for connected devices so you can create, modify, and synchronize them between Cloud BMS and the source system. See [Schedules](/products/kode-os/schedules) and [Schedules (Integrations)](/products/integrations/capabilities/schedules).

  ### Discovery

  <div className="glossary-badges" data-products="Integrations|Cloud BMS" data-term="Discovery">
    <span className="glossary-badge">Integrations</span><span className="glossary-badge">Cloud BMS</span>
  </div>

  The process of finding equipment from a data source or connector and importing its entities into Cloud BMS. See [Device discovery](/products/kode-os/device-discovery).

  In Integrations, discovery is a user-initiated query against a connector that lists devices, points, schedules, and assets for registration. Not every integration supports discovery. Webhook-only and MQTT integrations often skip it. See [Discovery](/products/integrations/capabilities/discovery).

  ### Discrepancy report

  <div className="glossary-badges" data-products="AssetOps" data-term="Discrepancy report">
    <span className="glossary-badge">AssetOps</span>
  </div>

  In AssetOps, a building-level comparison of two asset data sources to find missing assets and field mismatches after discovery or integration. See [Discrepancy reports](/products/assetops/assets/discrepancy-reports).

  ### Diversion rate

  <div className="glossary-badges" data-products="EnerG" data-term="Diversion rate">
    <span className="glossary-badge">EnerG</span>
  </div>

  In EnerG, the percentage of total waste routed away from landfill (diverted waste divided by total waste). See [Waste dashboards](/products/energ/analytics/portfolio-dashboards-waste).

  ### Down device

  <div className="glossary-badges" data-products="Devices" data-term="Down device">
    <span className="glossary-badge">Devices</span>
  </div>

  A device that is offline or unable to communicate with the service. See [Devices](/products/kode-os/devices/devices).

  ### Draft

  <div className="glossary-badges" data-products="Building BI" data-term="Draft">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, a private, editable version of a dashboard that viewers do not see until you publish. See [Dashboards](/products/building-bi/dashboards).

  ### Drill-down

  <div className="glossary-badges" data-products="Building BI" data-term="Drill-down">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, stepping into more granular layers within one chart by expanding a configured hierarchy. The same widget shows more detail.

  ## E

  ### Dynamic API

  <div className="glossary-badges" data-products="Integrations" data-term="Dynamic API">
    <span className="glossary-badge">Integrations</span>
  </div>

  An integration pattern where the external system does not expose a fixed list of device and point types. Objects appear at runtime during discovery. Niagara and many BACnet servers behave this way. After discovery, you often map each object to ontology manually in Cloud BMS. See [What are Integrations?](/products/integrations/get-started/introduction).

  ### Emission factor

  <div className="glossary-badges" data-products="EnerG" data-term="Emission factor">
    <span className="glossary-badge">EnerG</span>
  </div>

  In EnerG, a factor in the Emissions Factor Library that drives carbon calculations, including methodology, GHG scope, service type, and geography or grid. Active factors apply to reports. See [Emission factors](/products/energ/analytics/portfolio-emissions-emission-factors).

  ### EnerG

  <div className="glossary-badges" data-products="EnerG" data-term="EnerG">
    <span className="glossary-badge">EnerG</span>
  </div>

  The KODE Labs energy and sustainability module for centralizing utility data, benchmarking buildings, and connecting targets, capital planning, and finance reporting. See [EnerG introduction](/products/energ/get-started/introduction).

  ### Energy Use Intensity (EUI)

  <div className="glossary-badges" data-products="EnerG" data-term="Energy Use Intensity (EUI)">
    <span className="glossary-badge">EnerG</span>
  </div>

  In EnerG, annual energy divided by conditioned floor area. EUI is the primary energy benchmark across buildings. See [Benchmarking](/products/energ/analytics/benchmarking).

  ### Entity (integrations)

  <div className="glossary-badges" data-products="Integrations" data-term="Entity (integrations)">
    <span className="glossary-badge">Integrations</span>
  </div>

  A category of data a connector can collect or manage. Common entities include Point History, Alarm, Audit Log, Work Order, Booking, EV Charging, and Schedule Sync. During connector setup, entity enablement toggles which entities the connector collects. See [Managing connectors](/products/integrations/get-started/managing-connectors) and [Data collection](/products/integrations/capabilities/data-collection).

  ### Event

  <div className="glossary-badges" data-products="FDD" data-term="Event">
    <span className="glossary-badge">FDD</span>
  </div>

  A device-reported occurrence for attention or resolution by building management. See [Events](/products/fdd/events).

  ### Event class

  <div className="glossary-badges" data-products="FDD" data-term="Event class">
    <span className="glossary-badge">FDD</span>
  </div>

  Categories that group notification and monitoring configuration for event types such as communication, HVAC, fire, or generator. See [FDD configuration](/products/fdd/configuration).

  ### Export

  <div className="glossary-badges" data-products="Building BI|Cloud BMS" data-term="Export">
    <span className="glossary-badge">Building BI</span><span className="glossary-badge">Cloud BMS</span>
  </div>

  In Trends, retrieving device history data in CSV format for analysis or sharing, based on time intervals and aggregation. See [Trends](/products/kode-os/trends).

  In Building BI, export PDF captures of dashboards, pages, or widgets. For table-like widgets, export to CSV for analysis.

  ### External communication

  <div className="glossary-badges" data-products="AssetOps|FDD|Cloud BMS" data-term="External communication">
    <span className="glossary-badge">AssetOps</span><span className="glossary-badge">FDD</span><span className="glossary-badge">Cloud BMS</span>
  </div>

  Configuring and sending automated work orders to a CMMS when alarms trigger in Cloud BMS. See [FDD work orders](/products/fdd/work-orders) and [AssetOps work orders](/products/kode-os/assetops/work-orders).

  ## F

  ### Fault Detection and Diagnostics (FDD)

  <div className="glossary-badges" data-products="FDD" data-term="Fault Detection and Diagnostics (FDD)">
    <span className="glossary-badge">FDD</span>
  </div>

  A method for identifying device conditions from broader analysis rather than simple instantaneous alarms. See [FDD overview](/products/fdd/overview).

  ### Favorites

  <div className="glossary-badges" data-products="Building BI" data-term="Favorites">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, a left-navigation section that lists dashboards or collections the user has starred. A favorite stays in the main list as well.

  ### Field permissions

  <div className="glossary-badges" data-products="AssetOps" data-term="Field permissions">
    <span className="glossary-badge">AssetOps</span>
  </div>

  In AssetOps, portfolio settings that lock or restrict editing of work order fields by work type, status, or time. See [Field permissions](/products/assetops/quickstart/settings-field-permissions).

  ### Files

  <div className="glossary-badges" data-products="Documents|Graphics" data-term="Files">
    <span className="glossary-badge">Documents</span><span className="glossary-badge">Graphics</span>
  </div>

  Uploaded documents—typically floor plans or device and system files—used in Graphics to create custom visuals. See [Graphics](/products/kode-os/graphics/graphic-tool) and [Documents](/products/kode-os/documents/overview).

  ### Filter scope

  <div className="glossary-badges" data-products="Building BI" data-term="Filter scope">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, the set of widgets and filters a given filter, slicer, or cross-filter influences. Use scopes to exclude items so not everything on the page is affected.

  ### Fleet emissions

  <div className="glossary-badges" data-products="EnerG" data-term="Fleet emissions">
    <span className="glossary-badge">EnerG</span>
  </div>

  In EnerG, company vehicle fuel and distance activity for Scope 1 mobile combustion reporting. See [Fleet emissions](/products/energ/analytics/portfolio-emissions-fleet-emissions).

  ### Focus mode

  <div className="glossary-badges" data-products="AssetOps" data-term="Focus mode">
    <span className="glossary-badge">AssetOps</span>
  </div>

  In AssetOps, a work order list preset that shows only urgent items: SLA breached, SLA or timing warnings, and high priority. See [Work orders](/products/assetops/work-orders/work-orders-overview).

  ### Follow-up work order

  <div className="glossary-badges" data-products="AssetOps" data-term="Follow-up work order">
    <span className="glossary-badge">AssetOps</span>
  </div>

  In AssetOps, a child work order created from a parent to continue work. Completion policies can require one when a task needs further action. See [Work orders](/products/assetops/work-orders/work-orders-overview).

  ### Forecasting

  <div className="glossary-badges" data-products="EnerG" data-term="Forecasting">
    <span className="glossary-badge">EnerG</span>
  </div>

  In EnerG, projecting future or near-term energy consumption from trained models and interval history, often using weather drivers. See [Forecasting](/products/energ/energy-modeling/forecasting).

  ### Fugitive emissions

  <div className="glossary-badges" data-products="EnerG" data-term="Fugitive emissions">
    <span className="glossary-badge">EnerG</span>
  </div>

  In EnerG, refrigeration and air-conditioning refrigerant loss tracked for Scope 1 fugitive reporting. See [Fugitive emissions](/products/energ/analytics/portfolio-emissions-fugitive-emissions).

  ### Functional Testing Tool (FTT)

  <div className="glossary-badges" data-products="FTT" data-term="Functional Testing Tool (FTT)">
    <span className="glossary-badge">FTT</span>
  </div>

  Automates inspection and verification of building equipment for continuous commissioning and remote validation. See [FTT overview](/products/ftt/overview).

  ## G

  ### Generic work order

  <div className="glossary-badges" data-products="AssetOps" data-term="Generic work order">
    <span className="glossary-badge">AssetOps</span>
  </div>

  In AssetOps, the work order type used for corrective maintenance that is not generated from a schedule. See [Work orders](/products/assetops/quickstart/work-orders).

  ### Global template

  <div className="glossary-badges" data-products="Building BI" data-term="Global template">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, a KODE Labs-curated template visible to every workspace and read-only to organization admins. See [Templates](/products/building-bi/templates#global-templates).

  ### Global warming potential (GWP)

  <div className="glossary-badges" data-products="EnerG" data-term="Global warming potential (GWP)">
    <span className="glossary-badge">EnerG</span>
  </div>

  In EnerG, the multiplier for a refrigerant used with quantity lost to calculate CO₂e for a fugitive event. See [Fugitive emissions](/products/energ/analytics/portfolio-emissions-fugitive-emissions).

  ### Graphics

  <div className="glossary-badges" data-products="Graphics" data-term="Graphics">
    <span className="glossary-badge">Graphics</span>
  </div>

  The Cloud BMS tool for creating and customizing system graphics, device graphics, and floor plans, including Smart Markers and zone drawing. See [Graphic tool](/products/kode-os/graphics/graphic-tool), [Floor plans](/products/kode-os/graphics/floor-plans), [System graphics](/products/kode-os/graphics/system-graphics), and [Device graphics](/products/kode-os/graphics/device-graphics).

  ## H

  ### Heating and cooling degree days

  <div className="glossary-badges" data-products="EnerG" data-term="Heating and cooling degree days">
    <span className="glossary-badge">EnerG</span>
  </div>

  In EnerG, a measure of how much outdoor weather departs from configured base temperatures each day. Higher values indicate greater heating or cooling demand. See [Building information](/products/energ/buildings/building-information).

  ### Historical

  <div className="glossary-badges" data-products="Integrations" data-term="Historical">
    <span className="glossary-badge">Integrations</span>
  </div>

  In Integrations, a collection mode that ingests a complete log of past values over a time range from the external system. Use it for backfill, energy meter history, and some audit logs. See [Collection mode](#collection-mode) and [Data collection](/products/integrations/capabilities/data-collection).

  ### History

  <div className="glossary-badges" data-products="Cloud BMS" data-term="History">
    <span className="glossary-badge">Cloud BMS</span>
  </div>

  A chronological record of a device's past performance metrics, such as temperature trends. See [Trends](/products/kode-os/trends).

  ### History logs

  <div className="glossary-badges" data-products="Cloud BMS" data-term="History logs">
    <span className="glossary-badge">Cloud BMS</span>
  </div>

  Previous versions of schedules saved in Cloud BMS that you can view, manage, and restore. See [Schedules](/products/kode-os/schedules).

  ### Hourly Aggregated

  <div className="glossary-badges" data-products="Building BI" data-term="Hourly Aggregated">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, a reduced-frequency Point Time Series polling structure that returns aggregated values for each point for each hour.

  ## I

  ### Icons

  <div className="glossary-badges" data-products="Graphics" data-term="Icons">
    <span className="glossary-badge">Graphics</span>
  </div>

  Visual symbols for device types or values on a system graphic or floor plan. See [Floor plans](/products/kode-os/graphics/floor-plans).

  ### Idle timeout

  <div className="glossary-badges" data-products="Launchpad" data-term="Idle timeout">
    <span className="glossary-badge">Launchpad</span>
  </div>

  The period of user inactivity after which the system logs the user out. See [Security settings](/products/launchpad/get-started/security-settings).

  ### Incidents

  <div className="glossary-badges" data-products="FDD" data-term="Incidents">
    <span className="glossary-badge">FDD</span>
  </div>

  A recorded issue with an incident ID, associated with buildings and routines, managed in sortable tables and detail views. See [Faults](/products/fdd/faults) and [Events](/products/fdd/events).

  ### Inspection

  <div className="glossary-badges" data-products="AssetOps" data-term="Inspection">
    <span className="glossary-badge">AssetOps</span>
  </div>

  In AssetOps, a proactive maintenance type for assessing condition or compliance. Inspections are delivered through scheduled work orders, with subtypes for Assets, Area, or General. See [Work orders](/products/assetops/quickstart/work-orders).

  ### Interval meter

  <div className="glossary-badges" data-products="EnerG" data-term="Interval meter">
    <span className="glossary-badge">EnerG</span>
  </div>

  In EnerG, a meter that records high-frequency usage such as hourly or 15-minute reads for granular charts, forecasting, and Option B M\&V. Distinct from monthly utility bill meters. See [Meters](/products/energ/buildings/meters).

  ### IPMVP

  <div className="glossary-badges" data-products="EnerG" data-term="IPMVP">
    <span className="glossary-badge">EnerG</span>
  </div>

  International Performance Measurement and Verification Protocol. EnerG aligns with IPMVP approaches for quantifying energy savings and supports Option B and Option C. See [Energy modeling](/products/energ/concepts/energy-modeling).

  ### IPMVP Option B

  <div className="glossary-badges" data-products="EnerG" data-term="IPMVP Option B">
    <span className="glossary-badge">EnerG</span>
  </div>

  In EnerG, an M\&V path that models savings at the meter or system level when metering isolation is strong. See [Energy modeling](/products/energ/concepts/energy-modeling).

  ### IPMVP Option C

  <div className="glossary-badges" data-products="EnerG" data-term="IPMVP Option C">
    <span className="glossary-badge">EnerG</span>
  </div>

  In EnerG, an M\&V path that analyzes whole-building energy use when boundary-level billing data represents performance. See [Energy modeling](/products/energ/concepts/energy-modeling).

  ### Issue type

  <div className="glossary-badges" data-products="AssetOps" data-term="Issue type">
    <span className="glossary-badge">AssetOps</span>
  </div>

  In AssetOps, a specific problem or task under a category that drives building routing. See [Categories](/products/assetops/resources/categories).

  ## K

  ### KODE OS data source

  <div className="glossary-badges" data-products="EnerG" data-term="KODE OS data source">
    <span className="glossary-badge">EnerG</span>
  </div>

  In EnerG, the connector that pulls mapped KODE OS interval points for Interval Trends, M\&V, and forecasting. See [KODE OS data source](/products/energ/data-sources/kode-os-data-source).

  ## L

  ### Last value

  <div className="glossary-badges" data-products="Building BI" data-term="Last value">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, a virtual Point Time Series source that returns only the most recent reading per sensor. Use it for current-state views across misaligned poll times.

  ### Layers

  <div className="glossary-badges" data-products="Graphics" data-term="Layers">
    <span className="glossary-badge">Graphics</span>
  </div>

  Floor-plan layers that filter views by device or sensor type. See [Floor plans](/products/kode-os/graphics/floor-plans).

  ### Lead member

  <div className="glossary-badges" data-products="AssetOps" data-term="Lead member">
    <span className="glossary-badge">AssetOps</span>
  </div>

  In AssetOps, the team member designated as the team lead who coordinates work for that building team. See [Teams](/products/assetops/resources/teams).

  ### Legend

  <div className="glossary-badges" data-products="Graphics" data-term="Legend">
    <span className="glossary-badge">Graphics</span>
  </div>

  Controls that show or hide the icon legend on a floor-plan widget. See [Floor plans](/products/kode-os/graphics/floor-plans).

  ### Lockout settings

  <div className="glossary-badges" data-products="Launchpad" data-term="Lockout settings">
    <span className="glossary-badge">Launchpad</span>
  </div>

  Temporarily restrict account access after a set number of failed login attempts, including retry count and lockout duration. See [Security settings](/products/launchpad/get-started/security-settings).

  ### Logged time

  <div className="glossary-badges" data-products="AssetOps" data-term="Logged time">
    <span className="glossary-badge">AssetOps</span>
  </div>

  In AssetOps, hours recorded against a work order for labor tracking. Completion policies can require logged time. See [Work orders](/products/assetops/work-orders/work-orders-overview).

  ## M

  ### Marked area

  <div className="glossary-badges" data-products="Building BI" data-term="Marked area">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, a shaded background zone on a chart that highlights an axis range, such as an acceptable operating band or fault threshold.

  ### Marker icons

  <div className="glossary-badges" data-products="Graphics" data-term="Marker icons">
    <span className="glossary-badge">Graphics</span>
  </div>

  The visual representation and styling of markers on floor plans. See [Floor plans](/products/kode-os/graphics/floor-plans).

  ### Markers

  <div className="glossary-badges" data-products="Graphics" data-term="Markers">
    <span className="glossary-badge">Graphics</span>
  </div>

  Customizable visual elements on floor plans (size, color, text, style) that represent points and devices. See [Floor plans](/products/kode-os/graphics/floor-plans).

  ### Measurement and verification (M\&V)

  <div className="glossary-badges" data-products="EnerG" data-term="Measurement and verification (M&V)">
    <span className="glossary-badge">EnerG</span>
  </div>

  In EnerG, confirming that savings from energy projects are real using agreed methods and data. EnerG trains models that estimate adjusted baseline use and support savings calculations. See [M\&V models](/products/energ/energy-modeling/mv-models).

  ### Meter

  <div className="glossary-badges" data-products="EnerG" data-term="Meter">
    <span className="glossary-badge">EnerG</span>
  </div>

  In EnerG, a tracked device or account boundary—whole-site or below the whole-site boundary—with service start and end dates that control which bills count. Types include utility, interval, or both. See [Meters](/products/energ/buildings/meters).

  ### Meter comparison

  <div className="glossary-badges" data-products="EnerG" data-term="Meter comparison">
    <span className="glossary-badge">EnerG</span>
  </div>

  In EnerG, a data-quality check that compares utility bill meters to interval meter readings for the same service type and flags deviation beyond a threshold. See [Meter comparisons](/products/energ/data-quality/meter-comparisons).

  ### Metric

  <div className="glossary-badges" data-products="Building BI" data-term="Metric">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, a pre-aggregated value such as SUM, AVG, or COUNT available from a data source for charts. See [Data sources](/products/building-bi/data-sources).

  ### Metric filter

  <div className="glossary-badges" data-products="Building BI" data-term="Metric filter">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, a filter based on an aggregation result—for example, only devices where the sum of alarms is greater than 10. See [Filter options](/products/building-bi/reference/filter-options).

  ### MFA

  <div className="glossary-badges" data-products="Launchpad" data-term="MFA">
    <span className="glossary-badge">Launchpad</span>
  </div>

  Multi-factor authentication requires a second factor, such as an authenticator app or SMS code, in addition to a password. See [Security settings](/products/launchpad/get-started/security-settings).

  ### Modbus

  <div className="glossary-badges" data-products="Integrations" data-term="Modbus">
    <span className="glossary-badge">Integrations</span>
  </div>

  A common industrial and building automation protocol for reading and writing registers on meters, controllers, and other field devices. Modbus can run over serial links (RS-485) or TCP/IP. See [What are Integrations?](/products/integrations/get-started/introduction).

  ### MQTT

  <div className="glossary-badges" data-products="Integrations" data-term="MQTT">
    <span className="glossary-badge">Integrations</span>
  </div>

  MQTT stands for Message Queuing Telemetry Transport. It is a lightweight publish/subscribe messaging protocol designed for constrained devices and low-bandwidth networks. Devices publish messages to topics on an MQTT broker. KODE OS subscribes to those topics and processes readings as they arrive, instead of polling on a timer.

  Key ideas: the broker routes messages; a topic is a hierarchical path such as `building/floor1/sensor/temperature`; QoS (Quality of Service) controls delivery guarantees (0 at most once, 1 at least once, 2 exactly once). See [MQTT integrations](/products/integrations/capabilities/mqtt).

  ### Mobile layout

  <div className="glossary-badges" data-products="Building BI" data-term="Mobile layout">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, a mobile-specific dashboard view for reorganizing and resizing widgets on small screens.

  ### My Dashboards

  <div className="glossary-badges" data-products="Building BI" data-term="My Dashboards">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, the private list of dashboards the current user can edit. Access is user-based, not role-based, and this list is not publishable as a collection. See [Collections](/products/building-bi/collections#my-dashboards).

  ## N

  ### Navigation widget

  <div className="glossary-badges" data-products="Building BI" data-term="Navigation widget">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, a button widget that jumps the viewer to another page in the same dashboard. It does not carry filter context the way drill-through does.

  ### Notes

  <div className="glossary-badges" data-products="Documents" data-term="Notes">
    <span className="glossary-badge">Documents</span>
  </div>

  Photos, documents, and written observations related to systems and device configurations. See [Documents](/products/kode-os/documents/overview).

  ### Non-sensor data

  <div className="glossary-badges" data-products="Integrations" data-term="Non-sensor data">
    <span className="glossary-badge">Integrations</span>
  </div>

  In Integrations, structured building data that is not generated by a physical sensor. Examples include alarms, audit logs, work orders, bookings, and EV charging sessions. Contrast with sensor data and Point History. See [Data collection](/products/integrations/capabilities/data-collection).

  ### Notifications

  <div className="glossary-badges" data-products="FDD" data-term="Notifications">
    <span className="glossary-badge">FDD</span>
  </div>

  Timely messages to designated recipients based on rules and preferences during events. See [Notification policies](/products/fdd/notification-policies).

  ## O

  ### Ontology

  <div className="glossary-badges" data-products="Devices|Integrations" data-term="Ontology">
    <span className="glossary-badge">Devices</span><span className="glossary-badge">Integrations</span>
  </div>

  A structured framework that standardizes how buildings, devices, and equipment are represented by operations and function. See [Device templates](/products/kode-os/devices/device-templates).

  In Integrations, ontology maps vendor-specific device and point names to Cloud BMS standard types after discovery. Different vendors may call the same sensor `temp_sensor`, `temperature probe`, or `TS01`. Ontology lets you operate on a Temperature Sensor with a Temperature point regardless of the source name. You usually finish mapping in Cloud BMS. See [What are Integrations?](/products/integrations/get-started/introduction).

  ### Optimized Start Stop (OSS)

  <div className="glossary-badges" data-products="OSS" data-term="Optimized Start Stop (OSS)">
    <span className="glossary-badge">OSS</span>
  </div>

  Starts equipment just in time so zones meet heating and cooling setpoints at the right moment, using adaptive machine learning per building. See [OSS](/products/kode-os/oss).

  ### Organization template

  <div className="glossary-badges" data-products="Building BI" data-term="Organization template">
    <span className="glossary-badge">Building BI</span>
  </div>

  A Building BI template owned by one organization. Admins (or users with Manage Templates) can edit it, and it is visible only inside that organization. See [Templates](/products/building-bi/templates#organization-templates).

  ### Owner

  <div className="glossary-badges" data-products="Building BI" data-term="Owner">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, the user who created a dashboard. Some actions, such as changing allowed IP addresses on a shared link, require dashboard ownership. See [Dashboards](/products/building-bi/dashboards).

  ## P

  ### Page

  <div className="glossary-badges" data-products="Building BI" data-term="Page">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, a tab within a dashboard that holds its own widgets and queries. Splitting analytics across pages can improve load performance. See [Dashboards](/products/building-bi/dashboards).

  ### Page filter

  <div className="glossary-badges" data-products="Building BI" data-term="Page filter">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, a filter that affects an entire dashboard page at once. You can allow users to change the filter while viewing. See [Filter options](/products/building-bi/reference/filter-options).

  ### Page template

  <div className="glossary-badges" data-products="Building BI" data-term="Page template">
    <span className="glossary-badge">Building BI</span>
  </div>

  A reusable Building BI template of a single dashboard page, including charts and layout. Applying it inserts a new page. See [Templates](/products/building-bi/templates).

  ### Parameters

  <div className="glossary-badges" data-products="FTT" data-term="Parameters">
    <span className="glossary-badge">FTT</span>
  </div>

  In FTT, customizable workflow settings you can adjust without editing the workflow logic itself. See [Workflows](/products/ftt/workflows).

  ### Password settings

  <div className="glossary-badges" data-products="Launchpad" data-term="Password settings">
    <span className="glossary-badge">Launchpad</span>
  </div>

  Settings such as complexity, expiry, password history, and related session controls. See [Security settings](/products/launchpad/get-started/security-settings).

  ### PDF export

  <div className="glossary-badges" data-products="Building BI" data-term="PDF export">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, a one-time snapshot of selected dashboard pages as a PDF file.

  ### Physical data source

  <div className="glossary-badges" data-products="Building BI" data-term="Physical data source">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, a materialized table from the KODE backend or a metric pipeline. Rows already exist in storage. See [Physical vs virtual data sources](/products/building-bi/concepts/physical-vs-virtual-data-sources).

  ### Pivot table

  <div className="glossary-badges" data-products="Building BI" data-term="Pivot table">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, a table widget that groups by a hierarchy on rows and spreads another dimension's values across columns, with an aggregated value in each cell.

  ### Placement

  <div className="glossary-badges" data-products="Graphics" data-term="Placement">
    <span className="glossary-badge">Graphics</span>
  </div>

  Positioning equipment in locations on a building floor plan. See [Floor plans](/products/kode-os/graphics/floor-plans).

  ### Point

  <div className="glossary-badges" data-products="Smart Building" data-term="Point">
    <span className="glossary-badge">Smart Building</span>
  </div>

  A read or write function within a device, such as a temperature setpoint, current temperature, or on/off state. See [Points](/products/kode-os/points/points).

  ### Point history

  <div className="glossary-badges" data-products="Integrations" data-term="Point history">
    <span className="glossary-badge">Integrations</span>
  </div>

  In Integrations, the entity that stores time-series sensor readings collected from device points. Point History is the usual sensor-data entity on a connector. See [Data collection](/products/integrations/capabilities/data-collection).

  ### Point kind

  <div className="glossary-badges" data-products="Points" data-term="Point kind">
    <span className="glossary-badge">Points</span>
  </div>

  The data type a point represents—number, true/false, string, or similar. See [Points](/products/kode-os/points/points).

  ### Point Time Series

  <div className="glossary-badges" data-products="Building BI" data-term="Point Time Series">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, the flattened sensor-reading model—one row per point per timestamp—carrying building, area, device, and point context on each row.

  ### Point trends

  <div className="glossary-badges" data-products="Cloud BMS" data-term="Point trends">
    <span className="glossary-badge">Cloud BMS</span>
  </div>

  An interface in device details that organizes point data with trend visualizations. See [Trends](/products/kode-os/trends).

  ### Polling

  <div className="glossary-badges" data-products="Integrations" data-term="Polling">
    <span className="glossary-badge">Integrations</span>
  </div>

  Scheduled pull collection. KODE OS connects to the external system at a configured interval and requests the latest data for each enabled entity. Polling intervals have default, minimum, and maximum values per integration. Contrast with real-time push methods such as webhooks and MQTT. See [Data collection](/products/integrations/capabilities/data-collection).

  ### Policies

  <div className="glossary-badges" data-products="FDD" data-term="Policies">
    <span className="glossary-badge">FDD</span>
  </div>

  FDD notification preferences including methods, message content, recipients, and escalation. See [Notification policies](/products/fdd/notification-policies).

  ### Portfolio level

  <div className="glossary-badges" data-products="AssetOps|Building BI" data-term="Portfolio level">
    <span className="glossary-badge">AssetOps</span><span className="glossary-badge">Building BI</span>
  </div>

  A product scope across every building in the portfolio.

  In Building BI, use it for cross-building analytics. Deployment Manager appears only at this level. See [Building BI overview](/products/building-bi/overview#portfolio-and-building-scope).

  In AssetOps, portfolio-level work covers shared resources, Priority and SLA, settings, and cross-building monitoring. See [Usage and workflow](/products/assetops/quickstart/usage-workflow).

  ### PostgreSQL

  <div className="glossary-badges" data-products="Building BI" data-term="PostgreSQL">
    <span className="glossary-badge">Building BI</span>
  </div>

  The Building BI database backend used for wide, high-dimension non-sensor data. It supports virtual tables and a different SQL dialect than ClickHouse or BigQuery.

  ### Predefined view

  <div className="glossary-badges" data-products="Building BI" data-term="Predefined view">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI Deployment Manager, the governed, centrally synced copy of a deployed dashboard. It updates when the source publishes. See [Deployment manager](/products/building-bi/deployment-manager#predefined-and-custom-views).

  ### Preventive maintenance

  <div className="glossary-badges" data-products="AssetOps" data-term="Preventive maintenance">
    <span className="glossary-badge">AssetOps</span>
  </div>

  In AssetOps, proactive routine maintenance to prevent failures and keep assets healthy. It is delivered through schedules as scheduled work orders. See [Work orders](/products/assetops/quickstart/work-orders).

  ### Priority

  <div className="glossary-badges" data-products="AssetOps" data-term="Priority">
    <span className="glossary-badge">AssetOps</span>
  </div>

  In AssetOps, a portfolio-configured urgency level for work orders, with optional default, color, and linked SLA targets. See [Priority and SLA](/products/assetops/portfolio/priority-sla).

  ### Projects

  <div className="glossary-badges" data-products="FTT" data-term="Projects">
    <span className="glossary-badge">FTT</span>
  </div>

  An FTT initiative that runs functional testing across multiple floors on a schedule. See [Projects](/products/ftt/projects).

  ### Publish

  <div className="glossary-badges" data-products="Building BI" data-term="Publish">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, the action that pushes the current draft live so viewers and collaborators see the published version. For collections, publish also controls which roles can see the dashboards. See [Dashboards](/products/building-bi/dashboards) and [Collections](/products/building-bi/collections#publish-a-collection).

  ### Push and swap charts

  <div className="glossary-badges" data-products="Building BI" data-term="Push and swap charts">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, a Dashboard Options setting that lets you move widgets by pushing or swapping adjacent widgets instead of overlapping them.

  ## Q

  ### QoS

  <div className="glossary-badges" data-products="Integrations" data-term="QoS">
    <span className="glossary-badge">Integrations</span>
  </div>

  QoS stands for Quality of Service in MQTT. It sets the delivery guarantee for a published message: 0 (at most once), 1 (at least once), or 2 (exactly once). Higher QoS improves reliability and can increase broker load. See [MQTT](#mqtt) and [MQTT integrations](/products/integrations/capabilities/mqtt).

  ## R

  ### Raw table

  <div className="glossary-badges" data-products="Building BI" data-term="Raw table">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, a table widget that shows source data largely unchanged—one row per record—for audit, troubleshooting, or export.

  ### Real-Time

  <div className="glossary-badges" data-products="Building BI" data-term="Real-Time">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, the physical Point Time Series table that stores every reading as its own row. It is the full history and source of truth for trends.

  ### Reference line

  <div className="glossary-badges" data-products="Building BI" data-term="Reference line">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, a static horizontal or vertical line on a chart used to mark a setpoint or threshold.

  ### References

  <div className="glossary-badges" data-products="Devices|Cloud BMS" data-term="References">
    <span className="glossary-badge">Devices</span><span className="glossary-badge">Cloud BMS</span>
  </div>

  Relationships between devices—such as feeds or associations—managed in Cloud BMS. See [Device referencing](/products/kode-os/devices/device-referencing).

  ### Refresh cache

  <div className="glossary-badges" data-products="Devices" data-term="Refresh cache">
    <span className="glossary-badge">Devices</span>
  </div>

  Updates stored connectivity data so devices are reflected accurately as online or offline. See [Devices](/products/kode-os/devices/devices).

  ### Renewable energy certificate (REC)

  <div className="glossary-badges" data-products="EnerG" data-term="Renewable energy certificate (REC)">
    <span className="glossary-badge">EnerG</span>
  </div>

  In EnerG, a volume-based renewable attribute that can be allocated, retired, and shown in emissions overview and offset charts. See [Emissions contracts](/products/energ/analytics/portfolio-emissions-contracts).

  ### Report Builder

  <div className="glossary-badges" data-products="EnerG" data-term="Report Builder">
    <span className="glossary-badge">EnerG</span>
  </div>

  In EnerG, a portfolio tool to create, schedule, and export configurable reports for energy, water, waste, cost, and emissions. See [Reporting](/products/energ/finance/reporting).

  ### Response SLA

  <div className="glossary-badges" data-products="AssetOps" data-term="Response SLA">
    <span className="glossary-badge">AssetOps</span>
  </div>

  In AssetOps, the time target on a priority level to acknowledge and assign a work order. See [Priority and SLA](/products/assetops/portfolio/priority-sla).

  ### Routines

  <div className="glossary-badges" data-products="FDD" data-term="Routines">
    <span className="glossary-badge">FDD</span>
  </div>

  Configurable FDD algorithms that report specific events while respecting set parameters. See [Routines](/products/fdd/routines).

  ### Routing and dispatch

  <div className="glossary-badges" data-products="AssetOps" data-term="Routing and dispatch">
    <span className="glossary-badge">AssetOps</span>
  </div>

  In AssetOps, the building-level mapping of portfolio categories and issue types to a default team and assignee when creating corrective work orders. See [Routing and dispatch](/products/assetops/resources/routing-dispatch).

  ## S

  ### Scenario

  <div className="glossary-badges" data-products="EnerG" data-term="Scenario">
    <span className="glossary-badge">EnerG</span>
  </div>

  In EnerG Capital Planning, a funded package of conservation measures with priority and implementation dates, analyzed for savings on the Capital Planning Roadmap. See [Capital planning](/products/energ/sustainability/capital-planning).

  ### Schedule

  <div className="glossary-badges" data-products="AssetOps|Integrations|Cloud BMS" data-term="Schedule">
    <span className="glossary-badge">AssetOps</span><span className="glossary-badge">Integrations</span><span className="glossary-badge">Cloud BMS</span>
  </div>

  A user-set timeline that defines device behavior over a period. See [Schedules](/products/kode-os/schedules).

  In AssetOps, a schedule is a building-level configuration that generates recurring or on-demand work orders for preventive maintenance or inspections. See [Schedules](/products/assetops/schedules/schedules-overview).

  In Integrations, schedules on a connector can be weekly (recurring by day of week) or calendar (exceptions and one-time events). KODE OS can discover, create, update, delete, and sync schedules when the vendor API supports it. See [Schedules](/products/integrations/capabilities/schedules).

  ### Schedule sync

  <div className="glossary-badges" data-products="Integrations" data-term="Schedule sync">
    <span className="glossary-badge">Integrations</span>
  </div>

  An Integrations entity that keeps schedule state aligned between KODE OS and the external system. Schedule Sync is separate from discovering or editing schedule definitions. See [Schedules](/products/integrations/capabilities/schedules) and [Data collection](/products/integrations/capabilities/data-collection).

  ### Schedule type

  <div className="glossary-badges" data-products="AssetOps" data-term="Schedule type">
    <span className="glossary-badge">AssetOps</span>
  </div>

  In AssetOps, how a schedule runs: Just once, Recurrent, or On demand. See [Schedules](/products/assetops/schedules/schedules-overview).

  ### Scheduled report

  <div className="glossary-badges" data-products="Building BI" data-term="Scheduled report">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, a recurring PDF export of dashboard pages emailed to recipients on a defined schedule.

  ### Scheduled work order

  <div className="glossary-badges" data-products="AssetOps" data-term="Scheduled work order">
    <span className="glossary-badge">AssetOps</span>
  </div>

  In AssetOps, a work order generated from a schedule for preventive maintenance or inspection. See [Work orders](/products/assetops/quickstart/work-orders).

  ### Scope 1 emissions

  <div className="glossary-badges" data-products="EnerG" data-term="Scope 1 emissions">
    <span className="glossary-badge">EnerG</span>
  </div>

  In EnerG, direct greenhouse gas emissions such as on-site natural gas and tracked fleet or fugitive sources. See [Emissions overview](/products/energ/analytics/portfolio-emissions-overview).

  ### Scope 2 emissions

  <div className="glossary-badges" data-products="EnerG" data-term="Scope 2 emissions">
    <span className="glossary-badge">EnerG</span>
  </div>

  In EnerG, indirect emissions from purchased energy such as electricity and district steam, including market-based and location-based totals. See [Emissions overview](/products/energ/analytics/portfolio-emissions-overview).

  ### Sequence

  <div className="glossary-badges" data-products="FTT" data-term="Sequence">
    <span className="glossary-badge">FTT</span>
  </div>

  An FTT process that tests whether a device maintains setpoints under different conditions. See [FTT overview](/products/ftt/overview).

  ### Series colors

  <div className="glossary-badges" data-products="Building BI" data-term="Series colors">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, a color application method that assigns a specific color to a specific string or Boolean series value so meaning stays consistent across dashboards.

  ### Service type

  <div className="glossary-badges" data-products="EnerG" data-term="Service type">
    <span className="glossary-badge">EnerG</span>
  </div>

  In EnerG, what flows through a meter—electric, natural gas, steam, water, and related commodities—grouped as energy, water, or waste for portfolio totals. See [Key concepts](/products/energ/get-started/key-concepts).

  ### Session timeout

  <div className="glossary-badges" data-products="Launchpad" data-term="Session timeout">
    <span className="glossary-badge">Launchpad</span>
  </div>

  How long a signed-in session stays active before inactivity logs the user out. See [Security settings](/products/launchpad/get-started/security-settings).

  ### Shared link

  <div className="glossary-badges" data-products="Building BI" data-term="Shared link">
    <span className="glossary-badge">Building BI</span>
  </div>

  A URL that lets people view and interact with a Building BI dashboard or widget without a normal app session. You can set expiration, refresh rate, and allowed IP addresses. Also called a shareable link.

  ### Sign-in methods

  <div className="glossary-badges" data-products="Launchpad" data-term="Sign-in methods">
    <span className="glossary-badge">Launchpad</span>
  </div>

  Identity and access options for how users authenticate, managed in Launchpad. See [Workspaces and sign-in](/products/launchpad/get-started/workspaces-and-sign-in).

  ### Single sign-on (SSO)

  <div className="glossary-badges" data-products="Launchpad" data-term="Single sign-on (SSO)">
    <span className="glossary-badge">Launchpad</span>
  </div>

  Lets users access KODE with corporate identity-provider credentials such as Azure AD or other SSO providers. See [Configure single sign-on](/products/launchpad/get-started/configure-single-sign-on-sso).

  ### Slicer

  <div className="glossary-badges" data-products="Building BI" data-term="Slicer">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, an on-canvas widget bound to a single column that applies an interactive filter to widgets within its scope.

  ### Smart Generation

  <div className="glossary-badges" data-products="EnerG" data-term="Smart Generation">
    <span className="glossary-badge">EnerG</span>
  </div>

  In EnerG Budget Planning, the method that builds projections from history, as opposed to Reference Year or Manual Entry. See [Budget planning](/products/energ/finance/budget-planning).

  ### Snapshot

  <div className="glossary-badges" data-products="Integrations" data-term="Snapshot">
    <span className="glossary-badge">Integrations</span>
  </div>

  In Integrations, a collection mode that captures the full current value of points at each collection cycle. Use it for occupancy counts, current temperatures, and door status. See [Collection mode](#collection-mode) and [Data collection](/products/integrations/capabilities/data-collection).

  ### Status transition

  <div className="glossary-badges" data-products="AssetOps" data-term="Status transition">
    <span className="glossary-badge">AssetOps</span>
  </div>

  In AssetOps, a portfolio rule that controls which roles may move work orders between statuses. See [Status transitions](/products/assetops/quickstart/settings-status-transitions).

  ### Structured Data Pull

  <div className="glossary-badges" data-products="Building BI" data-term="Structured Data Pull">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, a Point Time Series polling pattern—usually for API-sourced data—that writes one row per polling interval rather than only on change of value.

  ### Sync and bulk deploy

  <div className="glossary-badges" data-products="Building BI" data-term="Sync and bulk deploy">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, the permission and Deployment Manager capability that lets a role deploy dashboards across sites, edit or delete deployments, and manage predefined synced views. See [Deployment manager](/products/building-bi/deployment-manager).

  ### Systems

  <div className="glossary-badges" data-products="Smart Building" data-term="Systems">
    <span className="glossary-badge">Smart Building</span>
  </div>

  A user-defined group of logically connected devices shown in a single view. See [Systems](/products/kode-os/systems).

  ## T

  ### Table view

  <div className="glossary-badges" data-products="Cloud BMS" data-term="Table view">
    <span className="glossary-badge">Cloud BMS</span>
  </div>

  Device history and performance in a structured table, often with CSV export. See [Trends](/products/kode-os/trends).

  ### Target

  <div className="glossary-badges" data-products="EnerG" data-term="Target">
    <span className="glossary-badge">EnerG</span>
  </div>

  In EnerG, a sustainability reduction goal—service type, metric, baseline, and reduction method—tracked at portfolio or building level. See [Targets](/products/energ/analytics/portfolio-targets).

  ### Target slot

  <div className="glossary-badges" data-products="Cloud BMS" data-term="Target slot">
    <span className="glossary-badge">Cloud BMS</span>
  </div>

  A BACnet priority designation (typically 1–16) used when scheduling maps devices or points. See [Schedules](/products/kode-os/schedules).

  ### Task group

  <div className="glossary-badges" data-products="AssetOps" data-term="Task group">
    <span className="glossary-badge">AssetOps</span>
  </div>

  In AssetOps, a portfolio bundle of task templates that share a work type and asset types so a schedule can apply a full checklist at once. See [Task templates](/products/assetops/resources/task-templates).

  ### Task template

  <div className="glossary-badges" data-products="AssetOps" data-term="Task template">
    <span className="glossary-badge">AssetOps</span>
  </div>

  In AssetOps, a reusable task definition for preventive or inspection work, including instructions, estimated time, and asset types. The template is copied onto generated work orders. See [Task templates](/products/assetops/resources/task-templates).

  ### Team

  <div className="glossary-badges" data-products="AssetOps" data-term="Team">
    <span className="glossary-badge">AssetOps</span>
  </div>

  In AssetOps, a building-level group of users who complete work orders assigned to that team. See [Teams](/products/assetops/resources/teams).

  ### Templates

  <div className="glossary-badges" data-products="Building BI|Devices" data-term="Templates">
    <span className="glossary-badge">Building BI</span><span className="glossary-badge">Devices</span>
  </div>

  In devices, a predefined structure for a device's essential functions and components. See [Device templates](/products/kode-os/devices/device-templates).

  In Building BI, a reusable collection, dashboard, page, or chart configuration. Applying a template creates an independent copy, unlike deployment sync. See [Templates](/products/building-bi/templates) and [Templating vs deployment](/products/building-bi/concepts/templating-vs-deployment).

  ### Test connections

  <div className="glossary-badges" data-products="Cloud BMS" data-term="Test connections">
    <span className="glossary-badge">Cloud BMS</span>
  </div>

  A quick check of data source, device, or point connectivity status. See [Data sources](/products/kode-os/data-sources).

  ### Timezone

  <div className="glossary-badges" data-products="Building BI" data-term="Timezone">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, the timezone used to resolve a dashboard's date and time filters. Portfolio dashboards often default to UTC. Building-level dashboards often inherit the building timezone. See [Dashboards](/products/building-bi/dashboards).

  ### Top N filter

  <div className="glossary-badges" data-products="Building BI" data-term="Top N filter">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, a filter that keeps only the highest or lowest N items by a chosen metric and hides the rest. See [Filter options](/products/building-bi/reference/filter-options).

  ### Trusted organizations

  <div className="glossary-badges" data-products="Launchpad" data-term="Trusted organizations">
    <span className="glossary-badge">Launchpad</span>
  </div>

  External organizations with a trust relationship that can receive specific permissions, such as MFA settings. See [Security settings](/products/launchpad/get-started/security-settings).

  ### Two-factor authentication (2FA)

  <div className="glossary-badges" data-products="Launchpad" data-term="Two-factor authentication (2FA)">
    <span className="glossary-badge">Launchpad</span>
  </div>

  A preference that requires a second factor at sign-in. See [Security settings](/products/launchpad/get-started/security-settings) and [MFA](#mfa).

  ## U

  ### Unacknowledged

  <div className="glossary-badges" data-products="FDD" data-term="Unacknowledged">
    <span className="glossary-badge">FDD</span>
  </div>

  Events or incidents that assignees have not yet acknowledged. See [Events](/products/fdd/events).

  ### Units

  <div className="glossary-badges" data-products="Devices" data-term="Units">
    <span className="glossary-badge">Devices</span>
  </div>

  Individual inputs or devices—such as sensors or meters—that gather and transmit operational data. See [Devices](/products/kode-os/devices/devices) and [Manual meters](/products/kode-os/devices/manual-meters).

  ### Users

  <div className="glossary-badges" data-products="Launchpad" data-term="Users">
    <span className="glossary-badge">Launchpad</span>
  </div>

  A person with an account in KODE. See [Accounts and users](/products/launchpad/get-started/accounts-and-users).

  ### Utility bill meter

  <div className="glossary-badges" data-products="EnerG" data-term="Utility bill meter">
    <span className="glossary-badge">EnerG</span>
  </div>

  In EnerG, a meter that settles on monthly billing periods from utility statements. It is the primary feed for portfolio Home, dashboards, targets, budgets, and Alert Center. See [Key concepts](/products/energ/get-started/key-concepts).

  ### Utility rate

  <div className="glossary-badges" data-products="EnerG" data-term="Utility rate">
    <span className="glossary-badge">EnerG</span>
  </div>

  In EnerG Capital Planning, the blended cost per unit used for cost translation and savings narratives. See [Capital planning](/products/energ/sustainability/capital-planning).

  ## V

  ### Vendor

  <div className="glossary-badges" data-products="AssetOps" data-term="Vendor">
    <span className="glossary-badge">AssetOps</span>
  </div>

  In AssetOps, a portfolio-level external service provider shared across buildings and assignable on work orders. See [Vendors](/products/assetops/resources/vendors).

  ### Version history

  <div className="glossary-badges" data-products="Building BI" data-term="Version history">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, the log of saved dashboard versions—date, author, and optional name—that you can preview, restore as draft, or publish. See [Dashboards](/products/building-bi/dashboards).

  ### Virtual data source

  <div className="glossary-badges" data-products="Building BI" data-term="Virtual data source">
    <span className="glossary-badge">Building BI</span>
  </div>

  In Building BI, a saved SQL view over physical tables that computes rows on demand when queried. See [Physical vs virtual data sources](/products/building-bi/concepts/physical-vs-virtual-data-sources).

  ### Virtual device

  <div className="glossary-badges" data-products="Devices" data-term="Virtual device">
    <span className="glossary-badge">Devices</span>
  </div>

  A user-created device that combines points from one or more devices into a single view. See [Virtual devices](/products/kode-os/devices/virtual-devices).

  ## W

  ### Water Use Intensity (WUI)

  <div className="glossary-badges" data-products="EnerG" data-term="Water Use Intensity (WUI)">
    <span className="glossary-badge">EnerG</span>
  </div>

  In EnerG, water consumption normalized by floor area or another relevant denominator. See [Benchmarking](/products/energ/analytics/benchmarking).

  ### Weather normalization

  <div className="glossary-badges" data-products="EnerG" data-term="Weather normalization">
    <span className="glossary-badge">EnerG</span>
  </div>

  In EnerG, a baseline configuration option that trains regression models to adjust usage for heating and cooling conditions. See [Baseline configurations](/products/energ/analytics/baseline-portfolio-configurations).

  ### Webhook

  <div className="glossary-badges" data-products="Integrations" data-term="Webhook">
    <span className="glossary-badge">Integrations</span>
  </div>

  A push method where the external system sends an HTTP request to a KODE OS URL when an event occurs. KODE OS does not poll for that event. After you create the connector, copy the webhook URL from the connector detail page into the vendor system. See [Data collection](/products/integrations/capabilities/data-collection) and [Managing connectors](/products/integrations/get-started/managing-connectors).

  ### Weekly schedules

  <div className="glossary-badges" data-products="Integrations|Cloud BMS" data-term="Weekly schedules">
    <span className="glossary-badge">Integrations</span><span className="glossary-badge">Cloud BMS</span>
  </div>

  Recurring weekly operating times for connected devices. See [Schedules](/products/kode-os/schedules).

  In Integrations, weekly schedules define day-of-week routines such as business hours and off-hours setpoints. Contrast with calendar schedules for holidays and one-time exceptions. See [Schedules](/products/integrations/capabilities/schedules).

  ### Widget view

  <div className="glossary-badges" data-products="Cloud BMS" data-term="Widget view">
    <span className="glossary-badge">Cloud BMS</span>
  </div>

  A system view that shows devices and their points as widgets. See [Systems](/products/kode-os/systems).

  ### Widgets

  <div className="glossary-badges" data-products="Building BI" data-term="Widgets">
    <span className="glossary-badge">Building BI</span>
  </div>

  Customizable components on a Building BI dashboard canvas—charts, slicers, cards, tables, graphics, navigation controls, and similar items. See [Widget customization](/products/building-bi/widget-customization) and [Dashboards](/products/building-bi/dashboards).

  ### Work order

  <div className="glossary-badges" data-products="AssetOps" data-term="Work order">
    <span className="glossary-badge">AssetOps</span>
  </div>

  In AssetOps, a single trackable unit of maintenance work such as a repair, upkeep, or inspection. See [Work orders](/products/assetops/quickstart/work-orders).

  ### Work order status

  <div className="glossary-badges" data-products="AssetOps" data-term="Work order status">
    <span className="glossary-badge">AssetOps</span>
  </div>

  In AssetOps, the lifecycle state of a work order, including Open, In progress, On hold, For review, Completed, Failed, Cancelled, and Overdue. See [Work orders](/products/assetops/work-orders/work-orders-overview).

  ### Workflows

  <div className="glossary-badges" data-products="FTT" data-term="Workflows">
    <span className="glossary-badge">FTT</span>
  </div>

  Preconfigured logical sequences in FTT for designing and deploying test logic for devices or buildings. See [Workflows](/products/ftt/workflows).

  ### Workspace domain

  <div className="glossary-badges" data-products="Launchpad" data-term="Workspace domain">
    <span className="glossary-badge">Launchpad</span>
  </div>

  The web address members use to access KODE, typically in the form `companyname.kodelabs.com`. See [Workspaces and sign-in](/products/launchpad/get-started/workspaces-and-sign-in).

  <hr />

  ## Smart Building terminology

  Common abbreviations for building systems, equipment, and points. This list is separate from the A–Z product glossary above.

  ### Zone

  <div className="glossary-badges" data-products="Smart Building" data-term="Zone">
    <span className="glossary-badge">Smart Building</span>
  </div>

  | Abbreviation | Meaning                      |
  | ------------ | ---------------------------- |
  | `VAV`        | Variable Air Volume          |
  | `CAV`        | Constant Air Volume          |
  | `FPB`        | Fan Powered Box              |
  | `FCU`        | Fan Coil Unit                |
  | `UH`         | Unit Heater                  |
  | `EUH`        | Electric Unit Heater         |
  | `CUH`        | Cabinet Unit Heater          |
  | `ECUH`       | Electric Cabinet Unit Heater |
  | `HP`         | Heat Pump                    |

  ### Air conditioning

  <div className="glossary-badges" data-products="Smart Building" data-term="Air conditioning">
    <span className="glossary-badge">Smart Building</span>
  </div>

  | Abbreviation | Meaning                        |
  | ------------ | ------------------------------ |
  | `VRV`        | Variable Refrigerant Volume    |
  | `VRF`        | Variable Refrigerant Flow      |
  | `CU`         | Condensing Unit                |
  | `AC`         | Air Conditioning               |
  | `CRAC`       | Computer Room Air Conditioning |

  ### Frontend

  <div className="glossary-badges" data-products="Smart Building" data-term="Frontend">
    <span className="glossary-badge">Smart Building</span>
  </div>

  | Abbreviation | Meaning                                  |
  | ------------ | ---------------------------------------- |
  | `HVAC`       | Heating Ventilation and Air Conditioning |
  | `IoT`        | Internet of Things                       |
  | `IBMP`       | Intelligent Building Management Platform |
  | `UUI`        | Unified User Interface                   |
  | `BAS`        | Building Automation System               |
  | `BMS`        | Building Management System               |
  | `BEMS`       | Building Energy Management System        |

  ### Drives

  <div className="glossary-badges" data-products="Smart Building" data-term="Drives">
    <span className="glossary-badge">Smart Building</span>
  </div>

  | Abbreviation | Meaning                  |
  | ------------ | ------------------------ |
  | `VFD`        | Variable Frequency Drive |
  | `VSD`        | Variable Speed Drive     |

  ### Major mechanical

  <div className="glossary-badges" data-products="Smart Building" data-term="Major mechanical">
    <span className="glossary-badge">Smart Building</span>
  </div>

  | Abbreviation | Meaning                      |
  | ------------ | ---------------------------- |
  | `RTU`        | Rooftop Unit                 |
  | `AHU`        | Air Handling Unit            |
  | `MAU`        | Make Up Air Unit             |
  | `DOAS`       | Dedicated Outdoor Air System |
  | `EF`         | Exhaust Fan                  |
  | `FAMU`       | Forced Air Make Up Unit      |

  ### Systems

  <div className="glossary-badges" data-products="Smart Building" data-term="Systems">
    <span className="glossary-badge">Smart Building</span>
  </div>

  | Abbreviation | Meaning        |
  | ------------ | -------------- |
  | `CT`         | Cooling Tower  |
  | `Blr` / `B`  | Boiler         |
  | `HX`         | Heat Exchanger |
  | `CH`         | Chiller        |

  ### Point

  <div className="glossary-badges" data-products="Smart Building" data-term="Point">
    <span className="glossary-badge">Smart Building</span>
  </div>

  | Abbreviation  | Meaning                   |
  | ------------- | ------------------------- |
  | `ZNT` / `SPT` | Zone Temperature          |
  | `SP`          | Set Point                 |
  | `SS`          | Start/Stop Command        |
  | `Cmd`         | Command                   |
  | `Sts` / `S`   | Status                    |
  | `DAT`         | Discharge Air Temperature |
  | `DAH`         | Discharge Air Humidity    |
  | `RAT`         | Return Air Temperature    |
  | `RAH`         | Return Air Humidity       |
  | `MAT`         | Mixed Air Temperature     |
  | `OAT`         | Outside Air Temperature   |
  | `OAH`         | Outside Air Humidity      |
  | `DX`          | Direct Expansion          |
  | `Vlv`         | Valve                     |
  | `Dmpr`        | Damper                    |
  | `DAF`         | Discharge Air Flow        |
  | `OAF`         | Outdoor Air Flow          |
  | `RAF`         | Return Air Flow           |
</div>
