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.get

Fetch the latest state for one execution.

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

    Fetch the latest state for one execution.

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

    Fetch the latest state for one execution.

    Goal

    Provide operators and channels a deterministic execution view.

    Context

    Used by dashboards, CLI, and channel adapters to inspect one 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 ControlPlaneExecutionGetQuery = defineQuery({
    	meta: {
    		key: 'controlPlane.execution.get',
    		title: 'Get Execution',
    		version: '1.0.0',
    		description: 'Fetch the latest state for one execution.',
    		goal: 'Provide operators and channels a deterministic execution view.',
    		context:
    			'Used by dashboards, CLI, and channel adapters to inspect one 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: ControlPlaneExecutionGetInput,
    		output: ControlPlaneExecutionGetOutput,
    	},
    	policy: {
    		auth: 'admin',
    		pii: [],
    	},
    });