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.
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: [],
},
});