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.
Product catalog with search and filters
Goal
Enable users to browse and search for products.
Context
The primary shopping interface.
Source Definition
import {
definePresentation,
StabilityEnum,
} from '@lssm-tech/lib.contracts-spec';
import { ProductModel } from './product.schema';
export const ProductCatalogPresentation = definePresentation({
meta: {
key: 'marketplace.product.catalog',
version: '1.0.0',
title: 'Product Catalog',
description: 'Product catalog with search and filters',
domain: 'marketplace',
owners: ['@marketplace-team'],
tags: ['marketplace', 'product', 'catalog'],
stability: StabilityEnum.Experimental,
goal: 'Enable users to browse and search for products.',
context: 'The primary shopping interface.',
},
source: {
type: 'component',
framework: 'react',
componentKey: 'ProductCatalog',
props: ProductModel,
},
targets: ['react', 'markdown'],
policy: {
flags: ['marketplace.products.enabled'],
},
});