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 all scheduled jobs.
Goal
View configured recurring tasks.
Context
Admin dashboard.
Source Definition
import { defineCommand, defineQuery } from '@lssm-tech/lib.contracts-spec';
import { defineSchemaModel, ScalarTypeEnum } from '@lssm-tech/lib.schema';
export const ListScheduledJobsContract = defineQuery({
meta: {
key: 'jobs.schedule.list',
version: '1.0.0',
stability: 'stable',
owners: ['platform.jobs'],
tags: ['jobs', 'schedule', 'list'],
description: 'List all scheduled jobs.',
goal: 'View configured recurring tasks.',
context: 'Admin dashboard.',
},
io: {
input: null,
output: ListScheduledJobsOutput,
},
policy: {
auth: 'admin',
},
});