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.

jobs.schedule.list

List all scheduled jobs.

  • Type: operation (query)
  • Version: 1.0.0
  • Stability: stable
  • Owners: platform.jobs
  • Tags: jobs, schedule, list
  • File: packages/libs/jobs/src/contracts/index.ts
  • field.key.label
    jobs.schedule.list
    field.version.label
    1.0.0
    field.type.label
    operation (query)
    field.title.label
    jobs.schedule.list
    field.description.label

    List all scheduled jobs.

  • Type: operation (query)
  • Version: 1.0.0
  • Stability: stable
  • Owners: platform.jobs
  • Tags: jobs, schedule, list
  • File: packages/libs/jobs/src/contracts/index.ts
  • field.tags.label
    jobs,schedule,list
    field.owners.label
    platform.jobs
    field.stability.label
    stable

    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',
    	},
    });