OSS-first docs

These docs teach the open system first: contracts, generated surfaces, runtimes, governance, and incremental adoption. Studio shows up as the operating layer on top, not as the source of truth.

health.biometrics.list

List normalized biometrics synced from connected health providers.

  • Type: operation (query)
  • Version: 1.0.0
  • Stability: experimental
  • Owners: @platform.integrations
  • Tags: health, biometrics, wearables
  • field.key.label
    health.biometrics.list
    field.version.label
    1.0.0
    field.type.label
    operation (query)
    field.title.label
    health.biometrics.list
    field.description.label

    List normalized biometrics synced from connected health providers.

  • Type: operation (query)
  • Version: 1.0.0
  • Stability: experimental
  • Owners: @platform.integrations
  • Tags: health, biometrics, wearables
  • field.tags.label
    health,biometrics,wearables
    field.owners.label
    @platform.integrations
    field.stability.label
    experimental

    List normalized biometrics synced from connected health providers.

    Goal

    Expose canonical biometrics for health insights and automation.

    Context

    Used by readiness features, alerts, and trend-based decision workflows.

    Source Definition

    import {
    	type AnyOperationSpec,
    	defineCommand,
    	defineQuery,
    } from '@lssm-tech/lib.contracts-spec/operations';
    import type { OperationSpecRegistry } from '@lssm-tech/lib.contracts-spec/operations/registry';
    import { ScalarTypeEnum, SchemaModel } from '@lssm-tech/lib.schema';
    import { HealthBiometricRecord } from '../models';
    import { HEALTH_TELEMETRY_EVENTS } from '../telemetry';
    
    export const HealthListBiometrics = defineQuery({
    	meta: {
    		key: 'health.biometrics.list',
    		version: '1.0.0',
    		description:
    			'List normalized biometrics synced from connected health providers.',
    		goal: 'Expose canonical biometrics for health insights and automation.',
    		context:
    			'Used by readiness features, alerts, and trend-based decision workflows.',
    		owners: ['@platform.integrations'],
    		tags: ['health', 'biometrics', 'wearables'],
    		stability: 'experimental',
    	},
    	io: {
    		input: HealthListBiometricsInput,
    		output: HealthListBiometricsOutput,
    	},
    	policy: {
    		auth: 'user',
    	},
    });