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.

marketplace.product.catalog

Product catalog with search and filters

  • Type: presentation (presentation)
  • Version: 1.0.0
  • Owners: @marketplace-team
  • Tags: marketplace, product, catalog
  • File: packages/examples/marketplace/src/product/product.presentation.ts
  • field.key.label
    marketplace.product.catalog
    field.version.label
    1.0.0
    field.type.label
    presentation (presentation)
    field.title.label
    marketplace.product.catalog
    field.description.label

    Product catalog with search and filters

  • Type: presentation (presentation)
  • Version: 1.0.0
  • Owners: @marketplace-team
  • Tags: marketplace, product, catalog
  • File: packages/examples/marketplace/src/product/product.presentation.ts
  • field.tags.label
    marketplace,product,catalog
    field.owners.label
    @marketplace-team
    field.stability.label

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