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.

controlPlane.execution.list

List execution runs with filtering and pagination.

  • Type: operation (query)
  • Version: 1.0.0
  • Tags: execution
  • File: packages/libs/contracts-spec/src/control-plane/queries/controlPlaneExecutionList.query.ts
  • field.key.label
    controlPlane.execution.list
    field.version.label
    1.0.0
    field.type.label
    operation (query)
    field.title.label
    controlPlane.execution.list
    field.description.label

    List execution runs with filtering and pagination.

  • Type: operation (query)
  • Version: 1.0.0
  • Tags: execution
  • File: packages/libs/contracts-spec/src/control-plane/queries/controlPlaneExecutionList.query.ts
  • field.tags.label
    execution
    field.owners.label
    field.stability.label

    List execution runs with filtering and pagination.

    Goal

    Provide auditable execution inventory for operations teams.

    Context

    Used by dashboards and CLI status views to monitor runtime execution.

    Source Definition

    import { ScalarTypeEnum, SchemaModel } from '@lssm-tech/lib.schema';
    import { defineQuery } from '../../operations';
    import {
    	CONTROL_PLANE_DOMAIN,
    	CONTROL_PLANE_OWNERS,
    	CONTROL_PLANE_STABILITY,
    	CONTROL_PLANE_TAGS,
    } from '../constants';
    import { ControlPlaneExecutionLaneStateModel } from './controlPlaneExecutionLane.models';
    
    export const ControlPlaneExecutionListQuery = defineQuery({
    	meta: {
    		key: 'controlPlane.execution.list',
    		title: 'List Executions',
    		version: '1.0.0',
    		description: 'List execution runs with filtering and pagination.',
    		goal: 'Provide auditable execution inventory for operations teams.',
    		context:
    			'Used by dashboards and CLI status views to monitor runtime execution.',
    		domain: CONTROL_PLANE_DOMAIN,
    		owners: CONTROL_PLANE_OWNERS,
    		tags: [...CONTROL_PLANE_TAGS, 'execution'],
    		stability: CONTROL_PLANE_STABILITY,
    	},
    	capability: {
    		key: 'control-plane.core',
    		version: '1.0.0',
    	},
    	io: {
    		input: ControlPlaneExecutionListInput,
    		output: ControlPlaneExecutionListOutput,
    	},
    	policy: {
    		auth: 'admin',
    		pii: [],
    	},
    });