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.
Lists the demo rows used by the data-grid showcase.
Goal
Back the sample table data view contract.
Context
Example and documentation surfaces.
Source Definition
import { defineQuery } from '@lssm-tech/lib.contracts-spec/operations';
import { fromZod } from '@lssm-tech/lib.schema';
import { z } from 'zod';
export const ListDataGridShowcaseRowsQuery = defineQuery({
meta: {
key: 'examples.data-grid-showcase.rows.list',
version: '1.0.0',
title: 'List Data Grid Showcase Rows',
description: 'Lists the demo rows used by the data-grid showcase.',
goal: 'Back the sample table data view contract.',
context: 'Example and documentation surfaces.',
owners: ['@platform.core'],
tags: ['examples', 'table', 'data-grid'],
stability: 'experimental',
},
io: {
input: fromZod(
z.object({
projectId: z.string().optional(),
})
),
output: fromZod(z.array(rowSchema)),
},
policy: {
auth: 'anonymous',
},
});